-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReport_template.tex
109 lines (77 loc) · 2.87 KB
/
Report_template.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
\title{Report on <CONFIG_CASE> experiment}
\author{
Jean-Marc Molines, ... \\
MEOM- IGE - CNRS \\
IGE-DRA-\todayiso
}
\date{\today}
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{url}
\usepackage{float}
\usepackage[french,english]{babel}
\usepackage{verbatim}
\usepackage[T1]{fontenc}
\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}
\usepackage{textcomp}
\usepackage{color}
\usepackage{hyperref}
\usepackage{datetime}
\renewcommand{\dateseparator}{-}
\newcommand{\todayiso}{\the\year \dateseparator \twodigit\month \dateseparator \twodigit\day}
\newcommand{\figwidth}{\linewidth}
% Taken from the NEMO_book factory ...
%%%% namelist
\usepackage{alltt} %% alltt for namelist
\usepackage{verbatim} %% alltt for namelist
% namelists
\newcommand{\namdisplay} [1] {
\begin{alltt}
% NEMO uses \tiny here but very small
{\scriptsize \verbatiminput{./TexFiles/Namelist/#1}}
\end{alltt}
\vspace{-10pt}
}
\begin{document}
% ================================================================
% TITLE PAGE
% ================================================================
\input{./TexFiles/Title}
\newpage
\newpage % to start with intro on the right
% \maketitle
\textcolor{red}{\textbf{This report is a working version, please do not circulate out of the redaction comitee ...}} \\
% ================================================================
% INTRODUCTION
% ================================================================
\input{./TexFiles/Introduction}
% ================================================================
% NUMERICAL CODE
% ================================================================
\input{./TexFiles/Numerics}
% ================================================================
% MODEL CONFIGURATION
% ================================================================
\input{./TexFiles/ModelConfig}
% ================================================================
% FORCING OF THE MODEL
% ================================================================
\input{./TexFiles/Forcing}
% ================================================================
% RUN PRODUCTION
% ================================================================
\input{./TexFiles/RunProd}
% ================================================================
% VALIDATION
% ================================================================
\input{./TexFiles/Validation}
% ================================================================
% Acknowledgement
% ================================================================
\input{./TexFiles/Acknowledgement}
% ================================================================
% Acknowledgement
% ================================================================
\input{./TexFiles/Biblio}
\end{document}
%---------------------------------------------------------------------------------------------------