有没有办法让tabu
LaTeX 中的 填充到特定的 (如\begin{tabu} to \textwidth}
,但没有X
列类型?我不希望所有列的宽度都相同,但我希望每列周围的水平填充相同。这是一个带有示例文本的表格,我希望它之间的间隔更大,这样左右两边就不会有大量的空间:
以下是 MWE:
\documentclass{article}
\usepackage[margin=.75in]{geometry}
\usepackage{amsmath, amssymb, tabu}
\newcolumntype{M}{>{\displaystyle}c}
\setlength{\tabulinesep}{4pt}
\begin{document}
\[\begin{tabu} to \textwidth {M*3{|M}}
p=p_0+\rho gh&\rho=\frac{m}{V}&v_\text{max}=\omega A&p+\frac{1}{2}\rho v^2+\rho gh=\text{constant}
\end{tabu}\]
\end{document}
编辑:我愿意使用不存在的表格环境tabu
。