Skip to content

Commit 5c65fae

Browse files
committed
Initial commit
1 parent d7e5f14 commit 5c65fae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+25440
-2
lines changed

.gitignore

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
## Python ignores
2+
*/__pycache__
3+
*.egg-info
4+
*/*.eggs
5+
*.pyc
6+
7+
## LaTeX standard ignores
8+
*.pdf # exclude all pdfs unless specifically included
9+
*~
10+
*.backup
11+
*.o
12+
*.swp
13+
*.swo
14+
*.pyc
15+
16+
## Core latex/pdflatex auxiliary files:
17+
*.aux
18+
*.lof
19+
*.log
20+
*.lot
21+
*.fls
22+
*.out
23+
*.toc
24+
*.fmt
25+
26+
## Intermediate documents:
27+
*.dvi
28+
*-converted-to.*
29+
# these rules might exclude image files for figures etc.
30+
# *.ps
31+
# *.eps
32+
# *.pdf
33+
34+
## Bibliography auxiliary files (bibtex/biblatex/biber):
35+
*.bbl
36+
*.bcf
37+
*.blg
38+
*-blx.aux
39+
*-blx.bib
40+
*.brf
41+
*.run.xml
42+
43+
## Build tool auxiliary files:
44+
*.fdb_latexmk
45+
*.synctex
46+
*.synctex.gz
47+
*.synctex.gz(busy)
48+
*.pdfsync
49+
50+
## Auxiliary and intermediate files from other packages:
51+
# algorithms
52+
*.alg
53+
*.loa
54+
55+
# achemso
56+
acs-*.bib
57+
58+
# amsthm
59+
*.thm
60+
61+
# beamer
62+
*.nav
63+
*.snm
64+
*.vrb
65+
66+
# cprotect
67+
*.cpt
68+
69+
#(e)ledmac/(e)ledpar
70+
*.end
71+
*.[1-9]
72+
*.[1-9][0-9]
73+
*.[1-9][0-9][0-9]
74+
*.[1-9]R
75+
*.[1-9][0-9]R
76+
*.[1-9][0-9][0-9]R
77+
*.eledsec[1-9]
78+
*.eledsec[1-9]R
79+
*.eledsec[1-9][0-9]
80+
*.eledsec[1-9][0-9]R
81+
*.eledsec[1-9][0-9][0-9]
82+
*.eledsec[1-9][0-9][0-9]R
83+
84+
# glossaries
85+
*.acn
86+
*.acr
87+
*.glg
88+
*.glo
89+
*.gls
90+
91+
# gnuplottex
92+
*-gnuplottex-*
93+
94+
# hyperref
95+
*.brf
96+
97+
# knitr
98+
*-concordance.tex
99+
*.tikz
100+
*-tikzDictionary
101+
102+
# listings
103+
*.lol
104+
105+
# makeidx
106+
*.idx
107+
*.ilg
108+
*.ind
109+
*.ist
110+
111+
# minitoc
112+
*.maf
113+
*.mtc
114+
*.mtc[0-9]
115+
*.mtc[1-9][0-9]
116+
117+
# minted
118+
_minted*
119+
*.pyg
120+
121+
# morewrites
122+
*.mw
123+
124+
# mylatexformat
125+
*.fmt
126+
127+
# nomencl
128+
*.nlo
129+
130+
# sagetex
131+
*.sagetex.sage
132+
*.sagetex.py
133+
*.sagetex.scmd
134+
135+
# sympy
136+
*.sout
137+
*.sympy
138+
sympy-plots-for-*.tex/
139+
140+
# pdfcomment
141+
*.upa
142+
*.upb
143+
144+
#pythontex
145+
*.pytxcode
146+
pythontex-files-*/
147+
148+
# Texpad
149+
.texpadtmp
150+
151+
# TikZ & PGF
152+
*.dpth
153+
*.md5
154+
*.auxlock
155+
156+
# todonotes
157+
*.tdo
158+
159+
# xindy
160+
*.xdy
161+
162+
# xypic precompiled matrices
163+
*.xyc
164+
165+
# WinEdt
166+
*.bak
167+
*.sav
168+
169+
# endfloat
170+
*.ttt
171+
*.fff
172+
173+
# Latexian
174+
TSWLatexianTemp*

0 commit comments

Comments
 (0)