forked from rchiechi/BibLaTex-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manuscript.tex
109 lines (81 loc) · 2.49 KB
/
manuscript.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
% Load the rcclab class pass bibstyle=<style> to change biblatex style (chem-acs, chem-rsc, chem-angew, etc.)
% Pass articletitle=true to turn on article titles in the bibliography.
% e.g., \documentclass[bibstyle=chem-rsc,articletitle=true]{rcclab}
\documentclass[articletitle=true]{rcclab}
% Head.tex includes useful packages and macros
\include{head}
% Place all Main Tex figures in the figures/ subdirectory
\graphicspath{{figures/}}
% Load supporting_information.aux to use cross-references
\externaldocument{supporting_information}
% authorlist.tex contains the list of authors
\input{authorlist}
% This is useful for debugging UTF-8 errors
%\DeclareUnicodeCharacter{0301}{*************************************}
%
% Begin the document
%
\begin{document}
% Render the title and authors
\maketitle
% affiliations.tex contains the affiliations for each author
\input{affiliations}
% Write an abstract
\begin{abstract}
A succinct abstract.
\end{abstract}
% Add some keywords
\textbf{Keywords:} Keyword 1, Keyword 2, Keyword 3, Keyword 4, Keyword 5
%
%Target Journal:
%
%% Outline
%
% If this is your first outline, go read this essay before you start writing:
% https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/politics-and-the-english-language/
%
%
%
\begin{outline}
\item What did you do?
\begin{itemize}
\item A descriptive sentence that may begin ``this paper describes\dots''.
\end{itemize}
\item Why did you do it?
\begin{itemize}
\item What motivated you to do what you did?
\end{itemize}
\item What is new?
\begin{itemize}
\item What part of this work is important because it is new?
\end{itemize}
\item How does it compare to existing methods/studies?
\begin{itemize}
\item How does this work extend or build on the SOTA?
\end{itemize}
\item Who Cares?
\begin{itemize}
\item Define the scope of the scientific community likely to find this work interesting.
\end{itemize}
\end{outline}
%%
\section{Introduction}
\input{introduction}
\section{Results and Discussion}
\input{results_and_discussion}
\section{Conclusions}
\input{conclusions}
\section{Experimental}
\input{experimental}
\section{Acknowledgements}
\input{acknowledgements}
\clearpage
\printbibliography
%\begin{figure}
%\centering
%\captionsetup{labelformat=empty}
%\includegraphics[width=0.8\textwidth]{TOC.pdf}
%\caption{}
%\label{fig:TOC}
%\end{figure}
\end{document}