在一个等式的两个部分之间添加制表符

在一个等式的两个部分之间添加制表符

我需要在以下等式的分号后添加一个制表符:

\begin{equation}
Thr =  4\sigma_n;\sigma_n = median \left(\frac{|x|}{0.6745}\right)
\end{equation}

我怎样才能做到这一点?

答案1

注释之后:您可以使用包subequations中的环境amsmath以及该包提供的一些显示数学环境;以下示例显示了使用align(对齐表达式)和gather(无对齐)的两个选项;要获取方程式和其“父级”之间的点,可以重新定义\theequation,如示例所示:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{subequations} 
\renewcommand\theequation{\theparentequation.\alph{equation}}
\begin{align} 
\text{Thr} &= 4\sigma_n;  \\
\sigma_n &= \text{median} \left(\frac{|x|}{0.6745}\right) 
\end{align}
\end{subequations} 

\begin{subequations} 
\renewcommand\theequation{\theparentequation.\alph{equation}}
\begin{gather} 
\text{Thr} = 4\sigma_n;  \\
\sigma_n = \text{median} \left(\frac{|x|}{0.6745}\right) 
\end{gather}
\end{subequations} 

\end{document}

在此处输入图片描述

还请注意使用\text(从amsmath包中)来获取“Thr”和“median”的直立文本字体。

相关内容