forked from NREL/latex_editing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro_to_NREL_latex.tex
53 lines (45 loc) · 1.17 KB
/
intro_to_NREL_latex.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
% ---------------
% PREAMBLE
% ---------------
\newif\iflatextortf
\iflatextortf
% tell latex2tortf if this is an article or report
\documentclass[12pt,letterpaper]{article}
\input{NRELLatex2rtf.tex}
\else
%\documentclass[report,tagged]{nrel}
\documentclass[report]{nrel}
\fi
% -----------------------------------
% DOCUMENT PROPERTIES
% -----------------------------------
\title{Writing NREL documents using LaTeX}
\author{A. Clifton, A. Platt, P. Fleming, M. Lawson}
% -------------------------------------
% DOCUMENT STARTS HERE
% -------------------------------------
\begin{document}
\frontmatter
\input{files/ExecutiveSummary}
\input{files/Acknowledgments}
\mainmatter
\tableofcontents
\listoffigures
\listoftables
%% CHAPTER: REQUIREMENTS FOR NREL DOCUMENTS
\input{files/RequirementsForNRELDocs}
%% CHAPTER: HOW TO MAKE NREL LATEX DOCUMENTS %%
\input{files/LatexForNRELDocs}
%% CHAPTER: LATEX EXAMPLES %%
\input{files/LatexExamples}
%% CHAPTER:MAKING DOC FILES
\input{files/MakingDOCFiles}
%% CHAPTER: MAKING PDFS
\input{files/MakingPDFFiles}
% bibliography
\cleardoublepage
\bibliographystyle{nrel}
%\bibintoc
\label{sec:Bib}
\bibliography{files/bibliography}
\end{document}