Skip to content

Instantly share code, notes, and snippets.

@serihiro
Last active January 13, 2022 05:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save serihiro/c0adb5e32752cd7f5fda8b7f0877ac24 to your computer and use it in GitHub Desktop.
Save serihiro/c0adb5e32752cd7f5fda8b7f0877ac24 to your computer and use it in GitHub Desktop.
情報処理学会用latex設定 for latex-workshop
{
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-e",
"$latex=q/platex %O -synctex=1 -interaction=nonstopmode -file-line-error %S/",
"-e",
"$bibtex=q/upbibtex %O %B/",
"-e",
"$biber=q/biber %O --bblencoding=utf8 -u -U --output_safechars %B/",
"-e",
"$makeindex=q/upmendex %O -o %D %S/",
"-e",
"$dvipdf=q/dvipdfmx %O -o %D %S -f msembed.map/",
"-norc",
"-pdfdvi",
"%DOC%"
]
}
],
"latex-workshop.message.update.show": false,
}
@serihiro
Copy link
Author

  • latex=q/platex はIPSJのテンプレがplatex用なので
  • $dvipdf=q/dvipdfmx %O -o %D %S -f msembed.map/ の末尾の -f msembed.map はフォント埋め込み用のオプション

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment