Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Duplicated thanks/footnote on first page if "titlepage=false" #279

Closed
towadroid opened this issue Feb 4, 2021 · 1 comment
Closed

Duplicated thanks/footnote on first page if "titlepage=false" #279

towadroid opened this issue Feb 4, 2021 · 1 comment
Assignees
Labels
bug Something isn't working
Milestone

Comments

@towadroid
Copy link

When using the tudapub class with option titlepage=false, the command \thanks creates two entries on the first page. One in the titlehead and one as a regular footnote at the bottom of the page. The command \footnote behaves in the same way.

I am not sure if this is intended behavior but I think this is not what one would expect.

MWE:

\documentclass[
titlepage=false,
]{tudapub}

\begin{document}
	\title{Title}
	\author{Author\thanks{Text}}
	\maketitle
\end{document}
@TeXhackse TeXhackse added the bug Something isn't working label Feb 4, 2021
@TeXhackse TeXhackse self-assigned this Feb 4, 2021
@TeXhackse
Copy link
Collaborator

I will hopefully manage to upload a new release including the fix tomorrow. Anyway if it's urgent you can use this as a temporary workaround:

\makeatletter
\let\orig@maketitle\@maketitle
\def\@maketitle{\orig@maketitle\let\@thanks\@empty}
\makeatother

This would not affect the functionalityafter the fix has been applied published.

@TeXhackse TeXhackse added this to the v3.10 milestone Feb 4, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants