Skip to content

Commit d0c5830

Browse files
committed
[Tex] Change *.mtc0 to *.mtc[1-9][0-9]
When using minitoc package, LateX often generates multiple .mtc files such as `*.mtc0`, `*.mtc1`, ..., `*.mtc13`, ... This patch allows one to ignore all *.mtc files from index 0 to index 99 (ignoring `*.mtc[1-9][0-9]`).
1 parent 4e0d738 commit d0c5830

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

TeX.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ acs-*.bib
9393
# minitoc
9494
*.maf
9595
*.mtc
96-
*.mtc0
96+
*.mtc[0-9]
97+
*.mtc[1-9][0-9]
9798

9899
# minted
99100
_minted*

0 commit comments

Comments
 (0)