Skip to content

Instantly share code, notes, and snippets.

@ilfuriano
Forked from bertvv/hgignore.LaTeX
Last active September 11, 2015 08:17
Show Gist options
  • Save ilfuriano/493baada0589dc386cb9 to your computer and use it in GitHub Desktop.
Save ilfuriano/493baada0589dc386cb9 to your computer and use it in GitHub Desktop.
Ignore temporary files for a LaTeX project in Mercurial. Works as well as a .gitignore for a Git repository if you drop the line with "syntax: glob".
# Files to ignore in a LaTeX project
syntax: glob
# General files to ignore
*~
*.bak
# Mac os
.DS_Store
# LaTeX compilation artifacts
*.aux
*.bbl
*.blg
*.bcf
*.brf
*.fls
*.lof
*.log
*.lot
*.nav
*.out
*.snm
*.synctex.gz
*.thm
*.toc
*.run.xml
*.vrb
*.lol
*.fdb_latexmk
*-blx.bib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment