-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpaper.tex
90 lines (73 loc) · 6.46 KB
/
paper.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
\documentclass[10pt,a4paper, oneside]{article}
% Page layout and labels --------------------------------------------------
\usepackage[a4paper, left=3cm, right=3cm, top=3cm, bottom=3cm]{geometry}
\usepackage[right]{showlabels}
% Author affiliations and paragraph handling-------------------------------
\usepackage{authblk}
\usepackage[parfill]{parskip}
% Fonts, line numbers, and symbols-----------------------------------------
\usepackage{graphicx}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage{lineno, amstext, amssymb, bm}
% Mathematical tools and theorem styles------------------------------------
\usepackage{mathtools}
\usepackage{amsthm}
% Table and figure handling------------------------------------------------
\usepackage[format=plain, labelfont={bf, it}, textfont=it]{caption}
\usepackage{booktabs, tabu, tabularx}
% Algorithms---------------------------------------------------------------
\usepackage{algpseudocode}
\usepackage[ruled, vlined]{algorithm2e}
% Custom commands for easier readability in formulas-----------------------
\newcommand{\disp}{\boldsymbol{u}}
\newcommand{\dmg}{\theta}
\newcommand{\xvec}{\boldsymbol{x}}
\newcommand{\dd}[1]{\mathrm{d}#1}
\newcommand{\straint}{\boldsymbol{\epsilon}}
\newcommand{\stresst}{\boldsymbol{\sigma}}
\providecommand{\keywords}[1]{\textbf{{Keywords:}} #1}
\theoremstyle{remark}
\newtheorem*{remark}{Remark}
% Bibliography and linking-------------------------------------------------
\usepackage[numbers]{natbib}
\bibliographystyle{unsrtnat}
\usepackage[bookmarks=true, colorlinks=true, linkcolor=blue, citecolor=red]{hyperref}
\pdfstringdefDisableCommands{\let\uppercase\relax}
% Cross-referencing--------------------------------------------------------
\usepackage[nameinlink, capitalize]{cleveref}
\begin{document}
% Front Matter --------------------------------------------------------------
\title{This is the title of our paper}
\author[1]{Abhinav Gupta}
\author[1]{Rajib Chowdhury}
\author[1]{Anupam Chakrabarti}
\affil[1]{Department of Civil Engineering, Indian Institute of Technology Roorkee, India}
\thispagestyle{empty}
\newpage
\maketitle
\setcounter{page}{1}
\linenumbers
\begin{abstract}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. This is a sample statement.`'
\end{abstract}
\keywords{Keyword 1, Keyword 2, Keyword 3, Keyword 4, Keyword 5}
% Introduction --------------------------------------------------------------
\section{Introduction}
Lorem Ipsum is simply dummy text of the printing and typesetting industry \citep{gupta55lineCodeLargescale2020}. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries \citep{guptaAutoadaptiveSubsteppingAlgorithm2020a,mandalLengthScaleInsensitive2020a}, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry \cref{sec:formulation}. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum \cref{sec:conclusion}.
% Formulation ---------------------------------------------------------------
\section{Variational formulations}
\label{sec:formulation}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
% Conclusion ----------------------------------------------------------------
\section{Conclusion}
\label{sec:conclusion}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
% Appendix ------------------------------------------------------------------
\appendix
\section{Some additional stuff}\label{sec:appenix_a}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
% References ----------------------------------------------------------------
\bibliography{bibliography}
\end{document}