paper-cutter/{{cookiecutter.paper_repo_name}}/config.tex
Filip Gralinski 67c788fe69 Init from an internal repo.
Commit d5b6f8e831fc5c933af5ceb1267f51ef6af6c438
2020-11-24 08:33:07 +01:00

23 lines
686 B
TeX

% In this file some settings are passed from cookiecutter to LaTeX.
% Do not edit this file, but rather change .cookiecutter.yml and
% re-apply the template.
% whether an appendix was created
\newif\ifwithappendix
{%- if cookiecutter.with_appendix == "yes" -%}
\withappendixtrue
{% else %}
\withappendixfalse
{% endif %}
% whether the appendix will actually be shown;
% note: in some template, the appendix cannot be rendered,
% you can use this conditional to change the content of your paper
% (for instance, to remove parts like "see Appendix")
\newif\ifappendixshown
{%- if cookiecutter.latex_template == "coling" -%}
\appendixshownfalse
{% else %}
\appendixshowntrue
{% endif %}