aboutsummaryrefslogtreecommitdiff
path: root/doc/tex/tfg.tex
blob: 4c64bb22fa445a2262c82eac95c262941b7ddef9 (plain)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
\documentclass{article}

\usepackage{geometry}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{hyperref}
\usepackage{csquotes}
\usepackage{enumitem}

\usepackage{chngcntr}
\counterwithin{figure}{section}

\usepackage[backend=biber, style=numeric, sorting=none]{biblatex}
\addbibresource{tex/biber.bib}

\usepackage{minted} % Code importing and formatting
\setminted{linenos, breaklines}

\geometry{left=4cm,top=2cm,bottom=2cm,right=4cm}

\hypersetup{colorlinks=false,
	linkcolor=black,
	filecolor=black,
	urlcolor=black,
	bookmarks=true
}

\urlstyle{mono}

\newcommand{\program}{Imago}

\newcommand{\fref}[1]{Fig.~\ref{#1}}
\newcommand{\flist}[1]{Listing~\ref{#1}}
%\newcommand{\uurl}[1]{\underline{\url{#1}}}

\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\begin{document}

\frenchspacing

\title{\program\\
\large An AI player of the game of Go}

\author{Íñigo Gutiérrez Fernández}

\date{}

\maketitle

\thispagestyle{empty}

\begin{figure}[h]
	\begin{center}
		\includegraphics[width=0.6\textwidth]{img/imago.jpg}
	\end{center}
\end{figure}

\clearpage

\begin{abstract}
	This is the abstract.
\end{abstract}

\clearpage

\section*{Acknowledgements}

TODO: Acknowledgements

To Vicente García Díaz, for directing me in this project.

To José Manuel Redondo López\cite{plantillaRedondo}, for making an extensive
template on which the structure of this documentation is extensively based.

\clearpage

\section*{Copyright notice}

\begin{displayquote}

	Copyright (C) 2021 \textbf{ÍÑIGO GUTIÉRREZ FERNÁNDEZ}.

	\textit{Permission is granted to copy, distribute and/or modify this
	document under the terms of the GNU Free Documentation License, Version 1.3
	or any later version published by the Free Software Foundation; with the
	Copyright notice as an Invariant Section, no Front-Cover Texts, and no
	Back-Cover Texts.  A copy of  the license  is  included in  the  section
	entitled ``GNU Free Documentation License''.}

\end{displayquote}

Although this document uses the GNU Free Documentation License to keep its
contained information free, bear in mind that it isn't software documentation or
a manual or guide of any kind, and serves just as the documentation for the
author's Degree's Final Project.

This document is based on a template by José Manuel Redondo López, associate
professor of the University of Oviedo. The copyright notice he asks for
inclusion to use this template is included here.

\begin{displayquote}

	Copyright (C) 2019 \textbf{JOSÉ MANUEL REDONDO
	LÓPEZ}.\cite{plantillaRedondo}

	\textit{Permission is granted to copy, distribute and/or modify this
	document under the terms of the GNU Free Documentation License, Version 1.3
	or any later version published by the Free Software Foundation; with no
	Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.  A  copy
	of  the license  is  included in  the  section entitled ``GNU  Free
	Documentation License''.}

\end{displayquote}

\clearpage

\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{4}
\tableofcontents

\listoffigures

\listoflistings

\clearpage

\input{tex/introduction.tex}

\input{tex/planification.tex}

\input{tex/systemAnalysis.tex}

\input{tex/systemDesign.tex}

\input{tex/implementation.tex}

\clearpage

% References (bibliography)

\setcounter{secnumdepth}{0}
\section{References}
\printbibliography[type=article,title={Cited articles},heading=subbibintoc]{}
\printbibliography[type=online,title={Online resources},heading=subbibintoc]{}

\end{document}