-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzig-game-engine.tex
More file actions
44 lines (30 loc) · 995 Bytes
/
zig-game-engine.tex
File metadata and controls
44 lines (30 loc) · 995 Bytes
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
\documentclass[11pt, letterpaper]{article}
\title{Making a game engine in Zig}
\author{Zachary Boehm}
\date{October 2024}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
% Color and link toc
\usepackage{color} %May be necessary if you want to color links
\usepackage{hyperref}
\hypersetup{
colorlinks=true, %set true if you want colored links
linktocpage=true, %set to all if you want both sections and subsections linked
%linktoc=all, % Use this for poth title and page number
linkcolor=blue, %choose some color if you want links to stand out
}
% Allows manipulating the line spacing
\usepackage{setspace}
\onehalfspacing
\usepackage{wrapfig} % Wrap figures/images
\usepackage{graphicx} %LaTeX package to import graphics
\graphicspath{{images/}} %configuring the graphicx package
\usepackage{amsmath}% For the equation* environment
\begin{document}
\maketitle
\break
\tableofcontents
\break
\section{Where to Start}
Where to start?
\end{document}