Skip to content
Snippets Groups Projects
Commit 1b1d6237 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

Merge branch 'short_report'

parents f645aff0 0dbb1a05
No related branches found
No related tags found
No related merge requests found
\ifcsname doctitle\endcsname\par\textbf{Title:}\ \doctitle\fi
\ifcsname docreferencecode\endcsname \par\textbf{Reference code:}\ \docreferencecode\fi
\ifcsname docversion\endcsname \par\textbf{Version:}\ \docversion\fi
\ifcsname docreviewers\endcsname \par\textbf{Reviewers:}\ \docreviewers\fi
\ifcsname doccreationdate\endcsname \par\textbf{Creation date:}\ \doccreationdate\fi
\bigskip
\textbf{File history:} \hfill
\begin{tabularx}{\textwidth}{|l|l|X|} \hline
\textbf{Date} & \textbf{Author} & \textbf{Description} \\ \hline
\today & \docauthor & Document creation \\ \hline
\end{tabularx}
\ No newline at end of file
\usepackage[utf8]{inputenc}
\usepackage[ddmmyyyy]{datetime}
\usepackage{courier}
\usepackage{tgheros}
\usepackage{listings}
\usepackage{caption}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{array}
\usepackage{fancyhdr}
\usepackage{ltablex}
\usepackage[a4paper,includeheadfoot,top=0.54cm, bottom=4.54cm, left=2.54cm, right=2.54cm]{geometry}
\usepackage{hyperref}
\usepackage[dvipsnames]{xcolor}
\usepackage{float}
% Change date separator
\renewcommand{\dateseparator}{.}
\renewcommand\familydefault{\sfdefault}
% Tables
\renewcommand{\arraystretch}{1.4}
\keepXColumns
% Graphics
\graphicspath{{./img/}}
% Paragraphs settings
\setlength{\parindent}{0pt}
% Header & footer
\fancyhf{}
\renewcommand{\headrulewidth}{0.0pt}
\renewcommand{\footrulewidth}{0.0pt}
\rhead{\includegraphics[width=0.1\textwidth]{logo.png}}
\fancyfoot[C]{\fontsize{11}{12}\selectfont \thepage}
\pagestyle{fancy}
\setlength{\headheight}{70pt}
% Define lstlisting styles
\lstdefinestyle{customgo}{
language=Go,
belowcaptionskip=1\baselineskip,
breaklines=true,
frame=single,
xleftmargin=\parindent,
showstringspaces=false,
basicstyle=\footnotesize\ttfamily,
keywordstyle=\bfseries\color{OliveGreen},
commentstyle=\itshape\color{lightblue},
identifierstyle=\color{blue},
stringstyle=\color{orange},
}
\lstset{style=customgo}
short_report/src/img/logo.png

10.8 KiB

\documentclass[11pt, a4paper]{article}
\input{definitions}
\newcommand{\doctitle}{Title}
\newcommand{\docsubtitle}{Report}
\newcommand{\docauthor}{Andri Joos}
\newcommand{\docversion}{1.0}
\newcommand{\doccreationdate}{\today}
\begin{document}
\pagenumbering{gobble}
\include{titlepage}
\cleardoublepage
% \include{changelog}
\tableofcontents\newpage
\pagenumbering{arabic}
\setlength{\parskip}{0.75em}
% sections
% \include{sections/tf_agents}
% \include{sections/tutorial}
% \include{sections/atari}
% \include{sections/conclusion}
\end{document}
File added
\begin{titlepage}
\centering
\vspace*{1.5cm}
\includegraphics[width=0.7\textwidth]{img/logo.png}\par
\vspace{2.5cm}
{\huge\bfseries\doctitle\par}
\ifcsname docsubtitle\endcsname
\vspace{0.5cm}
{\LARGE\docsubtitle\par}
\fi
\vspace{2cm}
{\Large\itshape\docauthor\par}
\vfill
{\large\today\par}
\end{titlepage}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment