可选定位参数和 tabularx

可选定位参数和 tabularx

我通常使用基本tabular环境排版小表格。它有一个可选参数,用于控制表格相对于周围文本基线的垂直位置。现在出于某种原因,我需要切换到tabularx。但是,这里缺少可选的位置参数,因此现在表格的中心与基线对齐:

\documentclass{standalone}
\usepackage{tabularx}

\begin{document}

A simple text
\begin{tabular}[b]{lr}
    A & B \\ C & D \\
\end{tabular}
and a little more
\begin{tabularx}{.1\linewidth}{lr}
    A & B \\ C & D \\
\end{tabularx}
and the rest.

\end{document}

在此处输入图片描述

知道如何才能与表格底部对齐吗?

答案1

tabularx具有相同的参数,因为tabular*它遵循宽度参数。

 \begin{tabularx}{3cm}[t]{XXX}

软件包文档的早期版本并未提及它,但一直存在这个争论。

相关内容