居中但线条对齐

居中但线条对齐

我想在公式下方居中添加订阅,但我希望所有内容都以相同的边距开始。此外,我还想添加一个制表符,以便每个身份的描述都从彼此下方开始:

在此处输入图片描述

我的 MMW:

\documentclass[12pt,a4paper]{article}

\begin{document}

\begin{equation}
\vec{B} = \mu_0 \cdot (\vec{H} + \vec{M}) = \mu_r \cdot \mu_0 \cdot \vec{H}
\end{equation}

\begin{center}
\(\mu_r = 1 + \chi\): Permeabilitätszahl\\
\(\mu_0\): magnetische Felkonstante \\
\(\chi\): Suszeptibilität
\end{center}

\end {document}

答案1

这是一个将aligned环境嵌套在align环境中的解决方案。

在此处输入图片描述

\documentclass[12pt,a4paper]{article}
\usepackage{amsmath} % for align and aligned environments and \text macro
\begin{document}

\begin{align}
\vec{B} &= \mu_0 (\vec{H} + \vec{M}) = \mu_r \mu_0 \vec{H} \\[0.5ex]
&\quad\begin{aligned}
   &\textsf{$\mu_r = 1 + \chi$: Permeabilitätszahl}\\
   &\textsf{$\mu_0$: magnetische Felkonstante} \\
   &\textsf{$\chi$: Suszeptibilität}
\end{aligned} \notag
\end{align}

\end {document}

相关内容