欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

表格中输入特殊符号和公式

程序员文章站 2022-04-30 12:47:34
...

在表格中输入特殊符号

示例如下:
表格中输入特殊符号和公式
在表格中,alpha,beta,gamma等特殊字符和公式的输入,需要用$符号创建一个数学环境,否则会报错。
示例图片代码如下:

\begin{tabular}{l}
	\toprule
	\textbf{Algorithm 1}{} Experience replay \textbf{RL} \\
	\hline
	%\midrule
	\textbf{Input:}{} underlyingRL algorithm LEARN,\\ 
	\hspace{10pt} number of replays \textit{N}, length of each trajectory \textit{T},\\ \hspace{10pt} BFs $\phi_1,\ldots,\phi_n,$discount factor $\gamma$, learning rate $\alpha$,\\ \hspace{10pt} exploration probability $\epsilon$ \\1: initialize $\theta$ arbitrarily (e.g., identically 0)\\
	2: $\textit{D}\leftarrow 0;\textit{l} \leftarrow 1;\textit{k}\leftarrow 0$\\
	3: observe initial state $\textit{x}_0$\\
	\bottomrule 
\end{tabular}