-
やりたいこと
できないこと
調べること
|
Beta Was this translation helpful? Give feedback.
Answered by
shotakaha
Sep 7, 2022
Replies: 4 comments 9 replies
-
エンジンの設定
latex_engine = "lualatex" |
Beta Was this translation helpful? Give feedback.
5 replies
-
やってみた
# conf.py
latex_engine = "lualatex"
latex_docclass = {"manual": "jlreq"}
$ make latexpdf # <- エラー; PDFがビルドできない
$ make latex |
Beta Was this translation helpful? Give feedback.
2 replies
-
extraclassoptions
latex_elements = {
...
"extraclassoptions": "extra1,extra2",
...
} |
Beta Was this translation helpful? Give feedback.
2 replies
-
別のドキュメントクラスを使う
latex_engine = "lualatex"
latex_docclass = {
"howto": "ltjsreport",
"manual": "ltjsreport", # 必要なら ltjsbook に変更する
}
latex_elements = {
"papersize": "a4paper",
"pointsize": "12pt",
# "extraclassoptions": "tombow",
...,
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
shotakaha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
別のドキュメントクラスを使う
jlreqが使えないことが分かったが、lualatexは使いたいltjsreportにすればよさそう