Hi I'm using the hepthesis template and I creates a empty page before any new chapter. Since it is build upon scrbook, is there anyway to use something like openany
\documentclass[openany]{hepthesis}
doesn't work...
Hi I'm using the hepthesis template and I creates a empty page before any new chapter. Since it is build upon scrbook, is there anyway to use something like openany
\documentclass[openany]{hepthesis}
doesn't work...
Apart from setting in oneside mode with
\documentclass[oneside]{hepthesis}
the following works, if you want to stay in twoside mode:
\PassOptionsToClass{openany}{scrbook}
\documentclass{hepthesis}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{kantlipsum}% just for dummy text
\begin{document}
\chapter{Kantian Introduction}
\kant[1-3]
\chapter{Kantian Criticism}
\kant[4-5]
\end{document}
In this manner many options of hepthesis are passed in background to scrbook, but an option openany is not provided, hence the issue you observed.
english rather than leaving it to chance. (english aliases to different variants depending on the version of babel.)
– cfr
Apr 10 '14 at 01:04
english? I would otherwise prefer to choose "German English". ;-)
– Speravir
Apr 10 '14 at 01:18
babel english would refer to either american or british depending on the local language.dat and maybe the version of babel. So writing english would give different output for different people. Since the whole point is that you want your code to produce the same output wherever it is compiled, this is obviously bad. So writing english is a bad example to set. (I can't remember where I read this originally but the details of why are in various editions of language.dat.) Is there not a German kantlipsum? Then you could just use german...
– cfr
Apr 10 '14 at 01:52
kantlipsum is English only, but blindtext is programmed by a German and has, of course, a German version. (“Blindtext“ is actually the German word for dummy text.)
– Speravir
Apr 10 '14 at 03:14
twosideoption? – pluton Mar 07 '14 at 14:53onesideworks. You can upgrade your comment to an answer if you wan't. – magu_ Mar 07 '14 at 15:43onesideoption this should work withtwoside:\PassOptionsToClass{openany}{scrbook}\documentclass[<your_other_options>]{hepthesis}. – Speravir Mar 08 '14 at 00:36