答案1
从这里开始吧:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\begin{aligned}[c]
\text{depth:}\ d =\alpha^{\phi} \\
\text{width:}\ w = \beta^{\phi} \\
\text{resolution:}\ r = \gamma^{\phi} \\
&\hspace{-1cm} s.t.\alpha.\beta^{2}.\gamma^{2} \approx 2 \\
&\hspace{-1cm} \alpha\geq 1,\beta\geq1,\gamma\geq 1
\end{aligned}
\end{equation*}
\end{document}
答案2
我可以重现这幅图:我得到的是
来自以下代码
\documentclass{article}
\usepackage{amsmath}
\usepackage{times}
\begin{document}
\[
\begin{aligned}
\text{depth: } d &= \alpha^\phi \\
\text{width: } w &= \beta^\phi \\
\text{resolution: } r &= \gamma^\phi \\
&\text{s.t. }\alpha.\beta^2.\gamma^2\approx2 \\
&\alpha\ge1,\beta\ge1,\gamma\ge1
\end{aligned}
\]
\end{document}
然而,这并不是实现该显示的一个特别好的方法。
文本和数学字体不匹配。尽管该
times
包已被弃用 20 多年,但仍有文档类使用它。对齐很别扭。冒号没有理由不对齐,条件也没有理由放在某处(我可以清楚地看到它们放在哪里,因为我知道 LaTeX,读者不会)。
句号(在基线上)绝不能用作乘法符号。
可能的改进是使用 NewTX 根据 Times 获取匹配的文本和数学字体
\documentclass{article}
\usepackage{amsmath}
\usepackage{newtxtext,newtxmath}
\begin{document}
\[
\begin{aligned}
&\begin{alignedat}{2}
&\text{depth: } & d &= \alpha^\phi \\
&\text{width: } & w &= \beta^\phi \\
&\text{resolution: } & r &= \gamma^\phi
\end{alignedat} \\
&\begin{aligned}
\text{s.t. } & \alpha\beta^2\gamma^2\approx2 \\
&\alpha\ge1,\beta\ge1,\gamma\ge1
\end{aligned}
\end{aligned}
\]
\end{document}