Skip to content

Commit 7ca65e5

Browse files
authored
Create .gitignore
1 parent d103465 commit 7ca65e5

File tree

1 file changed

+222
-0
lines changed

1 file changed

+222
-0
lines changed

.gitignore

+222
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
.texpadtmp/
2+
3+
## Core latex/pdflatex auxiliary files:
4+
*.aux
5+
*.lof
6+
*.log
7+
*.lot
8+
*.fls
9+
*.out
10+
*.toc
11+
*.fmt
12+
*.fot
13+
*.cb
14+
*.cb2
15+
16+
## Intermediate documents:
17+
*.dvi
18+
*-converted-to.*
19+
# these rules might exclude image files for figures etc.
20+
# *.ps
21+
# *.eps
22+
# *.pdf
23+
24+
## Generated if empty string is given at "Please type another file name for output:"
25+
.pdf
26+
27+
## Bibliography auxiliary files (bibtex/biblatex/biber):
28+
*.bbl
29+
*.bcf
30+
*.blg
31+
*-blx.aux
32+
*-blx.bib
33+
*.run.xml
34+
35+
## Build tool auxiliary files:
36+
*.fdb_latexmk
37+
*.synctex
38+
*.synctex(busy)
39+
*.synctex.gz
40+
*.synctex.gz(busy)
41+
*.pdfsync
42+
43+
## Auxiliary and intermediate files from other packages:
44+
# algorithms
45+
*.alg
46+
*.loa
47+
48+
# achemso
49+
acs-*.bib
50+
51+
# amsthm
52+
*.thm
53+
54+
# beamer
55+
*.nav
56+
*.pre
57+
*.snm
58+
*.vrb
59+
60+
# changes
61+
*.soc
62+
63+
# cprotect
64+
*.cpt
65+
66+
# elsarticle (documentclass of Elsevier journals)
67+
*.spl
68+
69+
# endnotes
70+
*.ent
71+
72+
# fixme
73+
*.lox
74+
75+
# feynmf/feynmp
76+
*.mf
77+
*.mp
78+
*.t[1-9]
79+
*.t[1-9][0-9]
80+
*.tfm
81+
82+
#(r)(e)ledmac/(r)(e)ledpar
83+
*.end
84+
*.?end
85+
*.[1-9]
86+
*.[1-9][0-9]
87+
*.[1-9][0-9][0-9]
88+
*.[1-9]R
89+
*.[1-9][0-9]R
90+
*.[1-9][0-9][0-9]R
91+
*.eledsec[1-9]
92+
*.eledsec[1-9]R
93+
*.eledsec[1-9][0-9]
94+
*.eledsec[1-9][0-9]R
95+
*.eledsec[1-9][0-9][0-9]
96+
*.eledsec[1-9][0-9][0-9]R
97+
98+
# glossaries
99+
*.acn
100+
*.acr
101+
*.glg
102+
*.glo
103+
*.gls
104+
*.glsdefs
105+
106+
# gnuplottex
107+
*-gnuplottex-*
108+
109+
# gregoriotex
110+
*.gaux
111+
*.gtex
112+
113+
# hyperref
114+
*.brf
115+
116+
# knitr
117+
*-concordance.tex
118+
# TODO Comment the next line if you want to keep your tikz graphics files
119+
*.tikz
120+
*-tikzDictionary
121+
122+
# listings
123+
*.lol
124+
125+
# makeidx
126+
*.idx
127+
*.ilg
128+
*.ind
129+
*.ist
130+
131+
# minitoc
132+
*.maf
133+
*.mlf
134+
*.mlt
135+
*.mtc[0-9]*
136+
*.slf[0-9]*
137+
*.slt[0-9]*
138+
*.stc[0-9]*
139+
140+
# minted
141+
_minted*
142+
*.pyg
143+
144+
# morewrites
145+
*.mw
146+
147+
# nomencl
148+
*.nlo
149+
150+
# pax
151+
*.pax
152+
153+
# pdfpcnotes
154+
*.pdfpc
155+
156+
# sagetex
157+
*.sagetex.sage
158+
*.sagetex.py
159+
*.sagetex.scmd
160+
161+
# scrwfile
162+
*.wrt
163+
164+
# sympy
165+
*.sout
166+
*.sympy
167+
sympy-plots-for-*.tex/
168+
169+
# pdfcomment
170+
*.upa
171+
*.upb
172+
173+
# pythontex
174+
*.pytxcode
175+
pythontex-files-*/
176+
177+
# thmtools
178+
*.loe
179+
180+
# TikZ & PGF
181+
*.dpth
182+
*.md5
183+
*.auxlock
184+
185+
# todonotes
186+
*.tdo
187+
188+
# easy-todo
189+
*.lod
190+
191+
# xindy
192+
*.xdy
193+
194+
# xypic precompiled matrices
195+
*.xyc
196+
197+
# endfloat
198+
*.ttt
199+
*.fff
200+
201+
# Latexian
202+
TSWLatexianTemp*
203+
204+
## Editors:
205+
# WinEdt
206+
*.bak
207+
*.sav
208+
209+
# Texpad
210+
.texpadtmp
211+
212+
# Kile
213+
*.backup
214+
215+
# KBibTeX
216+
*~[0-9]*
217+
218+
# auto folder when using emacs and auctex
219+
/auto/*
220+
221+
# expex forward references with \gathertags
222+
*-tags.tex

0 commit comments

Comments
 (0)