Templates

TurboJet Boilerplate

Preview

TurboJet Boilerplate

Latex boilerplate and detailed instructions for fast PDF production.

Category

phd

License

Free to use (MIT)

File

main.tex

main.texRead-only preview
\documentclass[12pt,a4paper]{report}

% Packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}  % Use Latin Modern fonts (vector, not bitmap)
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[
    colorlinks=true,
    linkcolor=black,
    citecolor=blue,
    urlcolor=blue
]{hyperref}
\usepackage[margin=1in]{geometry}
\usepackage{cite}

% Graphics path
\graphicspath{{images/}}

% Document information
\title{Document Title}
\author{Author Name}
\date{\today}


\begin{document}

% Title page
\maketitle

% Abstract
\begin{abstract}
This is the abstract of the document. Provide a brief summary of your work here.
This is gonna be about autocompletion (\textit{tabbing} your way to the victory).

% Add image from the folder
\begin{figure}[htbp]
    \centering
    \includegraphics[width=0.8\textwidth]{pixellated_GNU.png}
    \caption{Example figure caption}
    \label{fig:example_figure}
\end{figure}

\end{abstract}

% Table of contents
\tableofcontents
\listoffigures
\listoftables

% Chapters
\include{chapters/chapter1}
\include{chapters/chapter2}
\include{chapters/chapter3}
\include{chapters/chapter4}

% Bibliography
\bibliographystyle{plain}
\bibliography{references}

\end{document}
Preview
TurboJet Boilerplate preview
TurboJet Boilerplate LaTeX Template | Bibby | Bibby AI