我想让表格的第一行与章节标题对齐。我正在使用llncs.cls房屋风格。如果我不做任何调整,事情会变成这样:
\documentclass{llncs}
\begin{document}
\subsubsection*{Forces}
\begin{tabular}{p{.85\textwidth}}
\textbf{Threshold}: there is a tension between inclusiveness and specificity.\\
\textbf{Trust}: is only built through sharing and reciprocity.
\end{tabular}
\end{document}
为了进行比较,以下是它与标准类的对比article
。这也不是我想要的。
\documentclass{article}
\begin{document}
\subsubsection*{Forces}
\begin{tabular}{p{.85\textwidth}}
\textbf{Threshold}: there is a tension between inclusiveness and specificity.\\
\textbf{Trust}: is only built through sharing and reciprocity.
\end{tabular}
\end{document}
我所追求的是这样的:
军队 临界点:包容性和特异性之间存在着紧张关系
相信:只有通过共享和互惠才能建立
我尝试过的:
以下黑客行为:
\documentclass{llncs}
\begin{document}
\subsubsection*{Forces}
\raisebox{-.5\baselineskip}
{{\centering
\begin{tabular}{p{.85\textwidth}}
\textbf{Threshold}: there is a tension between inclusiveness and specificity.\\
\textbf{Trust}: is only built through sharing and reciprocity.
\end{tabular}
\par}}
\end{document}
这很接近,但是垂直对齐似乎稍微偏离。
外部參考:如何将表格中文本的左边缘与节标题对齐?处理表格的水平对齐,我想要垂直对齐。
答案1
tabular
(或者您可以更简单地使用\parbox
)默认垂直居中,但它们都采用可选参数来指定垂直对齐,因此\begin{tabular}[t]
...将在此处完成您需要的操作。