标题为标题的替代标题,但没有编号

标题为标题的替代标题,但没有编号

我是 tex 的新手,希望我的问题清楚且易于回答。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{ \markboth{#1}{} }
\renewcommand{\subsectionmark}[1]{ \markright{#1}{} }

\begin{document}

    \section[O\lowercase{rganization of ma\uppercase{RNA}}]{maRNA%
    \sectionmark{O\lowercase{rganization of ma\uppercase{RNA}}}}

\end{document}

我需要在页眉中添加备选章节标题(在 中提供[])。但是,除了备选标题之外,章节编号也同样如此。

问题:如何在页眉中添加替代标题,而不添加章节编号?

--

请理解我只是从乳胶开始,我的代码可能不合逻辑,因为它是对我有用的东西的汇编。

答案1

我的尝试:

\documentclass{article}

\usepackage{lipsum} % just for the example

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\nouppercase{\rightmark}}
\fancyfoot[C]{\thepage}

\renewcommand{\sectionmark}[1]{}
\renewcommand{\subsectionmark}[1]{\markright{#1}}


\begin{document}

\title{A title}
\author{A. Uthor}

\maketitle

\section{maRNA}

\subsection{Organization of maRNA}

\lipsum[1-12]

\subsection{Something else on maRNA}

\lipsum

\end{document}

答案2

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\pagestyle{fancy}

\begin{document}

\section*{Organization of maRNA}
\markright{Organization of maRNA}

\end{document}

相关内容