From e63e815c5bf9489f385f29ba7124c33c03c085cf Mon Sep 17 00:00:00 2001 From: carry <2641257231@qq.com> Date: Fri, 2 May 2025 13:39:08 +0800 Subject: [PATCH] =?UTF-8?q?refactor(.gitignore):=20=E5=B0=86LaTeX=E4=B8=B4?= =?UTF-8?q?=E6=97=B6=E6=96=87=E4=BB=B6=E5=BF=BD=E7=95=A5=E8=A7=84=E5=88=99?= =?UTF-8?q?=E7=A7=BB=E8=87=B3paper/latex=E7=9B=AE=E5=BD=95=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 为了更清晰地组织项目文件,将LaTeX相关的临时文件忽略规则从根目录的.gitignore文件中移除,并添加到paper/latex目录下的.gitignore文件中。 --- .gitignore | 24 +----------------------- paper/latex/.gitignore | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 23 deletions(-) create mode 100644 paper/latex/.gitignore diff --git a/.gitignore b/.gitignore index 4330fd4..43f8784 100644 --- a/.gitignore +++ b/.gitignore @@ -33,26 +33,4 @@ unsloth_compiled_cache # 测试和参考代码 test.ipynb test.py -refer/ - -# LaTeX临时文件 -*.aux -*.log -*.out -*.toc -*.synctex.gz -*.bbl -*.blg -*.dvi -*.fdb_latexmk -*.fls -*.lof -*.lot -*.idx -*.ilg -*.ind -*.nav -*.snm -*.vrb -*.xdv -*.pdf \ No newline at end of file +refer/ \ No newline at end of file diff --git a/paper/latex/.gitignore b/paper/latex/.gitignore new file mode 100644 index 0000000..85f7417 --- /dev/null +++ b/paper/latex/.gitignore @@ -0,0 +1,21 @@ +# LaTeX临时文件 +*.aux +*.log +*.out +*.toc +*.synctex.gz +*.bbl +*.blg +*.dvi +*.fdb_latexmk +*.fls +*.lof +*.lot +*.idx +*.ilg +*.ind +*.nav +*.snm +*.vrb +*.xdv +*.pdf \ No newline at end of file