-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
61 lines (44 loc) · 1.4 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
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
% Font
% \renewcommand{\familydefault}{\sfdefault} % sans serif
% \renewcommand{\familydefault}{\rmdefault} % serif (roman)
% \renewcommand{\familydefault}{\ttdefault} % typewriter (monospace)
\usepackage{mathptmx}
% \usepackage{fontspec} % need to compiled with either xelatex or lualatex
% \setmainfont[Ligatures=TeX]{Georgia}
% \setsansfont[Ligatures=TeX]{Arial}
\usepackage{geometry}
\geometry{a4paper, scale=0.8}
% For prettier tables
% replace \hline with \toprule, \midrule and \bottomrule
\usepackage{booktabs}
% For list spacing
\usepackage{enumitem}
\setlist{noitemsep} % or \setlist{nosep} to leave space around whole list
% \setlist{nolistsep}
% For multi-column
\usepackage{multicol}
\setlength{\columnsep}{1cm}
% For graphic/figure
\usepackage{graphicx}
\title{\textbf{SemEval-2018 Task 7 Subtask 1: Semantic Relation Classification in Scientific Papers}}
\author{\textbf{Hui-Qiang Jiang} \quad \textbf{Da-Wei Lee} \\
Peking University \\
{\tt \{1801210840,1701210963\}@pku.edu.cn}}
\date{April 9, 2019}
\begin{document}
\maketitle
\begin{abstract}
\input{sections/abstract.tex}
\end{abstract}
\begin{multicols}{2}
\input{sections/intro.tex}
\input{sections/related.tex}
\input{sections/model.tex}
\end{multicols}
\input{sections/experiment.tex}
\input{sections/conclusion.tex}
\bibliographystyle{acl_natbib}
\bibliography{mybib}
\end{document}