取得部分名稱作為標題時出現問題

取得部分名稱作為標題時出現問題

我目前正在撰寫博士學位。我有以下程式碼

\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}

它按預期工作。

任何幫助表示讚賞。此致。

相關內容