表格中輸入特殊符號和公式

猶有傲霜枝發表於2020-04-05

在表格中輸入特殊符號

示例如下:
這裡寫圖片描述
在表格中,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}

相關文章