-
Notifications
You must be signed in to change notification settings - Fork 81
/
.gitignore
94 lines (79 loc) · 2.18 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#----------------------------------------------------#
# ----- Global gitignore file for all lectures ----- #
# This file is included in slds-lmu/lecture_service #
#----------------------------------------------------#
#--------------------------------------------#
# Things that need to exist but not in git #
#--------------------------------------------#
nospeakermargin.tex
speakermargin.tex
# latex-math subcomponents we don't need here
latex-math/latex-math.pdf
latex-math/latex-math.Rmd
latex-math/.github
#--------------------------------------------#
# Intermediate output (slides, exercises) #
#--------------------------------------------#
# The only slide PDF output in this repo should be in slides-pdf
# include both slides-xyz (i2ml) and slideXY- / tXY- (iml) formats
slides/*/*slides*.pdf
slides/*/slides*.pdf
slides/*/t*.pdf
# Similar things apply to exercises and exercises-pdf
exercises/*/*.pdf
exercises/*/*.tex
exercises/*/*.log
exercises/*/figure/unnamed-*.pdf
exercises/*/figure/unnamed-chunk*
exercises/*/*_files/
exercises/*/.ipynb_checkpoints/
#-----------------------------------------------------------------------------#
# TeX intermediate stuff everybody loves to hate and hates to commit to git #
#-----------------------------------------------------------------------------#
*.aux
*.fdb_latexmk
*.fls
*.log
*.nav
*.out
*.snm
*.toc
*.vrb
*.synctex.gz
*.synctex(busy)
**.pax # pdfannotextractor / pax
*.pax
**.bbl
**.blg
**.bcf
**.bcf-SAVE-ERROR
**.run.xml
#----------------------------------------------------------#
# Editor-specific stuff that should generally be ignored #
#----------------------------------------------------------#
# vim swap files
# http://stratus3d.com/blog/2018/06/03/stop-excluding-editor-temp-files-in-gitignore/
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-v][a-z]
[._]sw[a-p]
# used for atom editor
.latexcfg
# Xournal files
*.xoj
# Files created by code demo
code-demos/code_demo_genclass.R
code-demos/code_demo_knn.R
code-demos/code_demo_limo.R
.idea/*
*.pkl
# RStudio / R in general
*.Rproj
*.Rhistory
.Rproj.user
.RData
.Rdata
#-----------------------------------#
# OS-specific temp/preview files #
#-----------------------------------#
*.DS_Store