标题中忽略了 renewcommand

标题中忽略了 renewcommand

我重新定义了一个命令,以便给我一个更方便的负号。这在所有情况下都有效除了在标题内。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}                                                            
                                                                                
\renewcommand{\-}{\raisebox{.8mm}{\text{\tiny\boldmath$-$}}}
\newcommand{\negative}{\raisebox{.8mm}{\text{\tiny\boldmath$-$}}}

\begin{document}
Some text using the new commands: $1\-2~3\negative4$.

\begin{figure}[h]
  \caption{Caption text using the new commands: $1\-2~3\negative4$.}
\end{figure}

\end{document}                                                                                                                               

有没有办法让我想要的命令在标题中起作用?

相关内容