-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
47 lines (34 loc) · 1.41 KB
/
main.tex
File metadata and controls
47 lines (34 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\documentclass{settings/notex}
% PREAMBLE ─────────────────────────────────────────────────────────────────────
% Images path
\graphicspath{{images/}}
% Additional packages here
\usepackage{blindtext}
% ...
% Subfiles package (best loaded last in the preamble)
\usepackage{subfiles}
% TITLE, AUTHOR AND DATE ───────────────────────────────────────────────────────
% Title, Author and Date
\title{\bft{NoTeX Template}}
\author{Marco Tallone}
\date{2024}
% Copy versions for headers (see NOTE on `Styles` in settings/notex.cls)
% \newcommand{\pastetitle}{NoTeX Template}
% \newcommand{\pasteauthor}{Marco Tallone}
% \newcommand{\pastedate}{2024}
% DOCUMENT ─────────────────────────────────────────────────────────────────────
\begin{document}
\maketitle
\tableofcontents
% Sections
\pagebreak
\subfile{sections/introduction}
\pagebreak
\subfile{sections/section}
% Bibliography
% Remember to compile with the sequence:
% lualatex -> bibtex -> lualatex -> lualatex
\pagebreak
\bibliographystyle{plainurl}
\bibliography{bibliography}
\end{document}