-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
81 lines (65 loc) · 1.54 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
\documentclass[11pt,a4paper]{article}
\usepackage[hyperref]{template/acl2020}
\usepackage{times}
\usepackage{latexsym}
\usepackage{url}
% Table packages
\usepackage{booktabs}
\usepackage{multirow}
% AMS packages
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
% CJK support
\usepackage{CJKutf8}
% Graphics
\usepackage{graphicx}
\graphicspath{ {./figures/} }
% Layout optimization
\usepackage{microtype}
\usepackage{xspace}
\renewcommand{\UrlFont}{\ttfamily\small}
% Customized commands
\newcommand\lorem{\textsc{Lorem}\xspace}
\newcommand\BibTeX{B\textsc{ib}\TeX}
% Title
\title{Hyperparameter Tuning with Necromancy}
% Authors and contacts
\author{Yichao Ji\\
Scholomance, Western Plaguelands, Eastern Kingdoms\\
\texttt{[email protected]}
}
\date{}
% PDF metadata
\makeatletter
\hypersetup{
pdftitle={\@title},
pdfauthor={\@author},
pdfsubject={\@title},
pdfkeywords={ACL; NLP},
pdfcreator={LaTeX with hyperref package},
}
\makeatother
% ACL template macros
\aclfinalcopy % Uncomment this line for the final submission
%\def\aclpaperid{***} % Enter the acl Paper ID here
\begin{document}
\maketitle
% Abstract
\begin{abstract}
\input{sections/abstract}
\end{abstract}
% Main
\input{sections/intro}
\input{sections/related}
\input{sections/method}
\input{sections/experiment}
\input{sections/conclusion}
% Bibliography
\bibliography{bibliography/related,bibliography/method}
\bibliographystyle{template/acl_natbib}
% Appendix
\appendix
\input{sections/appendix}
\input{sections/supplemental}
\end{document}