更改图形、算法和方程编号的格式

更改图形、算法和方程编号的格式

这是问题。这样我就可以格式化对方程/图形/算法的引用,使它们以“S”开头。如果我想更改原始方程/图形/算法中的格式怎么办?例如,如果我输入

\begin{equation}
a=b
\label{eq:myeq}
\end{equation}

我如何才能让它在最终文档中显示为:

a=b (S1)

代替:

a=b (1)

答案1

\def\theequation{S\arabic{equation}}

我假设您在 中使用它。或 的article定义应该稍作修改。reportbook

梅威瑟:

\documentclass{article}
\begin{document}

\def\theequation{S\arabic{equation}}

\begin{equation}
2+2=4
\end{equation}


\end{document}

在此处输入图片描述

相关内容