Koma 从标题页中删除页码:Graphicx 行为不当

Koma 从标题页中删除页码:Graphicx 行为不当

我将序言从一个文档复制到另一个文档。现在我在标题页上看到了前言页码。我尝试添加\thispagestle{empty}之前\maketitle、之后front matter和之后,\maketitle但没有结果。我尝试\pagenumbering{gobble}在相同的位置添加,但这导致所有页码都消失了。

演示选项graphicx会产生这种行为,因此您不需要我正在使用的图形,即

\usepackage[demo]graphicx

梅威瑟:

\documentclass[fontsize=11pt,BCOR=10mm,headlines=2.5]{scrbook}
\usepackage{lipsum}
\usepackage{moresize}
\usepackage{graphicx}
\begin{document}

\frontmatter

%%%%%%%%%%%%%%
%%%%%%%%%%%%%%
% TITLE PAGE
%%%%%%%%%%%%%%

 \setkomafont{title}{\normalcolor\bfseries}


\begin{titlepage}
%\thispagestyle{empty} %didn't work  \pagenumbering{gobble} removed all page numbering in document




\title{
\centering
       % \includegraphics[width=4cm]{example-image-a}\par
        \vspace{4\baselineskip}
        {\HUGE{Companies Law}\par}
        \vspace{2\baselineskip}
      %  {\Large{A Tool for Finding The Law}\par}
        \vspace{4\baselineskip}
        {\large\textsc{edited by\\[.5em]The Editor}}
        \vfill
       \includegraphics[width=1cm]{andaluslogo.png}\par 
        {\em Andalus Publishing 2022}
     
        }
\end{titlepage}

\lowertitleback{
{\Large

\textit{Guidebook}

©2022 The Publisher


}
} % end of lowertitleback  \Large increases the font on this backtitle page




\maketitle

\mainmatter

\lipsum{1-5]

\end{document}

也许有办法删除我遗漏的标题页的页码?

我发现了问题:如果我使用graphicx包,则会在标题页上添加页码。

如果我不使用它(或者可能是另一个包),我就无法在标题中添加图形。

graphicx是否有不会出现此行为的软件包替代品?

此外,该graphicx包装还在标题页之前创建了一个不必要的附加页。

如果我使用更大的纸张尺寸(a4),问题也会消失。这会让你认为图形过大,但 [demo] 选项表明这不是问题。

相关内容