forked from sylvainhalle/nserc-latex-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.tex
executable file
·99 lines (73 loc) · 2.89 KB
/
example.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
%% -----------------------------------------------------
%% Sample free form document written in NSERC format
%%
%% Step 1: declare the document as "nserc-appendix"; use either 11 or 12pt
%% fonts, and specify whether the document is in French or English
%% -----------------------------------------------------
\documentclass[12pt,english]{nserc-appendix}
\usepackage{blindtext}
%% --------------------------
%% Inclusion of a basic configuration file. Go see this file: there are
%% parameters (such as your name, etc.) to fill in. This avoids repeating
%% the same info in the case you produce multiple documents for the same
%% application.
%% --------------------------
\input{application-config.tex}
%% ----------
%% Set the title of the document in the PDF's metadata
%% ----------
\def\mytitle{Title of the document}
\hypersetup{%
pdftitle = {\mytitle{}}
}
\begin{document}
\title{\mytitle{}}
\chead{\footnotesize\mytitle{}}
%% ----------
%% Set start page number of the document
%% ----------
\setcounter{page}{7}
%\maketitle
\section{Introduction}
From here on, write your text as usual, using sections, subsections,
etc. You can also use references
\cite{DBLPjournals/jsyml/Turing48,DBLPconf/afips/SolomonP76}.
\blindtext{}
\section{Recent Progress}
Describe your recent progress in research activities related to the proposal and, in addition for renewals, the progress attributable to your previous Discovery Grant.
\begin{wrapfigure}{r}{0.4\textwidth}
\centering
This is a figure.
\caption{\label{fig:demo}my caption}
\end{wrapfigure}
See Fig.~\ref{fig:demo}.
\blindtext{}
\section{Objectives}
Define the short- and long-term objectives of your research program. Note that a research program should have a long-term vision that expands beyond the five years of the Discovery Grant. A single, short-term project or collection of projects does not constitute a research program.
\blindtext{}
\section{Literature Review}
Discuss the literature pertinent to the proposal, placing the proposed research in the context of the state of the art.
\blindtext{}
\section{Methodology}
Describe the methods and proposed approach, providing sufficient details to allow the reviewers to assess the feasibility of the research activities.
\blindtext{}
\section{Impact}
Explain the anticipated significance of the work.
\blindtext{}
\section{Conclusion}
\blindtext{}
%% ------------
%% References
%% NSERC applications require the references to be in a distinct PDF,
%% uploaded separately from the main text. The hack I suggest is to
%% write the document *with* the references at the end (like a normal
%% article, and then to split it in two manually (for example, using pdftk).
%% For Linux systems, the script split-application.sh bundled with this
%% package does exactly that.
%% ------------
\newpage
\pagestyle{plain}
\bibliographystyle{plain}
\bibliography{example}
\end{document}
%% :folding=explicit:maxLineLen=76:wrap=soft: