This is a template to create a paper for school. It uses LaTex and the APA 7th format for references. It demos using Zotero for keeping track of research papers, but one could use anything that can export to BibLaTex.
To use references in the paper, you need to export them from Zotero into BibLaTex format:
To "compile" the paper, make sure you have the LaTeX Binaires above installed on your system (you can check with pdflatex --version
).
Make sure your exported reference file is in the same directory and referenced in the .tex
file:
...
\addbibresource{sample.bib}
...
then, to make the PDF file, run:
make build
Or have a look at the Makefile for the commands to run. You do indeed need to run the compiler 3 times - that's normal :-/
🤞