セクション名をヘッダーとして取得する際に問題が発生しました

セクション名をヘッダーとして取得する際に問題が発生しました

私は現在博士論文を書いています。次のコードがあります

\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\rightmark}
\fancyhead[R]{\thepage}
\renewcommand{\headrulewidth}{0pt}

私が入手したものこのスレッド私の目標は、論文の各ページの左上部分に章名ではなくセクション名を表示することですが、代わりに章名が表示されています。これはパッケージ間の競合が原因である可能性があるかどうか知っている人はいますか?

私が使用しているものは以下のとおりです。

\usepackage[square, numbers, comma, sort&compress]{natbib}  
\usepackage{verbatim}
\usepackage{vector} 
\usepackage{titlesec}
\usepackage{subeqnarray}
\usepackage{lineno,hyperref}
\usepackage{soul}
\usepackage{comment}
\usepackage{amssymb}
\usepackage{srcltx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{psfrag}
\usepackage{graphicx,subfigure}
\usepackage{multirow}
\usepackage{algorithm}
\usepackage{algorithmic}   
\usepackage{psfrag}       
\usepackage{url}
\usepackage{color}
\usepackage{xcolor}
\usepackage{ulem}
\usepackage{breqn}
\usepackage{caption}
\usepackage{graphicx}
\usepackage{subfigmat}
\usepackage{fancyhdr}

次の例も証明しました:

\documentclass{book}
    
    \usepackage{fancyhdr}

\usepackage{lipsum}% just to generate text for the example

\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\rightmark}
\fancyhead[R]{\thepage}
\renewcommand{\headrulewidth}{0pt}

\begin{document}
\chapter{Chapter title}
\section{AAAA}

\lipsum[1-20]


\section{BBBB}

\lipsum[1-20]
\end{document}

そしてそれは意図したとおりに動作します。

ご協力いただければ幸いです。よろしくお願いいたします。

関連情報