.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. # ---> VisualStudioCode
  2. .settings
  3. # ---> TeX
  4. ## Core latex/pdflatex auxiliary files:
  5. *.aux
  6. *.lof
  7. *.log
  8. *.lot
  9. *.fls
  10. *.out
  11. *.toc
  12. ## Intermediate documents:
  13. *.dvi
  14. *-converted-to.*
  15. # these rules might exclude image files for figures etc.
  16. # *.ps
  17. # *.eps
  18. # *.pdf
  19. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  20. *.bbl
  21. *.bcf
  22. *.blg
  23. *-blx.aux
  24. *-blx.bib
  25. *.brf
  26. *.run.xml
  27. ## Build tool auxiliary files:
  28. *.fdb_latexmk
  29. *.synctex
  30. *.synctex.gz
  31. *.synctex.gz(busy)
  32. *.pdfsync
  33. ## Auxiliary and intermediate files from other packages:
  34. # algorithms
  35. *.alg
  36. *.loa
  37. # achemso
  38. acs-*.bib
  39. # amsthm
  40. *.thm
  41. # beamer
  42. *.nav
  43. *.snm
  44. *.vrb
  45. #(e)ledmac/(e)ledpar
  46. *.end
  47. *.[1-9]
  48. *.[1-9][0-9]
  49. *.[1-9][0-9][0-9]
  50. *.[1-9]R
  51. *.[1-9][0-9]R
  52. *.[1-9][0-9][0-9]R
  53. *.eledsec[1-9]
  54. *.eledsec[1-9]R
  55. *.eledsec[1-9][0-9]
  56. *.eledsec[1-9][0-9]R
  57. *.eledsec[1-9][0-9][0-9]
  58. *.eledsec[1-9][0-9][0-9]R
  59. # glossaries
  60. *.acn
  61. *.acr
  62. *.glg
  63. *.glo
  64. *.gls
  65. # gnuplottex
  66. *-gnuplottex-*
  67. # hyperref
  68. *.brf
  69. # knitr
  70. *-concordance.tex
  71. *.tikz
  72. *-tikzDictionary
  73. # listings
  74. *.lol
  75. # makeidx
  76. *.idx
  77. *.ilg
  78. *.ind
  79. *.ist
  80. # minitoc
  81. *.maf
  82. *.mtc
  83. *.mtc[0-9]
  84. *.mtc[1-9][0-9]
  85. # minted
  86. _minted*
  87. *.pyg
  88. # morewrites
  89. *.mw
  90. # mylatexformat
  91. *.fmt
  92. # nomencl
  93. *.nlo
  94. # sagetex
  95. *.sagetex.sage
  96. *.sagetex.py
  97. *.sagetex.scmd
  98. # sympy
  99. *.sout
  100. *.sympy
  101. sympy-plots-for-*.tex/
  102. # TikZ & PGF
  103. *.dpth
  104. *.md5
  105. *.auxlock
  106. # todonotes
  107. *.tdo
  108. # xindy
  109. *.xdy
  110. # WinEdt
  111. *.bak
  112. *.sav
  113. # ---> SublimeText
  114. # cache files for sublime text
  115. *.tmlanguage.cache
  116. *.tmPreferences.cache
  117. *.stTheme.cache
  118. # workspace files are user-specific
  119. *.sublime-workspace
  120. # project files should be checked into the repository, unless a significant
  121. # proportion of contributors will probably not be using SublimeText
  122. # *.sublime-project
  123. # sftp configuration file
  124. sftp-config.json
  125. # ---> Python
  126. # Byte-compiled / optimized / DLL files
  127. __pycache__/
  128. *.py[cod]
  129. *$py.class
  130. # C extensions
  131. *.so
  132. # Distribution / packaging
  133. .Python
  134. env/
  135. build/
  136. develop-eggs/
  137. dist/
  138. downloads/
  139. eggs/
  140. .eggs/
  141. lib/
  142. lib64/
  143. parts/
  144. sdist/
  145. var/
  146. *.egg-info/
  147. .installed.cfg
  148. *.egg
  149. # PyInstaller
  150. # Usually these files are written by a python script from a template
  151. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  152. *.manifest
  153. *.spec
  154. # Installer logs
  155. pip-log.txt
  156. pip-delete-this-directory.txt
  157. # Unit test / coverage reports
  158. htmlcov/
  159. .tox/
  160. .coverage
  161. .coverage.*
  162. .cache
  163. nosetests.xml
  164. coverage.xml
  165. *,cover
  166. # Translations
  167. *.mo
  168. *.pot
  169. # Django stuff:
  170. *.log
  171. # Sphinx documentation
  172. docs/_build/
  173. # PyBuilder
  174. target/
  175. # ---> Linux
  176. *~
  177. # KDE directory preferences
  178. .directory
  179. # Linux trash folder which might appear on any partition or disk
  180. .Trash-*