这两个等式怎么写?

这两个等式怎么写?

我正在尝试在乳胶中写出这些方程式,但是这个'和这个符号|不知为何不起作用,有人能帮助我吗?非常感谢。

这是我写的代码:

\begin{equation}
   
    Target: 
    Q^' (s\mid)
\end{equation}

我得到了这个方程式: 在此处输入图片描述

下面是我想在乳胶中实现的图片。

在此处输入图片描述

在此处输入图片描述

答案1

下面的屏幕截图的上半部分显示了我认为与您发布的屏幕截图非常接近的副本。请注意'和的使用|。不知道为什么您会遇到这两个符号的问题。

话虽如此,我认为您展示的两行显示从排版上来说有些欠缺。首先,似乎没有努力将第一行的内容与第二行显示的内容联系起来;这可以通过将符号上的行元素对齐来轻松解决:。其次,TeX 和 LaTeX 提供了一个名为 的宏\mid,当符号具有“条件”的含义时,应该使用它而不是|—— 我认为这里的情况就是如此。

解决这两个问题的结果如下列屏幕截图的下半部分所示。

结果输出

\documentclass{article} % or some other suitable document class
\usepackage{amsmath}    % for `'gather*' environment
\usepackage{newtxtext,newtxmath} % optional: Times Roman clone text and math font
\begin{document}

\begin{gather*}
\textit{Predict} : \mu(s|\theta^{\mu}) : \textit{Gradient update }\theta^{\mu} \\
\textit{target} : Q'\bigl(s|\theta^{Q'}\bigr) : \textit{Soft update }\theta^{Q'}
\end{gather*}

\[
\begin{array}{r @{{}:{}} c @{{}:{}} l}
\textit{Predict} & \mu(\,s\mid \theta^{\mu}\,) & \textit{Gradient update }\theta^{\mu} \\[0.75ex]
\textit{Target}  & Q'(\,s\mid \theta^{Q'}\,) & \textit{Soft update }\theta^{Q'}
\end{array}
\]
\end{document}

答案2

我的建议如下。

\documentclass{book}

\usepackage{amsmath,amsfonts,amssymb}


\begin{document}

\[
\begin{array}{r @{{}:{}} c @{{}:{}} r @{{}{}} l}
\textrm{Predict} & \mu(s\mid \theta^{\mu}) & \textrm{Gradient update } & \theta^{\mu} \\
\textrm{Target} & Q'(s\mid \theta^{Q'}) & \textrm{Soft update } & \theta^{Q'}
\end{array}
\]

\end{document}

在此处输入图片描述

相关内容