我怎样才能在乳胶中写出这些方程式和符号?

我怎样才能在乳胶中写出这些方程式和符号?

希望你过得很好!

我想在乳胶中转换这个方程式和符号!

在此处输入图片描述

我需要任何类型的解决方案、建议或提示。

提前致谢:)

答案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}

然而,这并不是实现该显示的一个特别好的方法。

  1. 文本和数学字体不匹配。尽管该times包已被弃用 20 多年,但仍有文档类使用它。

  2. 对齐很别扭。冒号没有理由不对齐,条件也没有理由放在某处(我可以清楚地看到它们放在哪里,因为我知道 LaTeX,读者不会)。

  3. 句号(在基线上)绝不能用作乘法符号。

可能的改进是使用 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}

在此处输入图片描述

相关内容