Created
July 22, 2018 13:46
-
-
Save south-str/24a16c1b50bad8b37d57438fc433440c to your computer and use it in GitHub Desktop.
pandocでmarkdownからpdfを作成するためのシェル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pandoc \ | |
--from=markdown \ | |
--to=latex \ | |
--output=${OUTPUT_FILE} \ | |
--pdf-engine=lualatex \ | |
--variable=lang:ja \ | |
--variable=documentclass:ltjsbook \ | |
--variable=papersize:b5 \ | |
--variable=classoption:oneside \ | |
--variable=classoption:openany \ | |
--variable=mainfont:HiraMinProN-W3 \ | |
--variable=CJKmainfont:HiraMinProN-W3 \ | |
--variable=sansfont:Ricty-Regular \ | |
--variable=monofont:Ricty-Regular \ | |
--variable=fontsize:12pt \ | |
--listings \ | |
--include-in-header=header.tex \ | |
${INPUT_FILE} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment