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