我需要一些帮助。
我想用罗马数字完成我的索引,并且我的章节应该以阿拉伯数字开头,但我对此有一个问题
\documentclass{book}
\usepackage{emptypage}
\usepackage[left=3cm, right=2.5cm, top=2.5cm, bottom=2.5cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}%
\fancyhead[LE,RO]{\textcolor[gray]{0.5}{\textit{\nouppercase \leftmark}}}
\fancyfoot[LE,RO]{\textcolor[gray]{0.5}{\thepage}}
\renewcommand{\headrulewidth}{0.2pt}
\fancypagestyle{detailed}{%
\fancyhf{}%
\fancyfoot[LE,RO]{\textcolor[gray]{0.5}{\thepage}}%
\renewcommand{\headrulewidth}{0pt}%
}
\usepackage[round]{natbib}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\begin{document}
\pagenumbering{roman}
\tableofcontents
\listoftables
\listoffigures
\pagenumbering{arabic}
\chapter{Introducción}
\section{First Section}
\lipsum[1-3]
\section{Second Section}
\lipsum[1-7]
\section{Third Section}
\lipsum[1-6]
\chapter{Other chapter}
\end{document}
如果您编译此代码,您将看到图形索引从数字 1 开始编号,而我的第一章从数字 3 开始编号。
我怎样才能解决这个问题?
谢谢你的回答
答案1
请按照以下方式在书籍样式文件中使用\fronmatter
和\mainmatter
,您将获得所需的内容。尽量不要\pagenumbering
在书籍样式文件中使用。
\documentclass{book}
\usepackage{emptypage}
\usepackage[left=3cm, right=2.5cm, top=2.5cm, bottom=2.5cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}%
\fancyhead[LE,RO]{\textcolor[gray]{0.5}{\textit{\nouppercase \leftmark}}}
\fancyfoot[LE,RO]{\textcolor[gray]{0.5}{\thepage}}
\renewcommand{\headrulewidth}{0.2pt}
\fancypagestyle{detailed}{%
\fancyhf{}%
\fancyfoot[LE,RO]{\textcolor[gray]{0.5}{\thepage}}%
\renewcommand{\headrulewidth}{0pt}%
}
\usepackage[round]{natbib}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\begin{document}
\frontmatter
\tableofcontents
\listoftables
\listoffigures
\mainmatter
\chapter{Introducción}
\section{First Section}
\lipsum[1-3]
\section{Second Section}
\lipsum[1-7]
\section{Third Section}
\lipsum[1-6]
\chapter{Other chapter}
\end{document}