A template for LaTeX scientific notes. Clone this repository to start a new project.
- Clone this template
- Edit
latex/main.texto set your title and author - Write content in
latex/parts/content.tex - Run
make latexto build
Install the complete TeX distribution (~4GB):
brew install --cask mactexAfter installation, restart your terminal or run:
eval "$(/usr/libexec/path_helper)"Install a smaller distribution (~100MB):
brew install --cask basictexThen install required packages:
sudo tlmgr update --self
sudo tlmgr install collection-latexrecommended collection-fontsrecommended \
latexmk parskip booktabs float subcaption cleveref mathtoolspdflatex --versionBuild the PDF:
make latexOutput is written to out/main.pdf.
Clean build artifacts:
make cleanlatex/
├── main.tex # Main document
├── parts/ # Content files
│ └── content.tex # Main content (add more as needed)
└── out/ # Build output
Edit latex/parts/content.tex or create additional files and include them with \input{parts/filename} in main.tex.