瀏覽代碼

feat: added ".out" files for latex

(exa PR) 1184
Christina Sørensen 2 年之前
父節點
當前提交
5f29705cc5
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/info/sources.rs

+ 2 - 1
src/info/sources.rs

@@ -32,7 +32,8 @@ impl<'a> File<'a> {
                 "lof" |                                          // TeX list of figures
                 "log" |                                          // TeX log file
                 "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
 
                 _ => vec![],  // No source files if none of the above