commit 40bad1aa3e473178dab0ecd1c831d8ee6eff3a5e
parent 6018fb2e882faaab115f517a5f021d67552d4d53
Author: minerva-jupiter <ryouturn@gmail.com>
Date: Fri, 11 Apr 2025 22:18:13 +0900
change for local export
Diffstat:
2 files changed, 38 insertions(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,2 +1,3 @@
-sample.*
-!sample.tex
+out/*
+!main.tex
+!*.md+
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
@@ -0,0 +1,33 @@
+{
+ // 使用パッケージのコマンドや環境の補完を有効にする
+ "latex-workshop.intellisense.package.enabled": true,
+ "latex-workshop.view.pdf.viewer": "tab",
+ "latex-workshop.latex.build.clearLog.everyRecipeStep.enabled": false,
+
+ // 生成ファイルを "out" ディレクトリに吐き出すなら
+ "latex-workshop.latex.outDir": "out",
+
+ // ビルドのレシピ
+ "latex-workshop.latex.recipes": [
+ {
+ "name": "latexmk",
+ "tools": [
+ "latexmk"
+ ]
+ },
+ ],
+ // ビルドのツール
+ "latex-workshop.latex.tools": [
+ {
+ "name" : "latexmk",
+ "command" : "wsl.exe",
+ "args" : [
+ "latexmk",
+ // "-time"で実行時間を表示してくれる。
+ "-time",
+ "-outdir=%OUTDIR%",
+ "%DOCFILE%.tex"
+ ]
+ },
+ ]
+}+
\ No newline at end of file