- Status of Rust Bookshelf
- Installation
- Uninstallation
- Primary Dependencies
- How's it Work?
- Contributing
- Are We Stable Yet?
- See Also
mdbook-latex
failed to build my book! Now what? >:(- Status of Binary Releases
An mdbook backend for generating LaTeX and PDF documents. Utilizes md2tex
for the markdown to LaTeX transformation, but with the goal of allowing alternative markdown to LaTeX converters. If you have developed your own markdown to LaTeX converter, I'd love to talk with you or share ideas! I'm at liam@liambeckman.com.
Warning: Not yet stable β may eat, shred, and atomize your laundry! See the Are We Stable Yet? section for a roadmap to the production release.
Failure: For what to do if and when
mdbook-latex
fails, seemdbook-latex
failed to build my book! Now what? >:(. I'm also available via e-mail if you have any questions or suggestions!
- β compiles successfully
- π compiles but with warnings/errors
- β compilation fails/not yet attempted
Compiles? | Generated PDF | Generated LaTeX | Source | Online Version |
---|---|---|---|---|
β | Source | HTML | ||
β | Source | HTML | ||
β | Source | HTML | ||
π | Mdbook User Guide | LaTeX | Source | HTML |
β | Source | HTML | ||
β | Source | HTML | ||
π | Rust Programming Language | LaTeX | Source | HTML |
β | Source | HTML | ||
β | Source | HTML | ||
β | Source | HTML | ||
β | Source | HTML |
cargo install mdbook-latex
Add the following toml
configuration to book.toml
.
[output.latex]
latex = true # default = true
pdf = true # default = false
markdown = true # default = false
The next mdbook build
command will produce LaTeX and PDF files (and the markdown file of your mdbook) in the book/latex/
directory.
To uninstall mdbook-latex
, enter the following in a shell:
cargo uninstall mdbook-latex
Then delete the [output.latex]
configuration in book.toml
:
- [output.latex]
- latex = true
- pdf = true
- markdown = true
mdbook-latex
is built upon some really wonderful projects, including:
- pulldown-cmark: Parses the markdown source AST.
- Tectonic: Creates the final PDF file from the transformed LaTeX code.
- md2tex: Transforms the markdown source to LaTeX. This is a fork of md2pdf, a great utility for converting markdown code to LaTeX and PDF's. I hope to eventually propose some of the updates back upstream.
md2tex
andmdbook-latex
are developed in tandem, but are meant to be independent programs. Therefore, if one wishes to use an alternative markdown-to-tex conveter, they should be able to plug it in tomdbook-latex
with ease.
Broadly speaking, there are three steps, or "transformations", from mdbook
source to PDF output:
- mdbook source to JSON-organized markdown (
mdbook-latex
): retreives the JSON formatted data frommdbook
. Callsmd2tex
andtectonic
for LaTeX and PDF generation, respectively. - markdown to LaTeX (
md2tex
): converts markdown input to LaTeX output. - LaTeX to PDF (
tectonic
): creates PDF document from LaTeX input.
Pull requests, forks, and plain old copy-pasting are actively encouraged! Also, I am relatively new to Rust (and programming in general) so recommendations or advice in general is always appreciated.
Either one. mdbook-latex
can be thought of as a frontend for the LaTeX generation done by md2tex
. So if there is a LaTeX error, you may favor creating an issue with md2tex
. Otherwise, creating an issue with mdbook-latex
is a good bet. But any issue is a good issue, so don't worry if it's in the "right" repository or not, I should be able to see it regardless!
Below is a list of features I am currently working on (loosely in a "top-down" direction).
- Add support for equation delimiters "( x^2 )" "[ x^2 ]".
- Allow SVG images (convert to PNG for LaTeX).
- Configure resvg library to convert SVG's to PNG.
- Save SVG's in
book/latex
directory to keepsrc
clean.
- Add CI/CD pipeline (travis)
- Move all LaTeX data to single template file (src/template.tex).
- Add support for raw HTML tables.
- Add syntax highlighting via syntect Γ la lumpy-leandoc.
- Add parallel transformations via Rayon Γ la lumpy-leandoc.
- Use lumpy-leandoc's method for handling events (replace
current
event withfold
). - Compile The Rust Book and mdbook documentation without any errors or warnings (e.g. missing Unicode characters). See Status of Rust Bookshelf for up to date progress.
- Put "tectonic" dependency in "pdf" feature configuration.
- Add "table of contents" mdbook toml option.
- Add "markdown" mdbook toml option.
- Add "number of words" mdbook toml option.
- Add "examples" directory.
- Create documentation and move relevent docs to md2tex.
- Add option for custom LaTeX headers.
- Add option for alternative markdown-to-latex converter plugin.
- Add test suites.
- Cross compile binaries (trust)
- Add option to generate PDF with mdproof to skip LaTeX dependencies.
- Complete acordance with the CommonMark spec.
The following projects served as guidance for mdbook-latex
(or are simply cool enough that they deserve to be shared!):
- mdbook-epub: A backend for mdbook that creates EPUB files.
- mdbook-linkcheck: A backend for
mdbook
that will verify URL links. - LaTeX-rs: A cool library for programmatic LaTeX generation that I hope to eventually incorporate.
- crowbook: A rich program that can generate HTML, PDF, and EPUB files from markdown code. Has a neat online demo page to try it out interactively. Similar in some respects to
mdbook
, but with an added focus on "novels and fiction". Though general enough to handle a lot of different projects. - no starch press: The Rust Programming Language made professionally by a proper publishing company. Guranteed to have fewer errors than
mdbook-latex
! - lumpy-leandoc: A more elegant approach to markdown-LaTeX conversion via
pulldown_cmark
than that currently provided bymd2tex
. Also includes parallelism via Rayon and syntax highlighting via syntect!
Oops! That means I still have more work to do. If you absolutely need your PDF right now, then the quicket option is to select the print
icon in the upper right corner of the online page of your book.
Another method is to run the markdown file through an alternative markdown to LaTeX converter like pandoc
:
pandoc --from markdown --to latex book/latex/MY_BOOK.md -o book/latex/MY_BOOK.pdf
Or run it through a free (as in free parking) online solution:
If, however, you don't mind getting your hands dirty with LaTeX, here is my process for when the build step fails:
- Change the latex configuration in
book.toml
to only output LaTeX and markdown files:
[output.latex]
latex = true
pdf = false
markdown = true
- First see where
tectonic
is running into errors by manually running it and looking for! LaTeX Error
:
tectonic book/latex/MY_BOOK.tex
note: this is a BETA release; ask questions and report bugs at https://tectonic.newton.cx/
Running TeX ...
error: something bad happened inside TeX; its output follows:
===============================================================================
(MY_BOOK.tex
.
.
.
! LaTeX Error: Missing \begin{document}.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.260 \clearpage
No pages of output.
Transcript written on MY_BOOK.log.
===============================================================================
error: the TeX engine had an unrecoverable error
caused by: halted on potentially-recoverable error as specified
Aha! ! LaTeX Error: Missing \begin{document}.
In this example, mdbook-latex
failed to output the very important \begin{document}
line.
- Fix the grievous goof-up in your favorite editor and rerun
tectonic
(repeat this step until tectonic successfully compiles the PDF):
ed book/latex/MY_BOOK.tex
tectonic book/latex/MY_BOOK.tex
Is it an elegant approach? No. Does it work? Sometimes. Is it a pain? Always.
If you're feeling especially adventurous, create an issue or get in touch with me (liam@liambeckman.com) to help prevent the same errors in the future. I'm more than happy to work with you to get your document compiled!
: ^ )
- β binary available
- β binary not available
Binary? | Target |
---|---|
β | |
β | |
β | |
β | |
β | |
β | |
β | x86_64-unknown-linux-gnu |