-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.tex
102 lines (82 loc) · 2.58 KB
/
template.tex
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
\documentclass[a4paper,12pt]{article}
% if you need additional LaTeX packages, add them here
\usepackage[]{geometry}
\usepackage{graphicx, wrapfig, enumitem}
\usepackage{xcolor}
\usepackage{listings, ulem}
\usepackage[most]{tcolorbox}
\usepackage{multirow, multicol, tabularx, booktabs}
\usepackage{fancyhdr}
\usepackage{tikz}
\usepackage{hyperref}
\usepackage[simplified]{pgf-umlcd}
\usepackage{subfiles}
\usepackage[linguistics]{forest}
\graphicspath{{Resources/}}
\setlist{nolistsep}
\setlength{\parindent}{0in}
\newcommand\ilkeFonts{
\usepackage{fontspec}
\setmainfont{texgyrepagella-regular.otf}[
BoldFont = texgyrepagella-bold.otf,
ItalicFont = texgyrepagella-italic.otf,
BoldItalicFont = texgyrepagella-bolditalic.otf,
Scale = MatchLowercase
]
\setmonofont{Inconsolatazi4-Regular.otf}[
BoldFont = Inconsolatazi4-Bold.otf,
Scale = MatchLowercase
]
\setsansfont{MerriweatherSans-Regular.ttf}[
BoldFont = MerriweatherSans-ExtraBold.ttf,
ItalicFont = MerriweatherSans-Italic.ttf,
BoldItalicFont = MerriweatherSans-ExBoldIt.ttf,
Scale = MatchLowercase
]
}
\ifxetex%
\ilkeFonts%
\else\ifluatex%
\ilkeFonts%
\else%
% \usepackage[sc]{mathpazo} % Palatino-like serif font
\usepackage[T1]{fontenc}
\usepackage[scaled=1]{inconsolata} % Fixed-width font
\usepackage[sf]{merriweather}
\fi
\hypersetup{colorlinks=true, linkcolor=blue!50!red, urlcolor=green!70!black}
\pagestyle{fancy}
\fancyfoot[L,C,R]{}
\fancyhead[L,C,R]{}
\fancyfoot[L]{}
\fancyfoot[R]{\thepage}
\fancyhead[R]{ProjectTitle}
\fancyhead[L]{
\includegraphics[height=1cm]{CRoCLogo(mediumquality).png}
% \includegraphics{Resources/CRoCLogo(mediumquality).png}
}
\title{
\begin{center}
\includegraphics[width=0.15\textwidth]{CRoCLogo(mediumquality).png}
\end{center}
\normalfont\normalsize
\textsc{Curtin Robotics Club}\\ % Your university, school and/or department name(s)
\vspace{25pt} % Whitespace
\rule{\linewidth}{0.5pt}\\ % Thin top horizontal rule
\vspace{20pt} % Whitespace
{\huge PROJECT NAME }\\
% {\huge Assignment Report}\\ % The assignment title
\vspace{12pt} % Whitespace
\rule{\linewidth}{2pt}\\ % Thick bottom horizontal rule
\vspace{12pt} % Whitespace
}
\author{\LARGE name name \\ \small [email protected]} % Your name
\date{\normalsize\today} % Today's date (\today) or a custom date
\begin{document}
\pagenumbering{gobble}
\maketitle
\pagebreak
\pagenumbering{roman}
\tableofcontents
\pagenumbering{arabic}
\end{document}