-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
65 lines (56 loc) · 2.18 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
\documentclass{article}
% Math packages from AMS, graphicx for images, hyperref for colored links, lineno for inserting line numbers, lipsum for generating random chunks of text, geometry for margins, natbib for bibliography, subcaption for subfigures, authblk for affiliation
\usepackage{amsmath, amsfonts, amssymb, graphicx, hyperref, lipsum, setspace, subcaption, lineno, natbib, authblk}
% Reduce the margin a bit
\usepackage[a4paper, total={6in, 10in}]{geometry}
% To remove line numbers, comment out the next line
\linenumbers
% Get more colors than default set and color links (citations, urls).
\usepackage[dvipsnames]{xcolor}
\hypersetup{colorlinks=true, linkcolor=MidnightBlue, urlcolor=MidnightBlue,
citecolor=MidnightBlue}
% //////////////////////////////////////////////////////////////
\begin{document}
\title{Title}
\author{Author}
\affil{Affiliation}
% \date{} % Uncomment to add today's date
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
% //////////////////////////////////////////////////////////////
\section{Introduction}
\lipsum[1] \citep{batra2022Machine}
\begin{figure*}[!h]
\begin{subfigure}[h]{0.3\linewidth}
\includegraphics[width=\linewidth]{example-image}
\caption{subcaption}
\end{subfigure}\hfill
\begin{subfigure}[h]{0.3\linewidth}
\includegraphics[width=\linewidth]{example-image}
\caption{subcaption}
\end{subfigure}\hfill
\begin{subfigure}[h]{0.3\linewidth}
\includegraphics[width=\linewidth]{example-image}
\caption{subcaption}
\end{subfigure}\hfill
\begin{subfigure}[h]{0.3\linewidth}
\includegraphics[width=\linewidth]{example-image}
\caption{subcaption}
\end{subfigure}\hfill
\begin{subfigure}[h]{0.3\linewidth}
\includegraphics[width=\linewidth]{example-image}
\caption{subcaption}
\end{subfigure}\hfill
\begin{subfigure}[h]{0.3\linewidth}
\includegraphics[width=\linewidth]{example-image}
\caption{subcaption}
\end{subfigure}\hfill
\caption{Figure caption}
\end{figure*}
\lipsum[1]
% ////////////////////////////////////////////////////////////
\bibliographystyle{plainnat}
\bibliography{ref}
\end{document}