报告空白页边距

报告空白页边距

我的文档中空白页的边距和“双面性”有问题。空白页后面的页面与空白页具有相同的“双面性”,但它应该在每一页上都切换。例如,标题页的左内边距较大(用于装订),下面的空白页的右内边距较大,而标题页后面的页面应该有较大的左内边距(但它的右内边距也较大)。

这是包含序言重要部分和其他相关部分的 MWE。

\documentclass[11pt,a4paper,twoside,openright]{report}

%% LOAD PACKAGES %%
\usepackage[utf8]{inputenc}
\usepackage[main=english,german]{babel}
\usepackage{geometry}       % page margins ([showframe] for visble margins)
\usepackage[english,linktocpage=true]{hyperref}
\usepackage{afterpage}                                  % command for blank pages


%% FORMATTING %%
\geometry{                      % format page margins
    left=2.6cm,
    right=2.6cm,
    top=2cm,
    bottom=2cm,
    includeheadfoot,
    showframe,
    bindingoffset=.5cm              %%% remove for digital copy
}

\newcommand{\blankpage}{                        % for blank pages           https://tex.stackexchange.com/questions/331064/create-a-blank-page
    \null
    \clearpage
    \thispagestyle{empty}
    \addtocounter{page}{-1}
    \hypersetup{pageanchor=false}%
    \newpage
}



%% START DOCUMENT %%

\begin{document}

Here's my title page
    \newpage
    {\blankpage\clearpage}                                  %%%
Here's my dediction page
    \afterpage{\blankpage\clearpage}            %%%
    \newpage 
    \thispagestyle{plain}
Here's my table of contents
    \newpage 
    \thispagestyle{plain}
Here's my wonderful quote
    \afterpage{\blankpage\clearpage}            %%%
    
    % ...and so on
    
\end{document}

答案1

您可以使用此语法强制创建空白页面:

\newpage
\
\newpage

或者将其作为这样的命令:

\def\blankpage{%
\newpage
\
\newpage}

然后调用它\blankpage{}

相关内容