LaTeX 列对齐
我有一个 LaTeX 文档,它是自动化系统的一部分。因此,我不能对表格使用固定宽度,因为输入是不确定的。
\begin{tabular}[t]{|l|@{\hfill}r@{ }|c|@{ }l|}
\textbf{\langComponent} & \multicolumn{3}{c}{
\textbf{\shortstack{\leftresultsheader}}
}
\DTLforeach{resultstableA}{\colA=componentA,\colB=amountfracA,\colC=pmsymbolA,\colD=uncertA}{\\{\colA}&{\colB}&{\colC}&{\colD}}
\DTLforeach{resultstableB}{\colE=componentB,\colF=amountfracB,\colG=pmsymbolB,\colH=uncertB}{\\{\colE}&{\colF}&{\colG}&{\colH}}
\end{tabular}
如何让最后 3 列(rcl,显示结果、加号符号和不确定性)在跨越这 3 列的多列标题下作为一个组集中对齐?
I have a LaTeX document that is part of an automated system. So I cannot use fixed widths for the table as the inputs are uncertain.
\begin{tabular}[t]{|l|@{\hfill}r@{ }|c|@{ }l|}
\textbf{\langComponent} & \multicolumn{3}{c}{
\textbf{\shortstack{\leftresultsheader}}
}
\DTLforeach{resultstableA}{\colA=componentA,\colB=amountfracA,\colC=pmsymbolA,\colD=uncertA}{\\{\colA}&{\colB}&{\colC}&{\colD}}
\DTLforeach{resultstableB}{\colE=componentB,\colF=amountfracB,\colG=pmsymbolB,\colH=uncertB}{\\{\colE}&{\colF}&{\colG}&{\colH}}
\end{tabular}
How can I have the last 3 columns (rcl, which display as a result, a plusminus symbol, and an uncertainty) be all centrally aligned as a group underneath the multicoumn header that spans those 3 columns?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看软件包
dcolumn
或siunitx
(我是作者)。我认为无论哪种情况,您都需要首先循环遍历数据库以找到最大数字的大小(即小数点前后有多少位数字)。一个简单的硬编码siunitx
示例是You could take a look at the packages
dcolumn
orsiunitx
(of which I'm the author). I think in either case you'll need to first loop through the database to find the size of the largest number (i.e. how many digits before and after the decimal place). A simple hard-codedsiunitx
example would be