如何向 texmaker LaTeX 添加默认路径

如何向 texmaker LaTeX 添加默认路径

我正在尝试添加 texmaker 的路径(OSX Sierra 上的 Texmaker 4.5)。
原因是我希望每次都能执行相同的模板文档,这样我就不必手动重新导入所有内容。
我成功地为 org-mode 做到了,但我找不到直接在 LaTeX 中执行此操作的方法。

有什么线索吗?

答案1

解决方案 1:符号链接

创建此文件夹结构:

template/
    myTemplateFile.tex
project1/
    myProjectFile.tex
    template->../template
project2/
    myProjectFile.tex
    template->../template

要创建符号链接,请进入 projectX 文件夹并输入
ln -s ../template template

然后myProjectFile.tex引用模板为
\input{template/myTemplateFile.tex}


解决方案2:git

  • 为您的模板文件创建一个(远程)git 存储库。(例如https://github.com/someuser/template.git
  • 为您的新项目创建一个新的本地 git 存储库。
    git init .
  • 将模板存储库检出为 git 子模块:
    git submodule add https://github.com/someuser/template.git template

两种方法下项目主文件的内容看起来相同:
\input{template/myTemplateFile.tex}

单个用户应该优先使用符号链接方法,而多个用户则优先使用 git 方法。

相关内容