我正在使用书籍类来撰写论文。
我希望页码从第一页开始。
因此目录如下所示
1,3,5
相比
i, 1, 3
我 有
% arara: pdflatex
% arara: pdflatex
\documentclass[12pt]{book}
\usepackage{tocbibind}
\usepackage[toc]{appendix}
\usepackage[bookmarks]{hyperref}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{main}
\begin{appendices}
\chapter{appendix}
\end{appendices}
\end{document}
答案1
根本不要发行\frontmatter
,因为如果你想从\arabic
编号开始,从技术上讲它不是必需的。因此,\mainmatter
也变得多余。因此,您的文档将具有以下结构:
\documentclass{book}
\usepackage{tocbibind}
\usepackage[toc]{appendix}
\usepackage[bookmarks]{hyperref}
\begin{document}
\tableofcontents
\chapter{main}
\begin{appendices}
\chapter{appendix}
\end{appendices}
\end{document}