我不希望 fancyheader 以粗体显示运行标题

我不希望 fancyheader 以粗体显示运行标题

我正在使用下面的代码,它提供了运行标题大胆的字型。

但我想要普通字体。

\documentclass[11pt,letterpaper, twoside]{article}
\usepackage[english]{babel}
\usepackage[margin=1in,footskip=0.25in]{geometry}
\usepackage{amsmath,amssymb,authblk,eurosym,fancyhdr,float,footmisc,graphics,graphicx,pdflscape,pslatex,rotating,setspace,subfig,tabularx,url,xargs} 
\usepackage[pdftex,dvipsnames]{xcolor}  %

\title{Your Paper}
\author{You}

\begin{document}
\maketitle
\begin{abstract}
Your abstract.
\end{abstract}
\clearpage
\pagestyle{fancy}
\fancyhead{} % clear all header fields
\fancyhead[RO]{\textbf{Header text}}
\fancyhead[LE]{\textbf{Tom \& Jerry}}
\renewcommand{\headrulewidth}{0pt}
\section{Introduction}
Your introduction goes here! Simply start writing your document and use the Recompile button to view the updated PDF preview. Examples of commonly used commands and features are listed below, to help you get started.
\end{document}

但页眉显示为粗体。我只想让它显示正常字体。

答案1

参见约翰的回答:

\fancyhead[RO]{Header text}
\fancyhead[LE]{Tom \& Jerry}

相关内容