summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorhaoyuren <13851610112@163.com>2025-06-27 10:45:10 -0700
committerhaoyuren <13851610112@163.com>2025-06-27 10:45:10 -0700
commit10181a2e7d17af7c3908cb47e9bd9deff5fe8c78 (patch)
tree4a5853bf6f1115841a9a9fcdf6f204bd963aa756 /.gitignore
parentd2c893a3f795c6ee07602a794514ae82325bbe96 (diff)
Add universal LaTeX notes template
- Universal template.tex for any course - VSCode LaTeX Workshop configuration - LaTeX .gitignore for auxiliary files - Cursor.md for AI assistant context
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore179
1 files changed, 179 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bfe6b5b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,179 @@
+# LaTeX auxiliary files
+*.aux
+*.lof
+*.log
+*.lot
+*.fls
+*.out
+*.toc
+*.fmt
+*.fot
+*.cb
+*.cb2
+.*.lb
+
+# LaTeX intermediate files
+*.dvi
+*.xdv
+*-converted-to.*
+
+# LaTeX biblatex
+*.bcf
+*.blg
+*.bbl
+*.run.xml
+
+# LaTeX build files
+*.fdb_latexmk
+*.synctex.gz
+*.synctex(busy)
+*.pdfsync
+
+# LaTeX index files
+*.idx
+*.ilg
+*.ind
+*.ist
+
+# LaTeX glossary files
+*.acn
+*.acr
+*.glg
+*.glo
+*.gls
+*.glsdefs
+*.lzo
+*.lzs
+
+# LaTeX beamer files
+*.nav
+*.pre
+*.snm
+*.vrb
+
+# LaTeX algorithm2e
+*.alg
+*.loa
+
+# LaTeX achemso
+acs-*.bib
+
+# LaTeX amsthm
+*.thm
+
+# LaTeX beamer
+*.nav
+*.pre
+*.snm
+*.vrb
+
+# LaTeX changes
+*.soc
+
+# LaTeX cprotect
+*.cpt
+
+# LaTeX endfloat
+*.ttt
+*.fff
+
+# LaTeX fancyhdr
+*.fancyhdr
+
+# LaTeX hyperref
+*.figlist
+*.makefile
+*.xref
+
+# LaTeX listings
+*.lol
+
+# LaTeX minted
+_minted*
+*.pyg
+
+# LaTeX morewrites
+*.mw
+
+# LaTeX nomencl
+*.nlg
+*.nlo
+*.nls
+
+# LaTeX pax
+*.pax
+
+# LaTeX pdfpages
+*.pdf_tex
+
+# LaTeX sagetex
+*.sagetex.sage
+*.sagetex.py
+*.sagetex.scmd
+
+# LaTeX scrwfile
+*.wrt
+
+# LaTeX sympy
+*.upa
+*.upb
+
+# LaTeX TikZ & PGF
+*.auxlock
+*.figlist
+*.makefile
+*.xref
+
+# LaTeX todonotes
+*.tdo
+
+# LaTeX xindy
+*.xdy
+
+# LaTeX xypic
+*.xyc
+
+# LaTeX latexmk
+*.fdb_latexmk
+
+# LaTeX pythontex
+*.pytxcode
+pythontex-files-*/
+
+# LaTeX thmtools
+*.loe
+
+# LaTeX Asymptote
+*.asy
+*.pre
+
+# LaTeX WinEdt
+*.bak
+*.sav
+
+# LaTeX LyX
+*.lyx~
+
+# LaTeX Kile
+*.kilepr
+
+# macOS specific
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+ehthumbs.db
+Thumbs.db
+
+# Editor specific (keep .vscode/ for LaTeX Workshop config)
+.idea/
+*.swp
+*.swo
+*~
+
+# Backup files
+*~
+*.backup
+*.bak
+*.orig \ No newline at end of file