在一個方程式的兩個部分之間添加製表符

在一個方程式的兩個部分之間添加製表符

我需要在如下所示的等式中的分號之後添加一個製表符:

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

我怎樣才能做到這一點?

答案1

評論後:您可以使用subequationsamsmath包中的環境以及該包還提供的一些顯示數學環境;以下範例顯示了使用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”的直立文字字體。

相關內容