-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.tex
More file actions
80 lines (62 loc) · 1.59 KB
/
Copy pathmain.tex
File metadata and controls
80 lines (62 loc) · 1.59 KB
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
\documentclass[fleqn,10pt]{wlscirep}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{csquotes}
\usepackage{pdfpages}
\usepackage{docmute}
\usepackage{filecontents}
\usepackage{listings}
\usepackage{standalone}
\usepackage{subcaption}
\usepackage[
backend=bibtex,
bibstyle=apa,
style=nature,
citestyle=numeric-comp,
]{biblatex}
\addbibresource{bibliography}
\title{YOUR TITLE GOES HERE}
\author[1,*]{AUTHOR1}
\author[1,*]{AUTHOR2}
\affil[*]{EMAIL}
\keywords{KEYWORDS}
\begin{abstract}
... ABSTRACT GOES HERE...
\end{abstract}
\begin{document}
\maketitle
\section*{Introduction}
\subsection{SUBSECTION HEADER GOES HERE}
Blah, blah I like sleep.
\section*{Methods}
\subsection{SUBSECTION HEADER GOES HERE}
We ran a sleep study and used a t-test \cite{students_t_1908}.
\section*{Results}
\input{results/Results.tex}
\section*{Discussion}
\subsection{SUBSECTION HEADER GOES HERE}
Blah, blah I still like sleep, but....
\printbibliography{}
\section*{Acknowledgements}
\section*{Author contributions statement}
\begin{figure}
\centering
\includegraphics[width=\linewidth, angle=0, scale=1.0, keepaspectratio=true]{figures/SAMPLE_FIGURE_1.png}
\caption{FIGURE1 CAPTION}
\label{fig:FIGURE1_LABEL}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\linewidth, angle=0, scale=1.0, keepaspectratio=true]{figures/T-test-1.pdf}
\caption{FIGURE2 CAPTION}
\label{fig:FIGURE2_LABEL}
\end{figure}
%\begin{table}[ht]
% \centering
% \input{results/TABLE1.tex}
% \caption{TABLE1 CAPTION}
% \label{tab:TABLE1_LABEL}
%\end{table}
\end{document}