This repository is a Proof of Concept about compiling MarkDown notes into LaTeX generated PDFs
@RobertoBochet came up with this idea; you will actually find some of his notes inside the example MarkDown file provided with this repo.
To use the Makefile and generate the PDF file from the MarkDown notes, you will need the following dependencies:
make
pandoc
latexmk
pdflatex
hyperref.sty
amsmath.sty
Run the following command inside the repository root:
make all
Afterwards, you will find the PDF of your notes inside the pdf
folder.
There are several things you may want to tweak before using the Makefile:
- the output PDF name is defined inside the
Makefile
, at the first line, inside theOUTNAME
variable; - the file containing the MarkDown notes is defined at the second line, inside the
CONTENTFILE
variable; - the file containing the document and packages settings is defined at the third line, inside the
MAINFILE
variable.