forked from nlpub/dialogue-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dialogue.tex
106 lines (67 loc) · 3.23 KB
/
dialogue.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
\documentclass{dialogue}
\begin{document}
\begin{otherlanguage}{english}
\begin{center}
{\Large\bfseries{A Typesetting Example of the Paper Title\\in Multiple Lines}}
\medskip
Surname N. P. (\texttt{[email protected]}), Surname N. P. (\texttt{[email protected]}),\\Surname N. P. (\texttt{[email protected]})
\medskip
Affiliation, City, Country
\end{center}
Please be careful when typesetting the paper.\medskip
\textbf{Key words:} syntax parsing, syntax parser, parsing, misspellings, misprints
\end{otherlanguage}
\bigskip
\begin{otherlanguage}{russian}
\begin{center}
{\Large\bfseries{Пример многострочного написания\\заглавия статьи}}
\medskip
Фамилия И. О. (\texttt{[email protected]}), Фамилия И. О. (\texttt{[email protected]}),\\Фамилия И. О. (\texttt{[email protected]})
\medskip
Организация, город, страна
\end{center}
Просим внимательно ознакомиться с требованиями и обязательно следовать им при оформлении доклада. В случае несоблюдения требований редакционная коллегия будет отсылать доклады обратно авторам для доработки, а также оставляет за собой право не принять доклад на основании неудовлетворительного оформления.\medskip
\textbf{Ключевые слова:} требования, доклады, примеры
\end{otherlanguage}
\selectlanguage{english}
\section{Examples}
I want this example to be useful.\footnote{But who can be sure?}
Sometimes, text changes its color. This is made intentionally.
\subsection{Formul\ae}
What if I want a vector like $\vec{x}$?
\begin{equation}
\text{similarity} = \cos(\theta) = \frac{\mathbf{A} \cdot \mathbf{B}}{\|\mathbf{A}\| \|\mathbf{B}\|}
\end{equation}
\subsection{Table}
Table 1 is a nice one.
\begin{table}[htbp]
\centering
\caption{Wow!}
\begin{tabular}{|c|c|c|}\hline
a & b & c \\\hline
d & e & f \\\hline
g & h & i \\\hline
\end{tabular}
\end{table}
\subsection{Figure}
Figure 1 makes your paper visually appealing.
\begin{figure}[htbp]
\centering
\includegraphics[scale=.4]{dialogue.eps}
\caption{Great!}
\end{figure}
\subsection{Citations}
Citations are a good thing \cite{Panchenko:18,Sharoff:11}. However, at the present moment we do not support proper {\LaTeX} references. Just use \verb|1| instead of \verb|\ref{fig:example}|. Unfortunately, you have to count references manually.
\begin{itemize}
\item Do not use any kind of non-breaking spaces, such as \verb|~|, \verb|\,|, etc. Use only the regular ones.
\end{itemize}
\section{Improvements}
Do you have an idea of how to improve the template? Please reach us at\\\texttt{https://github.com/nlpub/dialogue-latex}.
\subsubsection*{Acknowledgements}
This template is brought to you by Dmitry Ustalov and the NLPub project. If you found this template useful and would like to support its author, here is the link: \texttt{https://nlpub.ru/NLPub:Support}.
\color{blue}\section*{References}
\makeatletter
\renewcommand{\section}{\@gobbletwo}
\makeatother
\bibliography{\jobname}
\end{document}