在论文封面前添加一页空白页

在论文封面前添加一页空白页

我想在封面前添加一页,以便封面从左侧较大的边距开始,从而放在书的右侧。

\documentclass[12pt,a4paper,twoside]{book}
\begin{document}
\null\newpage
\begin{titlepage}

\begin{center}
\vspace*{0.5cm}        
{\large\textbf{Title}} \\      
\vspace{3cm}
 DISSERTATION \\ [1em] 
 zur Erlangung des akademischen Grades \\ [1em]
 Dr. rer. nat. \\ 
 im the Institute of \\ [1em]
 so and so \\
 from the university \\ [1em]
 von \\             
\end{center}  
\vspace{1cm}
%\end{adjustwidth*}
\end{titlepage}

\end{document}

答案1

\documentclass[12pt,a4paper,twoside]{book}
\usepackage{geometry}
\geometry{showframe,left=7cm}
\begin{document}
\begin{titlepage}
    \begin{center}
        \vspace*{\fill}
        \large\textbf{\thepage}\par
        This is a right hand page
        \vfill
    \end{center}  
\end{titlepage}

\end{document}

相关内容