这是我的文档标题。我想要实现的是每页都有页码。到目前为止,我只在每章的第一页上设置了页码。介绍部分使用罗马字母,之后我改用阿拉伯字母。
\documentclass[12pt,a4paper,oneside,numbers=noenddot,bibliography=totoc,listof=totoc,appendixprefix ]{scrreptr}
\usepackage[automark]{scrpage2}
\pagestyle{scrheadings}
\pagenumbering{Roman}
\setcounter{page}{2}
\tableofcontents
\listoffigures
\listoftables
\input{0_SymVZ2}
\printnomenclature[2.5cm]
\cleardoublepage
\pagenumbering{arabic}
%\setcounter{page}{1}
\input{1_Introduction}
\newpage
\input{Theory}
\end{document}
非常感谢您的帮助!
答案1
我看不出您的代码有什么问题,除了您拼错了文档类(必须是scrreprt
)并且缺少\begin{document}
。
有了这个
\documentclass[12pt,a4paper,oneside,numbers=noenddot,bibliography=totoc,listof=totoc,appendixprefix ]{scrreprt}
\usepackage[automark]{scrpage2}
\pagestyle{scrheadings}
\usepackage{lipsum}% blind text
\begin{document}
\pagenumbering{Roman}
\setcounter{page}{2}
\tableofcontents
\listoffigures
\listoftables
\pagenumbering{arabic}
\chapter{Test}
\lipsum
\end{document}
我可以看到所有页面的页码。