我正在尝试将摘要开头的起始计数(页码)更改为“ii”而不是“i”。使用下面的代码,摘要的页码是页面底部的“i”。我希望它显示为“ii”并从那里继续计数。(标题页是真正的“i”,但该数字被正确隐藏了。)
这是一篇论文。谢谢!
梅威瑟:
\documentclass[oneside,12pt]{scrbook}
\pagestyle{plain}
\begin{document}
\begin{titlepage}
[some text]
\end{titlepage}
\doublespacing
\frontmatter
\chapter{Abstract}
[some text]
\chapter{Acknowledgments}
[some text]
\newpage
\tableofcontents
\newpage
\begingroup
\renewcommand\numberline[1]{}
\listoftables
\endgroup
\newpage
\listoffigures
\mainmatter
\include{1.intro}
\include{2.litreview}
\include{3.decentralization}
\include{4.cases}
\include{5.data}
\include{6.Districts1997to2007Mozambique}
\include{7.SouthAfrica}
\include{8.BroadAfricaEmpirical}
\include{9.conc}
\backmatter
\bibliographystyle{myauthordate1}
\bibliography{library}
\end{document}
答案1
放在\setcounter{page}{2}
之前\chapter{Abstract}
。