在乳胶中,当我们编写包含章节的部分时,在页面顶部它会以大写字母显示,例如
\section{Solution in R^{n}}
,在上面写
R^N 中的解决方案,
我的问题是,我们控制它,特别是我想写“ R^n ”而不是“ R^N ”
答案1
尝试这个:
\documentclass{book}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\chapter{Lipsum}
\section{S\lowercase{olution in} $R^{\lowercase{n}}$}
\lipsum[1-15]
\end{document}
答案2
这不是一个通用的解决方案,但对于这个特定示例,下面的方法可以工作。\Rn
在前导部分定义命令如下:
\newcommand{\Rn}{$R^n$}
并在文档中需要时使用它\Rn{}
,但在章节或章节除外,您必须使用\protect
它来防止大写转换:
\section{Solution in \protect\Rn}
这是一个 MWE:
\documentclass{book}
\usepackage{lipsum}
\def\Rn{$R^{n}$}
\begin{document}
\tableofcontents
\chapter{Lipsum}
\section{Solution in \protect\Rn{}}
\lipsum[1-15]
\end{document}
这些是生成的 PDF 的一些摘录,显示了相关部分:
目录:
章节标题:
页眉: