-
Notifications
You must be signed in to change notification settings - Fork 0
/
grass_arch.tex
120 lines (102 loc) · 3.74 KB
/
grass_arch.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
118
119
120
\documentclass[twoside]{book}
%% Encoding and language
\usepackage[utf8]{inputenc}
\usepackage[english,italian]{babel}
%% Graphics
\usepackage[usenames,dvipsnames]{color}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{wrapfig}
\usepackage{sidecap}
\usepackage{eso-pic}
\usepackage{tikz}
\usetikzlibrary{shapes,decorations}
\graphicspath{{img/}}
%% Symbols and math
\usepackage{textcomp}
\usepackage{amsmath}
\usepackage{amssymb} %needed for boxes with tikz
\usepackage{upgreek}
\usepackage[amssymb]{SIunits}
\usepackage{xfrac}
\usepackage[all]{xy} %needed for block diagrams
%% %%%%%%%
%% Layout
\usepackage{multicol}
\usepackage{framed}
\usepackage{fancybox}
\usepackage{fancyvrb}
\usepackage[left=3cm,right=2cm,vmargin=2cm]{geometry}
\usepackage{multirow} %% multirow tables
\usepackage{booktabs} %% quality tables
\newcommand {\otoprule}{\midrule[\heavyrulewidth]} % defines a customized height for the row under tables heading
\usepackage{array}
\usepackage{ulem}
\usepackage{fancyhdr}
\usepackage{dirtree}
\usepackage{epigraph}
\usepackage[unicode=true,bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,breaklinks=true,pdfborder={0 0 0},backref=false,colorlinks=true]{hyperref}
\hypersetup{pdftitle={GRASS GIS per gli archeologi},pdfauthor={Francesco de Virgilio}}
\usepackage{listings}
\lstset{ %
basicstyle=\footnotesize, % the size of the fonts that are used for the code
numbers=left, % where to put the line-numbers
numberstyle=\footnotesize, % the size of the fonts that are used for the line-numbers
stepnumber=1, % the step between two line-numbers. If it's 1 each line will be numbered
numbersep=5pt, % how far the line-numbers are from the code
backgroundcolor=\color{white}, % choose the background color. You must add \usepackage{color}
showspaces=false, % show spaces adding particular underscores
showstringspaces=false, % underline spaces within strings
showtabs=false, % show tabs within strings adding particular underscores
frame=single, % adds a frame around the code
tabsize=2, % sets default tabsize to 2 spaces
captionpos=b, % sets the caption-position to bottom
breaklines=true, % sets automatic line breaking
breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
%title=, % show the filename of files included with \lstinputlisting; also try caption instead of title
escapeinside={\%*}{*)}, % if you want to add a comment within your code
morekeywords={*,\dots} % if you want to add more keywords to the set
}
\usepackage{setspace}
\onehalfspacing
%% header con fancyhdr
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{\bfseries \leftmark}
\cfoot{GRASS GIS in archeologia}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\normalem %definisce lo stile delle sottolineature
\VerbatimFootnotes %abilita l'utilizzo del codice nelle note, con il pacchetto fancyvrb
%% </Layout>
%% %%%%%%%%%%
\begin{document}
\frontmatter
\include{cap/copertina}
\pagebreak
\tableofcontents
\pagebreak
\listoffigures
\pagebreak
\include{cap/preface}
\mainmatter
\include{cap/introduzione_gis}
\include{cap/elementi_grass}
\include{cap/carte_raster}
\include{cap/carte_vettoriali}
\include{cap/dem}
\appendix
\part*{Appendici}
\include{cap/qgis_interface}
\include{cap/gis_archeologia}
\include{cap/mobile_gis}
\include{cap/app_codice}
\include{cap/proiezioni}
\backmatter
\include{cap/licence}
%\include{cap/bibliography}
\end{document}