Skip to content

Commit 4ba6f92

Browse files
committed
init
0 parents  commit 4ba6f92

34 files changed

+931
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)