如何在 classicthesis 中在页面外底部设置页码?

如何在 classicthesis 中在页面外底部设置页码?

我正在classicthesis与 Koma-script 类一起使用。

我能够将页码放在页面底部外侧。但是,页码仍然出现在标题中,而且它比我放在底部的页码更靠外。

我怎样才能将其从标题中删除,并使其底部的标题变得像标题一样外部?

谢谢!

编辑

梅威瑟:

\documentclass[ twoside,openright, titlepage,numbers=noenddot,headinclude,%1headlines,% letterpaper a4paper
            footinclude=true,cleardoublepage=empty,abstractoff, % <--- obsolete, remove (todo)
            BCOR=25mm,fontsize=11pt,a4paper,%
            american,%
            ]{scrreprt}


\input{classicthesis-config}
\ofoot{\pagemark}
\usepackage{lipsum}

\begin{document}
\frenchspacing
\raggedbottom
\selectlanguage{american}
\pagestyle{scrheadings}
\pagenumbering{arabic}

\chapter{a chapter}
\lipsum

\chapter{second chapter}
\lipsum

\end{document}

可以在classicthesis包中找到“classicthesis-config”。通过它,我获得了页眉和外底部的页码。我只希望它只位于外底部并像在页眉中一样缩进。

答案1

classicthesis使用过时的包scrpage2来设置页眉和页脚。我改编了原始代码,想说的是,这并不是真的最佳实践

\documentclass[ twoside,openright,
    titlepage,numbers=noenddot,headinclude,%1headlines,% letterpaper a4paper
    footinclude=true,cleardoublepage=empty,abstractoff,
            % <--- obsolete, remove (todo)
    BCOR=25mm,fontsize=11pt,a4paper,%
    american,%
]{scrreprt}

\usepackage{classicthesis}

\clearscrheadfoot
    \lehead{\headmark}
    \rohead{\headmark}
    \lefoot[\llap{\small\thepage\kern2em}]{\llap{\small\thepage\kern2em}}
    \rofoot[\rlap{\small\kern2em\pagemark}]{\rlap{\small\kern2em\pagemark}}
\usepackage{lipsum}
\pagestyle{scrheadings}

\usepackage{blindtext}
\begin{document}

\chapter{Crazy Capybara}
\blindtext[10]

\end{document}

相关内容