|
@@ -32,7 +32,8 @@ impl<'a> File<'a> {
|
|
|
"lof" | // TeX list of figures
|
|
"lof" | // TeX list of figures
|
|
|
"log" | // TeX log file
|
|
"log" | // TeX log file
|
|
|
"lot" | // TeX list of tables
|
|
"lot" | // TeX list of tables
|
|
|
- "toc" | // TeX table of contents
|
|
|
|
|
|
|
+ "out" => vec![self.path.with_extension("tex")], // hyperref list of bookmarks
|
|
|
|
|
+ "toc" => vec![self.path.with_extension("tex")], // TeX table of contents
|
|
|
"xdv" => vec![self.path.with_extension("tex")], // XeTeX dvi
|
|
"xdv" => vec![self.path.with_extension("tex")], // XeTeX dvi
|
|
|
|
|
|
|
|
_ => vec![], // No source files if none of the above
|
|
_ => vec![], // No source files if none of the above
|