fmarotta / kaobook

A LaTeX class for books, reports or theses based on https://github.com/kenohori/thesis and https://github.com/Tufte-LaTeX/tufte-latex.
https://github.com/fmarotta/kaobook
LaTeX Project Public License v1.3c
858 stars 184 forks source link

Copyright page disappears #285

Closed 0synonym closed 3 weeks ago

0synonym commented 8 months ago

The copyright page disappears when I set

twoside=false

or

oneside=true

Copyright page section is not commented out. If I undo the setting, the copyright page appears again. I'm not sure if this is intentional. I would like to use a copyright page with an oneside layout. I am using the last version 0.9.7.

fmarotta commented 4 weeks ago

Yes, this is a feature of KOMA-script. That page is created by \maketitle and technically it's meant to be the page on the back of the title, but still on the same "leaf". So it exists only in twoside mode. The easiest would be to typeset it manually after \maketitle with

\begin{titlepage}
bla bla bla copyright
\end{titlepage}
0synonym commented 3 weeks ago

Hello Federico, thanks for the clarification. I had manually inserted copyright info after \maketitlesimilar to your suggestion.