diff --git a/README.md b/README.md index bdc1a08..e60bbe4 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,13 @@ We've used the [markdown-pdf][] Atom editor package to convert the Markdown docu From the command line it's also possible to use pandoc and xelatex ``` +# Install with Homebrew brew install pandoc basictex +# Install with apt +sudo apt install -y pandoc texlive-xetex + +# Convert markdown to PDF pandoc src/standard-14days.md --pdf-engine=xelatex -o contract.pdf ```