我有两张桌子并排摆放,正如我提到的这里
代码的简要副本如下:
\parbox{.2\textwidth}{
\begin{tabular}{|c|c|c|c|c|}
\hline
$\textbf{Q\#}$&$ \textbf{Skills}$&$ \textbf{Your}$&$ \textbf{Correct}$&$ \textbf{\%of Stu.}$\\
$ $&$ \textbf{Tested}$&$ \textbf{Answer}$&$ \textbf{Answer}$&$ \textbf{answered}$\\
$ $&$ $&$ $&$ $&$ \textbf{correctly}$\\
\hline
1&1&1&1&1\\
\hline
11&11&11&11&11\\
\hline
111&111&111&111&111\\
\hline
\end{tabular}}
\quad
\parbox{.2\textwidth}{
\begin{tabular}{|c|c|c|c|c|}
\hline
$\textbf{Q\#}$&$ \textbf{Skills}$&$ \textbf{Your}$&$ \textbf{Correct}$&$ \textbf{\%of Stu.}$\\
$ $&$ \textbf{Tested}$&$ \textbf{Answer}$&$ \textbf{Answer}$&$ \textbf{answered}$\\
$ $&$ $&$ $&$ $&$ \textbf{correctly}$\\
\hline
38&38&38&38&38\\
\hline
39&39&39&39&39\\
\hline
\end{tabular}}
此处表格彼此相邻,垂直对齐 = 中间。需要更正为垂直对齐 = 顶部。 您能建议相同的选项吗?
答案1
一种可能的解决方案:用表格环境包裹两个特定的表格,并使用可选的[t]
对齐参数\begin{tabular}
。
顺便说一句:表格太大了,但我没有解决这个问题!
\documentclass[10pt]{book}
\begin{document}%
\small
\begin{tabular}{cc}%
\begin{tabular}[t]{|c|c|c|c|c|}
\hline
$\textbf{Q\#}$&$ \textbf{Skills}$&$ \textbf{Your}$&$ \textbf{Correct}$&$ \textbf{\%of Stu.}$\\
$ $&$ \textbf{Tested}$&$ \textbf{Answer}$&$ \textbf{Answer}$&$ \textbf{answered}$\\
$ $&$ $&$ $&$ $&$ \textbf{correctly}$\\
\hline
1&1&1&1&1\\
\hline
11&11&11&11&11\\
\hline
111&111&111&111&111\\
111&111&111&111&111\\
111&111&111&111&111\\
111&111&111&111&111\\
111&111&111&111&111\\
111&111&111&111&111\\
111&111&111&111&111\\
111&111&111&111&111\\
\hline
\end{tabular} &
\begin{tabular}[t]{|c|c|c|c|c|}
\hline
$\textbf{Q\#}$&$ \textbf{Skills}$&$ \textbf{Your}$&$ \textbf{Correct}$&$ \textbf{\%of Stu.}$\\
$ $&$ \textbf{Tested}$&$ \textbf{Answer}$&$ \textbf{Answer}$&$ \textbf{answered}$\\
$ $&$ $&$ $&$ $&$ \textbf{correctly}$\\
\hline
38&38&38&38&38\\
\hline
39&39&39&39&39\\
\hline
39&39&39&39&39\\
39&39&39&39&39\\
39&39&39&39&39\\
39&39&39&39&39\\
\hline
\end{tabular} \tabularnewline
\end{tabular}
\end{document}
答案2
这是一个老问题,但我在寻找相同问题的答案时发现了它。
无论如何,一个简单的方法是使用定位论证的 parbox,pos
例如,你可以像这样对齐两个 parbox:
\parbox[t]{.2\textwidth}{
...
}
\parbox[t]{.2\textwidth}{
...
}