请问如何制作表格中的最后一行?我试过了,但第二列没有居中
这是我的尝试
\begin{tabular}{ |c|c| }
\hline
R(x) & Form of $y_p$ \\
\hline \hline
$Cx^n$ &$A_0x^n + A_1x^{n-1} + \ldots + A_{n-1}x + A_n$ \\
\hline
$ Ce^{rx}$ & $Ae^{rx}$ \\
\hline
$Ce^{rx} cos(kx)$\\ $Ce^{rx} sin(kx)$ &$ Ae^{rx} cos(kx) + Be^{rx} sin(kx)$\\
\hline
\end{tabular}
答案1
例如,您可以array
在 中使用array
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{array}{|c|c|}
\hline
R(x) & \text{Form of }y_p \\
\hline\hline
Cx^n & A_0x^n+A_yx^{n-1}+\cdots+A_{n-1}x+A_n \\
\hline
Ce^{rx} & Ae^{rx} \\
\hline
\begin{array}[c]{@{}c@{}}
Ce^{rx}\cos(kx) \\
Ce^{rx}\sin(kx) \\
\end{array} &
Ae^{rx}\cos(kx)+Be^{rx}\sin(kx) \\
\hline
\end{array}
\]
\end{document}