如何在章节或小节命令中使用案例环境

如何在章节或小节命令中使用案例环境

我如何在环境或指令cases中使用,如下所示:\section\subsection

\section{$y(t) = \begin{cases} case1 \\ case  \end{cases}$}

使用 pdflatex 我得到:

\begin 的使用与其定义不符。...begin{cases} case1 \ case \end{cases}$}

...

答案1

cases您可以使用 a或 an环境来实现排版目标array;后者的间距会更紧密一些。正如@egreg 在评论中指出的那样,诀窍在于\protect\begin指令\end

在此处输入图片描述

\documentclass{article} 
\usepackage{amsmath} % for "cases" env.

\begin{document}
\tableofcontents
\medskip\hrule

\section{$y_t=\left\{ \protect\begin{array}{@{}c@{}} a_1 \\ a_2
              \protect\end{array} \right.$}

\section{$y_t=\protect\begin{cases} a_1 \\ a_2 
              \protect\end{cases}$}
\end{document}

如果要将节标题中的数学材料排版为粗体,只需\boldmath在之前立即插入指令即可$y_t=

答案2

在此处输入图片描述

不存在争论

\documentclass{article}

\usepackage{amsmath}


\newsavebox\hmm
\savebox{\hmm}{$y(t) = \begin{cases} case1 \\ case  \end{cases}$}

\begin{document}


\section[something reasonable for the page head]{\usebox{\hmm}}


\end{document}

相关内容