This template is designed with only one thing in mind. The readability of the script. One of the hardest part in debugging any code, not just
I am under the impression that you might know some
The directory is setup in a way that almost all the settings are inteh config
directory. If you open main.tex
, the first thing included is the config/packages.tex
.
This file imports some of the essential packages that are required. I've added what some of these packages do as comments next to them. Uncomment/add the required packages here. For more details about these packages go to CTAN pkg/packagename
and read the documentation there.
The next thing imported by main.tex
is config/options.tex
. This file contains all the settings for the packages imported from config/packages.tex
. If you want to specify further options, put all of them into this file. Refer the documentation at CTAN for specific options of the packages.
This file contains color settings.
This file contains the settings to stylize definitions and theorems for your document.
This file contains some shortcuts which helped me typeset math equations.
The chapters of the report is supposed to be in the folder 01Chapters/
. Make a tex file for each chapter as it simplifies the content.
Edit the files in 00Intro/
with your details.
Cite whatever you want with \autocite
and refer things with \autoref
. Its way better than \ref
. Look at the code to see what I mean.
The bibliography file is set to 02End/math.bib
, using bibsource
in line 8 of main.tex
. Edit the .bib
file adding your citations. The citationstyle
can also be changed. Refer biblatex
documentation for this.
Remember to run biber
if you are working in your local system and not Overleaf.