Skip to content

Commit 3755176

Browse files
committed
resubmit
1 parent af699bb commit 3755176

10 files changed

+1008
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)