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

default pagestyle changed from empty(?) to headings #63

Open
baloe opened this issue Jun 9, 2021 · 1 comment
Open

default pagestyle changed from empty(?) to headings #63

baloe opened this issue Jun 9, 2021 · 1 comment
Milestone

Comments

@baloe
Copy link

baloe commented Jun 9, 2021

I noticed that the default pagestyle for tudscrartcl is now headings, while it used to be something like empty.
Was that done intentionally? Because I couldn't find any note about this in the documentation.

So I guess I need to add \pagestyle{empty} to a bunch of documents now.

\documentclass{scrarticle}
\begin{document}
	\section{Test}
\end{document}

produces no page heading.

\documentclass[cdfont=heavy, cdfont=normalbold, cdmath=off, twoside=off, fontsize=10pt]{tudscrartcl}
\begin{document}
	\section{Test}
\end{document}

produces no page heading with v2.06j but prints the section title in the heading with v2.06l.

\documentclass[cdfont=heavy, cdfont=normalbold, cdmath=off, twoside=off, fontsize=10pt]{tudscrartcl}
\begin{document}
	\pagestyle{empty}
	\section{Test}
\end{document}

produces the desired output without heading when using v2.06l.

@mrpiggi
Copy link
Member

mrpiggi commented Jun 11, 2021

This was introduced with 6df3265 as the former behavior was non-deterministic, see #59. In order to suppress automatic marks, you should use:

\documentclass{tudscrartcl}
\usepackage[manualmark]{scrlayer-scrpage}
\begin{document}
  \section{Test}
\end{document}

I have to think about it, whether this should be the default setting for tudscrartcl or not.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants