我对论文目录的页码感到困惑。我的目录需要罗马数字和阿拉伯数字,应该如下所示:
List of Tables i
List of Figures ii
Introduction 1
.
.
.
References iii
Appendix iv
然而,不知何故
List of Tables i
List of Figures i
Introduction 1 (good)
.
. (all good)
.
References i
Appendix vii
所有阿拉伯数字都很好,但其他一切都乱七八糟......这是我的一些代码:
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{titlesec}
\titleformat{\chapter}
{\normalfont\huge\bfseries}{\thechapter}{1em}{}
\titlespacing*{\chapter}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
\usepackage{appendix}
\usepackage[a4paper, left=30mm, right=30mm, top=25mm, bottom=25mm]{geometry}
begin{document}
\input{Chapters/Titlepage}
\chapter*{Abstract}
\thispagestyle{empty}
\newpage
\tableofcontents
\thispagestyle{empty}
\newpage
\pagenumbering{roman}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\addcontentsline{toc}{chapter}{\listtablename}
\addcontentsline{toc}{chapter}{\listfigurename}
\newpage
\pagenumbering{roman}
\listoftables
\newpage
\listoffigures
\newpage
\clearpage
\pagenumbering{arabic}
\chapter{Introduction}
\input{Chapters/Introduction}
\chapter{Theoretical Framework}
\input{Chapters/Theoretical Framework}
etc.
\newpage
\pagenumbering{roman}
\addcontentsline{toc}{chapter}{References}
\printbibliography
\addcontentsline{toc}{chapter}{Appendix}
\input{Chapters/Appendix}
有人能帮我解决这个问题吗?