Top/沼田/TeX


TeXとは 

TeX は著名なコンピュータ科学者 Donald E. Knuth によって生み出された最強の文書整形システムです。次のような特徴を持っています。

TeXのインストール方法 

TeXのダウンロード 

以下、URLからTeXイメージファイルのダウンロード(texlive.iso)
http://ftp.jaist.ac.jp/pub/CTAN/systems/texlive/Images/

TeXのインストール 

isoファイルダウンロード後、ファイルをダブルクリックすると BD-ROM/DVD-ROM ドライブとしてマウントされる。



                   [ 🗙 ]

Windows によって PC が保護されまし




Windows Defender SmartScreen は認識されないアプリの起動を停止しま
した。このアプリを実行すると、PC に問題が起こる可能性があります。
詳細情報















                                 [ 実行しない ]



上記の画面が表示されたら、詳細情報から実行を押す。
詳しくは、以下URL参照
https://texwiki.texjp.org/?TeX%20Live%2FWindows

参考 

便利 

gscode texいれかた
https://qiita.com/popunbom/items/7d02fc75ad23b735d28c
タウロスがまとめてくれました。-->▶川口のページへ
shift+cmd+p→key→latex build latex projectのkey bindをshift Enter
Ctr+\で開いてるタブを右に複製
このままだとpLaTex(ptex2pdf)できないから
latex-workshop.latex.toolsと"latex-workshop.latex.recipes"の中身書き換え
中身のほかの辞書をけすことでbuild latex projectを押すだけでビルドしてくれる
消さなかったらほかのやつだと認識されてしまうから、わざわざ>build latex projectを
展開して選択しなくてはいけない
https://qiita.com/keisukesato-ac/items/e0de3ada8960a6b69a69


記説明にもあったように、ビルド失敗時に生成された一時ファイルが悪影響を及ぼす事があるため、自動で\n // クリーンアップがかかるようにしておく。\n "latex-workshop.latex.clean.onFailBuild.enabled": true,\n\n // latex-workshop.latex.autoBuild.onSave.enabled: .tex ファイルの保存時に自動的にビルドを行うかどうか\n // LaTeX ファイルは .tex ファイルを変更後にビルドしないと、PDF ファイル上に変更結果が反映されないため、\n // .tex ファイルの保存と同時に自動的にビルドを実行する設定があるが、文書が大きくなるに連れてビルドにも\n // 時間がかかってしまい、ビルドプログラムの負荷がエディタに影響するため、無効化しておく。\n "latex-workshop.latex.autoBuild.onSave.enabled": false,\n "latex-workshop.latex.autoClean.run": "onFailed",\n "latex-workshop.latex.autoBuild.run": "never",\n "window.zoomLevel": 0,\n "workbench.sideBar.location": "right",\n "editor.minimap.enabled": true,\n "breadcrumbs.enabled": true,\n "editor.renderWhitespace": "none",\n "editor.renderControlCharacters": false,\n "workbench.colorTheme": "Default High Contrast",\n "files.associations": {\n "*.cgi": "python"\n },\n "workbench.statusBar.visible": true,\n "liveServer.settings.donotShowInfoMsg": true,\n "workbench.editorAssociations": [\n {\n "viewType": "jupyter.notebook.ipynb",\n "filenamePattern": "*.ipynb"\n }\n ],\n "latex-workshop.message.update.show": false,\n})



行する設定があるが、文書が大きくなるに連れてビルドにも\n // 時間がかかってしまい、ビルドプログラムの負荷がエディタに影響するため、無効化しておく。\n "latex-workshop.latex.autoBuild.onSave.enabled": false,\n "latex-workshop.latex.autoClean.run": "onFailed",\n "latex-workshop.latex.autoBuild.run": "never",\n "window.zoomLevel": 0,\n "workbench.sideBar.location": "right",\n "editor.minimap.enabled": true,\n "breadcrumbs.enabled": true,\n "editor.renderWhitespace": "none",\n "editor.renderControlCharacters": false,\n "workbench.colorTheme": "Default High Contrast",\n "files.associations": {\n "*.cgi": "python"\n },\n "workbench.statusBar.visible": true,\n "liveServer.settings.donotShowInfoMsg": true,\n "workbench.editorAssociations": [\n {\n "viewType": "jupyter.notebook.ipynb",\n "filenamePattern": "*.ipynb"\n }\n ],\n "latex-workshop.message.update.show": false,\n "editor.fontSize": 12,\n "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",\n "code-runner.executorMap": {\n\n "javascript": "node",\n "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",\n "c": "cd $dir && gcc -fexec-charset=CP932 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",\n "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",\n "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",\n "php": "php",\n "python": "python -u",\n "perl": "perl",\n "perl6": "perl6",\n "ruby": "ruby",\n "go": "go run",\n "lua": "lua",\n "groovy": "groovy",\n "powershell": "powershell -ExecutionPolicy ByPass -File",\n "bat": "cmd /c",\n "shellscript": "bash",\n "fsharp": "fsi",\n "csharp": "scriptcs",\n "vbscript": "cscript //Nologo",\n "typescript": "ts-node",\n "coffeescript": "coffee",\n "scala": "scala",\n "swift": "swift",\n "julia": "julia",\n "crystal": "crystal",\n "ocaml": "ocaml",\n "r": "Rscript",\n "applescript": "osascript",\n "clojure": "lein exec",\n "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",\n "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",\n "racket": "racket",\n "scheme": "csi -script",\n "ahk": "autohotkey",\n "autoit": "autoit3",\n "dart": "dart",\n "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",\n "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",\n "haskell": "runhaskell",\n "nim": "nim compile --verbosity:0 --hints:off --run",\n "lisp": "sbcl --script",\n "kit": "kitc --run",\n "v": "v run",\n "sass": "sass --style expanded",\n "scss": "scss --style expanded",\n "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",\n "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",\n "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",\n "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",\n "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"\n },\n "code-runner.runInTerminal": true,\n "latex-workshop.intellisense.bibtexJSON.replace": {\n \n \n },\n})


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS