左对齐 \[ \] $$ $$ 公式

左对齐 \[ \] $$ $$ 公式

我确实需要将一些(不是全部)方程式向左对齐。因此我也想避免它们的格式奇怪

$\displaystyle ...$就是 在此处输入图片描述

行间空间很小。为了增加它,我可以使用\[ \]环境,但它会将方程式居中: 在此处输入图片描述

虽然行与行之间的间距是可以的。所以我可以尝试flalign*

{\setlength{\abovedisplayskip}{0pt}%
\begin{flalign*}
& f(\theta)=cos^a(\theta)&\\
& cos^{2\alpha}\theta^{\circ}_{\text{ск}}=1/2&\\
& \alpha=0.5\cdot\frac{log0.5}{log(cos(18^\circ))}=6.91&\\
& cos^{2\alpha}\theta^{\circ}_{\text{Д}}=t=0.013&\\
& \theta_\text{Д}=arccos(\sqrt[2\alpha]{t_\text{ед}})=43.24&\\
\end{flalign*}%
}

在此处输入图片描述

如您所见,行间空间再次减小(但比变体中更大$...$),并且块前后也有空间,尽管我试图按照描述摆脱它这里

align*我也试过了

формулой для аппроксимации ДН элемента: \par\noindent
$\begin{aligned}
&f(\theta)=cos^a(\theta) &\\
&cos^{2\alpha}\theta^{\circ}_{\text{ск}}=1/2 &\\
&\alpha=0.5\cdot\frac{log0.5}{log(cos(18^\circ))}=6.91 &\\
&cos^{2\alpha}\theta^{\circ}_{\text{Д}}=t=0.013 &\\
&\theta_\text{Д}=arccos(\sqrt[2\alpha]{t_\text{ед}})=43.24 &\\
\end{aligned}$

在此处输入图片描述

前后空格没问题,但行间距减少了。

另外,我无法使用,fleqn因为我想仅将部分方程式左对齐,而不是全部方程式。

那我该怎么办?

PS 是的,我可以\vspace在每行后添加,但也许还有其他更好的方法。谢谢!

答案1

最简单的解决方案是使用fleqn环境,来自nccmath

\documentclass{article}
\usepackage{amsmath, nccmath}
\usepackage{showframe}
\renewcommand{\ShowFrameLinethickness}{0.4pt}

\begin{document}

This equation is left-aligned:
\begin{fleqn}
\begin{align*}
& f(\theta)=\cos^a(\theta) \\
& \cos^{2\alpha}\theta^{\circ}_{\text{ск}}=1/2 \\
& \alpha\=0.5\cdot\frac{\log0.5}{\log(\cos(18^\circ))}=6.91 \\
& \cos^{2\alpha}\theta^{\circ}_{\text{Д}}=t=0.013\\
& \theta_\text{Д}=\arccos(\sqrt[2\alpha]{t_\text{ед}})=43.24
\end{align*}%
\end{fleqn}

\end{document} 

在此处输入图片描述

答案2

您可以使用\IEEEeqnarray环境和*类型粘连将方程式左对齐。相关手册可用这里。本手册的附录 F 描述了环境的使用方法。此外,您可以使用链接问题的解决方案来控制方程式上方和下方的垂直间距。

\documentclass{article}
\usepackage{amsmath}
\usepackage{IEEEtrantools}
\usepackage{lipsum}
\usepackage{showframe}

\begin{document}
\section*{Default Spacing}
\lipsum[1][1]
\begin{IEEEeqnarray*}{*l}
f(\theta)=cos^a(\theta) \\
\cos^{2\alpha}\theta^{\circ}_{\text{ск}}=1/2 \\
\alpha=0.5\cdot\frac{\log0.5}{\log(cos(18^\circ))}=6.91 \\
\cos^{2\alpha}\theta^{\circ}_{\text{Д}}=t=0.013 \\
\theta_\text{Д}=arccos(\sqrt[2\alpha]{t_\text{ед}})=43.24
\end{IEEEeqnarray*}
\lipsum[1][2]

\section*{User Defined Spacing}
\lipsum[1][1]
{\setlength{\abovedisplayskip}{0pt}
\setlength{\belowdisplayskip}{0pt}
\begin{IEEEeqnarray*}{*l}
f(\theta)=cos^a(\theta) \\
\cos^{2\alpha}\theta^{\circ}_{\text{ск}}=1/2 \\
\alpha=0.5\cdot\frac{\log0.5}{\log(cos(18^\circ))}=6.91 \\
\cos^{2\alpha}\theta^{\circ}_{\text{Д}}=t=0.013 \\
\theta_\text{Д}=arccos(\sqrt[2\alpha]{t_\text{ед}})=43.24
\end{IEEEeqnarray*}}%
\lipsum[1][2]

\section*{Default Spacing}
\lipsum[1][1]
\begin{IEEEeqnarray*}{*l}
f(\theta)=cos^a(\theta) \\
\cos^{2\alpha}\theta^{\circ}_{\text{ск}}=1/2 \\
\alpha=0.5\cdot\frac{\log0.5}{\log(cos(18^\circ))}=6.91 \\
\cos^{2\alpha}\theta^{\circ}_{\text{Д}}=t=0.013 \\
\theta_\text{Д}=arccos(\sqrt[2\alpha]{t_\text{ед}})=43.24
\end{IEEEeqnarray*}
\lipsum[1][2]

\end{document} 

在此处输入图片描述

相关内容