-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
117 lines (98 loc) · 2.68 KB
/
main.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
\documentclass[12pt,french,english]{report} % main lang last
%\documentclass[12pt,english, spanish, french]{thesis}
%
% usage notes:
% - Place figures in the /fig folder
% - Place chapters in the /chapters folder.
% - References should be included in ./mybib.bib
% Some page styling:
%\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
%\usepackage{fancyhdr}
%\pagestyle{fancy}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{caption}
\usepackage{subcaption}
% Interlineado
%\usepackage{setspace}
%\setstretch{1.5}
% Bibtex
%\usepackage{cite} % use cite with natbib but not with biblatex
%\usepackage{natbib}
\usepackage[style=alphabetic,natbib=true]{biblatex}
\bibliography{./refs} % put here in preamble when using biblatex
\usepackage{float}
%\usepackage{color}
\usepackage{graphicx}
\usepackage{rotating}
%\usepackage{eso-pic}
%\usepackage{multicol}
\usepackage{enumerate} % custom lists
%\usepackage{url}
%\usepackage{soul}
%\usepackage{fancyhdr}
% for working with eps
\usepackage{epstopdf}
\usepackage{color} % color text
\usepackage{titlesec} % to change the way \paragraph formats the titles
\usepackage{textcomp} % for copyright symbol
\usepackage{quotchap} % for chapter openning quotes
% Define a path for the fig folder
% nota: imges must be in the same folder or subfolders of this file, if not pdf2latex will complain
% ---------------------- %
\newcommand{\figpath}{./fig}
%\graphicspath{ {./fig/} }
% Bibligraphy path
% ---------------------- %
\newcommand{\bibpath}{.}
% row counting for tables
% ---------------------- %
\newcounter{magicrownumbers}
\newcommand\rownumber{\stepcounter{magicrownumbers}\arabic{magicrownumbers}}
% end preamble
%
% Start content
% -------------------------------------------------------------------------------------- %
\begin{document}
% ---------------------- %
% Title
% ---------------------- %
\title{The Legacy Project}
\author{
Michel, Nicolas\\
\texttt{[email protected]}
\and
Almonacid Zamora, Vicente\\
\texttt{[email protected]}
}
\date{\today}
\maketitle
% \chapter*{Acknowledgements}
% I want to thank...
\tableofcontents
% \listoffigures
% ---------------------- %
% Main Content
% ---------------------- %
\include{chapters/exec_summ}
\include{chapters/business_model}
\include{chapters/implementation}
\include{chapters/roadmap}
\include{chapters/legal}
\include{chapters/crowdfunding}
\include{chapters/team}
% ---------------------- %
% Bibliography
% ---------------------- %
%
% 1. using natbib
%\bibliographystyle{plain}
%\bibliography{\bibpath/refs}
%
% 2. uing biblatex
\printbibliography
% ---------------------- %
% Appendix
% ---------------------- %
\include{chapters/appendix}
\end{document}}