Update Coling

This commit is contained in:
Filip Gralinski 2024-09-09 18:19:50 +02:00
parent ea9d189175
commit b303d00684
5 changed files with 29 additions and 32 deletions

View File

@ -66,10 +66,9 @@ elif [ "{{ cookiecutter.latex_template }}" = "pw-thesis" ]; then
cp -r _optional_files/_pw-thesis/* . cp -r _optional_files/_pw-thesis/* .
elif [ "{{ cookiecutter.latex_template }}" = "coling" ]; then elif [ "{{ cookiecutter.latex_template }}" = "coling" ]; then
get_files "https://lrec-coling-2024.org/wp-content/uploads/2023/10/lrec-latex.zip" \ get_files "https://coling2025.org/downloads/coling-2025.zip" \
lrec-coling2024-natbib.bst \ coling_natbib.bst \
lrec-coling2024.sty \ coling.sty
languageresource.bib
cp -r _latex-templates/coling-template.tex {{cookiecutter.paper_id}}.tex cp -r _latex-templates/coling-template.tex {{cookiecutter.paper_id}}.tex
cp -r _latex-templates/coling-template-meta.tex metadata.tex cp -r _latex-templates/coling-template-meta.tex metadata.tex
elif [ "{{ cookiecutter.latex_template }}" = "llncs" ]; then elif [ "{{ cookiecutter.latex_template }}" = "llncs" ]; then

View File

@ -1,9 +1,12 @@
\title{ {{ cookiecutter.paper_title }} } \title{ {{ cookiecutter.paper_title }} }
\name{ {{cookiecutter.main_contributor_name}} } \author{ {{cookiecutter.main_contributor_name}} \\
{% raw %} Affiliation / Address line 1 \\
\address{Affiliation1, Affiliation2, Affiliation3 \\ Affiliation / Address line 2 \\
Address1, Address2, Address3 \\ Affiliation / Address line 3 \\
author1@xxx.yy, author2@zzz.edu, author3@hhh.com\\ \texttt{email@domain} \\\And
\{author1, author5, author9\}@abc.org\\} Second Author \\
{% endraw %} Affiliation / Address line 1 \\
Affiliation / Address line 2 \\
Affiliation / Address line 3 \\
\texttt{email@domain} \\}

View File

@ -1,39 +1,34 @@
{% raw %} {% raw %}
% LREC-COLING 2024 Example; % COLING 2025 Example;
% LREC Is now using templates similar to the ACL ones.
\documentclass[10pt, a4paper]{article}
\usepackage[review]{lrec-coling2024} % this is the new style \documentclass[11pt]{article}
\usepackage[review]{coling}
\input{config} \input{config}
\input{extras} \input{extras}
\input{preamble} \input{preamble}
\input{metadata} \input{metadata}
\newcommand\bycite[1]{in~\citet{#1}} \usepackage{times}
\usepackage{inconsolata}
\abstract{ \newcommand\bycite[1]{by~\citet{#1}}
\input{abstract}
\\ \newline \Keywords{keyword1, keyword2, keyword3} }
\begin{document} \begin{document}
\maketitleabstract \maketitle
\begin{abstract}
\input{abstract}
\end{abstract}
\input{main} \input{main}
\nocite{*} \section*{References}\label{sec:reference}
\section{Bibliographical References}\label{sec:reference}
\bibliographystyle{lrec-coling2024-natbib} \bibliographystyle{coling_natbib}
\bibliography{bibliography} \bibliography{bibliography}
\section{Language Resource References}
\label{lr:ref}
\bibliographystylelanguageresource{lrec-coling2024-natbib}
\bibliographylanguageresource{languageresource}
\end{document} \end{document}
%%% Local Variables: %%% Local Variables:
%%% mode: latex %%% mode: latex

View File

@ -12,6 +12,7 @@
\usepackage{graphicx} \usepackage{graphicx}
\usepackage{booktabs} \usepackage{booktabs}
\usepackage{latexsym} \usepackage{latexsym}
\usepackage{microtype}
% so that footnotes in tables would work % so that footnotes in tables would work
% https://tex.stackexchange.com/questions/109467/footnote-in-tabular-environment % https://tex.stackexchange.com/questions/109467/footnote-in-tabular-environment

View File

@ -100,9 +100,8 @@ then
: :
elif [[ "$latex_template" == "coling" ]] elif [[ "$latex_template" == "coling" ]]
then then
copy_to_project lrec-coling2024-natbib.bst \ copy_to_project coling_natbib.bst \
lrec-coling2024.sty \ coling.sty
languageresource.bib
elif [[ "$latex_template" == "llncs" ]] elif [[ "$latex_template" == "llncs" ]]
then then
copy_to_project llncs.cls splncs04.bst copy_to_project llncs.cls splncs04.bst