首先,抱歉我的英语不好。
你好,我正在大学做我的最后一个项目,我需要一些关于我的文档功能的帮助。
在编号时,如何将成对的数字放在文档的右侧,将奇数放在文档的左侧?
我想要一些像这样的图片,当我开始新的章节时,您可以看到编号位于页面底部的中间。
对数的编号在左侧,奇数的编号在右侧。
注意:在第一张图片中忽略带有数字 12 的图像,该图像重要的是数字 5 和章节的开始。
我是 Latex 的新手,我不知道我有哪些软件包,也不太在意。如果你告诉我要使用一个软件包,我会把它添加到我的项目中。
\documentclass{article}
\usepackage[left=3cm, right=2.5cm, top=2.5cm, bottom=2.5cm]{geometry}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{\textcolor[gray]{0.5}{\textit{\nouppercase \leftmark}}}
\lfoot{}
\cfoot{}
\rfoot{\textcolor[gray]{0.5}{\thepage}}
\renewcommand{\headrulewidth}{0.2pt}
\fancypagestyle{detailed}{
\fancyhf{}
\fancyfoot[R]{\textcolor[gray]{0.5}{\thepage}}
\renewcommand{\headrulewidth}{0pt}
}
\usepackage[round]{natbib}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\begin{document}
\chapter{Introducción}
\section{First Section}
\lipsum[1-3]
\section{Second Section}
\lipsum[1-7]
\section{Third Section}
\lipsum[1-6]
\end{document}
我认为问题就在这里
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{\textcolor[gray]{0.5}{\textit{\nouppercase \leftmark}}}
\lfoot{}
\cfoot{}
\rfoot{\textcolor[gray]{0.5}{\thepage}}
\renewcommand{\headrulewidth}{0.2pt}
如果你编译我的代码,你就会明白我想要什么。我想要在页面中间显示数字 1,因为这是一个新的章节,就像图片一样。
页码中的数字 2 应位于左侧,而最后一页的数字 3 应位于右侧。
答案1
该类article
默认为单面布局,因此我建议您切换到双面:
\documentclass[twoside]{article}
但是,由于您使用的是\chapter
,article
因此样式不合适。我建议您切换到book
(或更复杂的类似书籍的类,例如memoir
)。对于book
,twoside
选项是默认选项。
我希望在页面中间的数字是 1,因为这是一个新的章节
班级book
会自动将页码放在每章开头的中央。
页码中的数字 2 应位于左侧,而最后一页的数字 3 应位于右侧。
页眉和页脚需要指定双面文档的偶数页和奇数页的左右设置:
\fancyhead[LE,RO]{\textcolor[gray]{0.5}{\textit{\nouppercase \leftmark}}}
\fancyfoot[LE,RO]{\textcolor[gray]{0.5}{\thepage}}
完成 MWE:
\documentclass{book}
\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}
\chapter{Introducción}
\section{First Section}
\lipsum[1-3]
\section{Second Section}
\lipsum[1-7]
\section{Third Section}
\lipsum[1-6]
\end{document}