paper-cutter/{{cookiecutter.paper_repo_name}}/_latex-templates/coling-template.tex

37 lines
500 B
TeX
Raw Normal View History

2023-10-03 20:25:12 +02:00
{% raw %}
2024-09-09 18:19:50 +02:00
% COLING 2025 Example;
2023-10-03 20:25:12 +02:00
2024-09-09 18:19:50 +02:00
\documentclass[11pt]{article}
\usepackage[review]{coling}
2023-10-03 20:25:12 +02:00
\input{config}
\input{extras}
\input{preamble}
\input{metadata}
2024-09-09 18:19:50 +02:00
\usepackage{times}
\usepackage{inconsolata}
2023-10-03 20:40:44 +02:00
2024-09-09 18:19:50 +02:00
\newcommand\bycite[1]{by~\citet{#1}}
2023-10-03 20:25:12 +02:00
\begin{document}
2024-09-09 18:19:50 +02:00
\maketitle
\begin{abstract}
\input{abstract}
\end{abstract}
2023-10-03 20:25:12 +02:00
\input{main}
2024-09-09 18:19:50 +02:00
\section*{References}\label{sec:reference}
2023-10-03 20:25:12 +02:00
2023-10-03 20:40:44 +02:00
\bibliography{bibliography}
2023-10-03 20:25:12 +02:00
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
{% endraw %}