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

43 lines
831 B
TeX
Raw Normal View History

2023-10-03 20:25:12 +02:00
{% raw %}
% LREC-COLING 2024 Example;
% LREC Is now using templates similar to the ACL ones.
\documentclass[10pt, a4paper]{article}
\usepackage[review]{lrec-coling2024} % this is the new style
\input{config}
\input{extras}
\input{preamble}
\input{metadata}
2023-10-03 20:40:44 +02:00
\newcommand\bycite[1]{in~\citet{#1}}
2023-10-03 20:25:12 +02:00
\abstract{
\input{abstract}
\\ \newline \Keywords{keyword1, keyword2, keyword3} }
\begin{document}
\maketitleabstract
\input{main}
\nocite{*}
\section{Bibliographical References}\label{sec:reference}
\bibliographystyle{lrec-coling2024-natbib}
2023-10-03 20:40:44 +02:00
\bibliography{bibliography}
2023-10-03 20:25:12 +02:00
\section{Language Resource References}
\label{lr:ref}
\bibliographystylelanguageresource{lrec-coling2024-natbib}
\bibliographylanguageresource{languageresource}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
{% endraw %}