forked from JinqianPan/JAMIA-paper-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
141 lines (118 loc) · 3.44 KB
/
main.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
\documentclass[twocolumn, 8pt]{article}
\usepackage{lipsum}
\usepackage{JAMIA}
\title{My Cool Title Here}
\author[1, 2]{Author One, MD}
\author[2]{Author Two, PhD}
\author[1]{Author Three, PhD}
\affil[1]{Institution One, Country;}
\affil[2]{Institution Two, Country}
\date{}
\begin{document}
% make title and abstract
%==============================
\par\noindent\rule[-7pt]{15.5cm}{0.2em}
\begin{strip}
\begin{minipage}{.88\textwidth}
\maketitle
\small
\abstractSection
{This is a cool work. Cool works must be accepted. So, accept this work.} % Objective
{} % Materials and Methods
{} % Results
{} % Discussion
{} % Conclusion
{deep learning, machine learning} % Key words
\par\noindent\rule[-7pt]{15.5cm}{0.2em}
\hspace{2cm}
\end{minipage}
\end{strip}
%==============================
% Introduction
%==============================
\section*{Introduction}
\begin{figure*}
\centering
\setlength{\abovecaptionskip}{0pt}
% \includegraphics[width=0.9\textwidth, trim=1.7cm 7cm 8.5cm 2cm, clip]{img/figure1.pdf} % Could crop PDF
\includegraphics[width=0.4\textwidth]{img/example.png}
\caption{This is a image.}
\label{fig::local_pred_model}
\end{figure*}
\lipsum[3-8] \cite{he2016deep} \textcolor{red}{\textbf{CITE HERE!}}
%==============================
\begin{table*}[hbt!]
\setlength{\abovecaptionskip}{5pt}
\caption{This is Table 1.}
\label{tab::conv}
\centering
% \resizebox{\textwidth}{!}{
\resizebox{13cm}{!}{
\begin{tabular}{lccccccc}
\toprule
& \multicolumn{7}{c}{\textbf{Table}} \\
\cline{2-8}
& \textbf{Table} & \textbf{Table} & \textbf{Table} & \textbf{Table} & \textbf{Table} & \textbf{Table} & \textbf{Table}\\
\midrule
\textbf{Table*} &&&&&& \\
\quad \# Within 6 Table & & & & & & & \\
\quad \# Within 12 Table & & & & & & & \\
\cline{1-8}
\# Average Table & & & & & & & \\
\cline{1-8}
\multicolumn{8}{l}{\small \quad*Table: table table}\\
\end{tabular}
}
\end{table*}
\begin{table*}[hbt!]
\setlength{\abovecaptionskip}{5pt}
\caption{This is Table 2.}
\centering
\resizebox{13cm}{!}{
\begin{tabular}{cccccc}
\toprule
\textbf{Table} & \textbf{Table} & \textbf{Within 6 Table} & \textbf{Within 12 Table} & \textbf{Within 24 Table} & \textbf{No Table} \\
\midrule
\multirow{4}{*}{\textbf{Big Table}}
& Table & & & & \\
& Table & & & & \\
& Table & & & & \\
& Table & & & & \\
\cline{1-6}
\end{tabular}
}
\label{tab::reuslt}
\end{table*}
% Materials and Methods
%==============================
\section*{Materials and Methods}
\subsection*{Study overview}
\lipsum[3-9]
%==============================
% Results
%==============================
\section*{Results}
\lipsum[3] \textbf{Table \ref{tab::conv}}
\textbf{Table \ref{tab::reuslt}} \lipsum[4]
%==============================
% Discussion
%==============================
\section*{Discussion}
\lipsum[3-6]
%==============================
% Conclusion
%==============================
\section*{Conclusion}
\lipsum[3-4]
%==============================
% Funding
%==============================
\section*{Funding}
\lipsum[3-4]
%==============================
% Reference
%==============================
\bibliographystyle{vancouver}
{\footnotesize \bibliography{citation}}
%==============================
\end{document}