Created
May 11, 2016 06:10
-
-
Save daipresents/4420d1fa11f5807aca00c2a0181a82bd to your computer and use it in GitHub Desktop.
Pandoc. Markdown to PDF etc.
This file contains 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
# MarkdownからHTMLへの変換 | |
pandoc -s Sample.md -o Sample.html |
This file contains 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
# MarkdownからPDFへの変換(拡張子変えるだけ) | |
pandoc Sample.md -o Sample.pdf |
This file contains 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 README.markdown -o README.pdf | |
pandoc: Error producing PDF from TeX source. | |
! Package inputenc Error: Unicode char \u8:翻 not set up for use with LaTeX. | |
See the inputenc package documentation for explanation. | |
Type H <return> for immediate help. | |
... | |
l.53 翻 | |
This file contains 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 README.markdown -o README.pdf --latex-engine=xelatex |
This file contains 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 README.markdown -o README.pdf --latex-engine=xelatex -V mainfont=Hiragino\ Kaku\ Gothic\ Pro |
This file contains 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
# MarkdownからTeXへの変換 | |
pandoc -s README.markdown -o README.tex | |
# TeXからEPUBへの変換 | |
pandoc -S README.tex -o README.epub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment