我如何选择在标题中显示哪个子部分?

我如何选择在标题中显示哪个子部分?

我可以编写一个命令让 LaTeX 选择覆盖大部分页面的子部分作为页眉吗?例如,参见下图。

在此处输入图片描述

我怎样才能使标题显示第 2.2 节而不是第 2.3 节?我目前正在使用此代码。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{ragged2e}
\usepackage{lmodern}
\renewcommand*\familydefault{\sfdefault}
\usepackage{lipsum}
\usepackage{fancyhdr}

\begin{document}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
\lhead{\textit{\leftmark}}
\rhead{\textit{\rightmark}}
\rfoot{\textit{Page \thepage}}

\renewcommand{\sectionmark}[1]{\xdef\leftmark{\thesection\quad#1}\xdef\rightmark{}}
\renewcommand{\subsectionmark}[1]{\xdef\rightmark{\thesubsection\quad#1}}

\section{Section 1}
\subsection{Subsection 1.1}

\lipsum[1]

\lipsum[2]

\lipsum[3]

\lipsum[4]

\subsection{Subsection 1.2}
\lipsum[1]
\end{document}

相关内容