wengan-li / ncku-thesis-template-latex

NCKU Thesis/Dissertation Template in Latex | 台灣國立成功大學碩博士用畢業論文LaTex模板
Other
94 stars 41 forks source link

研究VS Code 配合Latex Workshop去取代TexMaker #60

Closed wengan-li closed 2 months ago

wengan-li commented 1 year ago

由於當年我在Windows 中能提供最簡單的Editor 配合MiKTeX能最懶惰就能產出PDF的為 TexMaker. 現時今日,其實VS Code 都已經是一個非常不錯的editor, 可考慮取代。

使用Latex Workshop. 但暫時遇到不明原因,未能成功產生cover.pdf. 暫放上我手上的資料,請有興趣的同學幫助研究看看。

Screenshot 2023-01-29 at 3 05 48 PM
.vscode\settings.json

{
  "latex-workshop.latex.recipe.default": "lastUsed",
  "latex-workshop.latex.recipes": [
    {
      "name": "pdflatex ➞ bibtex ➞ pdflatex x 2",
      "tools": ["pdflatex", "bibtex", "pdflatex", "pdflatex"]
    },
    {
      "name": "Build (XeLaTex)",
      "tools": ["XeLaTex"]
    }
  ],
  "latex-workshop.latex.tools": [
    {
      "name": "XeLaTex",
      "command": "xelatex",
      "args": [
        "-synctex=1",
        "-interaction=nonstopmode",
        "-file-line-error",
        "%DOCFILE%"
      ]
    }
  ]
}
wengan-li commented 2 months ago

發現好像當使用不同的工具會有不同的 path import 設定, 比想像中麻煩, 暫時不使用這方法。