Update Coling
This commit is contained in:
parent
ea9d189175
commit
b303d00684
@ -66,10 +66,9 @@ elif [ "{{ cookiecutter.latex_template }}" = "pw-thesis" ]; then
|
||||
|
||||
cp -r _optional_files/_pw-thesis/* .
|
||||
elif [ "{{ cookiecutter.latex_template }}" = "coling" ]; then
|
||||
get_files "https://lrec-coling-2024.org/wp-content/uploads/2023/10/lrec-latex.zip" \
|
||||
lrec-coling2024-natbib.bst \
|
||||
lrec-coling2024.sty \
|
||||
languageresource.bib
|
||||
get_files "https://coling2025.org/downloads/coling-2025.zip" \
|
||||
coling_natbib.bst \
|
||||
coling.sty
|
||||
cp -r _latex-templates/coling-template.tex {{cookiecutter.paper_id}}.tex
|
||||
cp -r _latex-templates/coling-template-meta.tex metadata.tex
|
||||
elif [ "{{ cookiecutter.latex_template }}" = "llncs" ]; then
|
||||
|
@ -1,9 +1,12 @@
|
||||
\title{ {{ cookiecutter.paper_title }} }
|
||||
|
||||
\name{ {{cookiecutter.main_contributor_name}} }
|
||||
{% raw %}
|
||||
\address{Affiliation1, Affiliation2, Affiliation3 \\
|
||||
Address1, Address2, Address3 \\
|
||||
author1@xxx.yy, author2@zzz.edu, author3@hhh.com\\
|
||||
\{author1, author5, author9\}@abc.org\\}
|
||||
{% endraw %}
|
||||
\author{ {{cookiecutter.main_contributor_name}} \\
|
||||
Affiliation / Address line 1 \\
|
||||
Affiliation / Address line 2 \\
|
||||
Affiliation / Address line 3 \\
|
||||
\texttt{email@domain} \\\And
|
||||
Second Author \\
|
||||
Affiliation / Address line 1 \\
|
||||
Affiliation / Address line 2 \\
|
||||
Affiliation / Address line 3 \\
|
||||
\texttt{email@domain} \\}
|
||||
|
@ -1,39 +1,34 @@
|
||||
{% raw %}
|
||||
% LREC-COLING 2024 Example;
|
||||
% LREC Is now using templates similar to the ACL ones.
|
||||
\documentclass[10pt, a4paper]{article}
|
||||
% COLING 2025 Example;
|
||||
|
||||
\usepackage[review]{lrec-coling2024} % this is the new style
|
||||
\documentclass[11pt]{article}
|
||||
|
||||
\usepackage[review]{coling}
|
||||
|
||||
\input{config}
|
||||
\input{extras}
|
||||
\input{preamble}
|
||||
\input{metadata}
|
||||
|
||||
\newcommand\bycite[1]{in~\citet{#1}}
|
||||
\usepackage{times}
|
||||
\usepackage{inconsolata}
|
||||
|
||||
\abstract{
|
||||
\input{abstract}
|
||||
\\ \newline \Keywords{keyword1, keyword2, keyword3} }
|
||||
\newcommand\bycite[1]{by~\citet{#1}}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitleabstract
|
||||
\maketitle
|
||||
\begin{abstract}
|
||||
\input{abstract}
|
||||
\end{abstract}
|
||||
|
||||
\input{main}
|
||||
|
||||
\nocite{*}
|
||||
\section{Bibliographical References}\label{sec:reference}
|
||||
\section*{References}\label{sec:reference}
|
||||
|
||||
\bibliographystyle{lrec-coling2024-natbib}
|
||||
\bibliographystyle{coling_natbib}
|
||||
\bibliography{bibliography}
|
||||
|
||||
\section{Language Resource References}
|
||||
\label{lr:ref}
|
||||
\bibliographystylelanguageresource{lrec-coling2024-natbib}
|
||||
\bibliographylanguageresource{languageresource}
|
||||
|
||||
|
||||
\end{document}
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
|
@ -12,6 +12,7 @@
|
||||
\usepackage{graphicx}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{latexsym}
|
||||
\usepackage{microtype}
|
||||
|
||||
% so that footnotes in tables would work
|
||||
% https://tex.stackexchange.com/questions/109467/footnote-in-tabular-environment
|
||||
|
@ -100,9 +100,8 @@ then
|
||||
:
|
||||
elif [[ "$latex_template" == "coling" ]]
|
||||
then
|
||||
copy_to_project lrec-coling2024-natbib.bst \
|
||||
lrec-coling2024.sty \
|
||||
languageresource.bib
|
||||
copy_to_project coling_natbib.bst \
|
||||
coling.sty
|
||||
elif [[ "$latex_template" == "llncs" ]]
|
||||
then
|
||||
copy_to_project llncs.cls splncs04.bst
|
||||
|
Loading…
Reference in New Issue
Block a user