shimane-u-reports

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

settings.json (1073B)


      1 {
      2     // 使用パッケージのコマンドや環境の補完を有効にする
      3     "latex-workshop.intellisense.package.enabled": true,
      4     "latex-workshop.view.pdf.viewer": "tab",
      5     "latex-workshop.latex.build.clearLog.everyRecipeStep.enabled": false,
      6     
      7     // 生成ファイルを "out" ディレクトリに吐き出すなら
      8     "latex-workshop.latex.outDir": "out",
      9 
     10      // ビルドのレシピ
     11     "latex-workshop.latex.recipes": [
     12         {
     13             "name": "latexmk",
     14             "tools": [
     15                 "latexmk"
     16             ]
     17         },
     18     ],
     19     // ビルドのツール
     20     "latex-workshop.latex.tools": [      
     21         {
     22             "name" : "latexmk",
     23             "command" : "wsl.exe",
     24             "args" : [
     25                 "latexmk",
     26                 // "-time"で実行時間を表示してくれる。
     27                 "-time",
     28                 "-outdir=%OUTDIR%",
     29                 "%DOCFILE%.tex" 
     30             ]
     31         },
     32     ],
     33     "cloudlatex.enabled": true,
     34     "cloudlatex.projectId": 1065616,
     35     "cloudlatex.outDir": "/.workspace"
     36 }