为什么这些功能不能以均匀的间距完美对齐?

为什么这些功能不能以均匀的间距完美对齐?

谢谢您的帮助。我不明白为什么函数没有以均匀的间距完美对齐。

\documentclass[11pt]{article}

\begin{document}

\DeclareMathOperator{\csch}{csch}
\DeclareMathOperator{\sech}{sech}




\begin{align*}
\sinh(x)= \frac{e^x-e^{-x}}{2}, &   \qquad \cosh(x)= \frac{e^x+e^{-x}}{2}, & \tanh(x)=  \frac{\sinh(x)}{\cosh(x)} \\
\csch(x)= \frac{1}{\sinh(x)}, & \qquad  \sech(x)= \frac{1}{\cosh(x)}, & \coth(x)= \frac{1}{\tanh(x)}. 
\end{align*}

\end{document}

答案1

你可能想要进行以下对齐=

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}

\DeclareMathOperator{\csch}{csch}
\DeclareMathOperator{\sech}{sech}

\begin{document}

\begin{align*}
  \sinh(x) &= \frac{e^x-e^{-x}}{2}, & \cosh(x) &= \frac{e^x+e^{-x}}{2}, & \tanh(x) &= \frac{\sinh(x)}{\cosh(x)} \\
  \csch(x) &= \frac{1}{\sinh(x)},   & \sech(x) &= \frac{1}{\cosh(x)},   & \coth(x) &= \frac{1}{\tanh(x)}. 
\end{align*}

\end{document}

每个奇数&提供一个rl对齐。每个偶数&在组件之间添加水平间隙或扩展。

相关内容