openany 用於 hepthesis

openany 用於 hepthesis

您好,我正在使用 hepthesis 模板,並在任何新章節之前建立一個空白頁面。既然它是建立在之上的scrbook,有沒有辦法使用類似的東西openany

\documentclass[openany]{hepthesis}

不起作用...

答案1

除了設定為單邊模式外

\documentclass[oneside]{hepthesis}

如果您想保持雙面模式,則可以執行以下操作:

\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}

透過這種方式, 的許多選項hepthesis在後台傳遞到scrbook,但未提供選項openany,因此出現了您觀察到的問題。

答案2

oneside選項應該在這裡起作用。

相關內容