我需要问你一个问题,我想让我的 fancyhdr 自动将部分的名称放在左角,将同一页面的子部分的名称放在该页面 fancyhdr 头部的右侧,如果有多个子部分,则只写第一个子部分的名称。这可以自动完成吗,还是我需要制作很多不同的 fancyhdr?提前谢谢大家。
\documentclass[10pt,hidelinks]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[croatian]{babel}
\usepackage[left=30mm,top=25mm,right=25mm,bottom=30mm]{geometry}
\usepackage{fancyhdr}
\fancypagestyle{dokument}
{\lhead{} \chead{} \rhead{}
\lfoot{} \cfoot{\thepage{}} \rfoot{}
\renewcommand{\headrulewidth}{0.4pt}
}
\begin{document}
\thispagestyle{dokument}
\section{leftside}
\subsection{rightside}
\newpage
\section{leftside2}
\subsection{rightside2}
\end{document}