如何在 LaTeX 表格中按冒号对齐时间?
我有一个我在 LaTeX 中的时间表格。
这些时间的形式为 4:00 或 12:00,且长度不同。我想通过冒号垂直对齐这些时间。 LaTeX 有没有好的方法可以做到这一点?
I have a tabular of the times I in LaTeX.
These times are in the form 4:00 or 12:00 and this have different lengths. I would like to vertically align these times by their colon. Is there a nice way to do this in LaTeX?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
@{}
,或者在您的情况下使用@{:}
作为列分隔符。You can use
@{}
, or in your case@{:}
as a column delimiter.或多或少像这样:
您可能想在“:”周围引入一些非常小的空格,例如 \hspace{1pt}
More or less like this:
You may want to introduce some very small space around the ":", like \hspace{1pt}
您可以使用该包
\usepackage{dcolumn}
。通常您使用它来对齐浮点数,但是如果您将分隔符定义为
:
并将位数定义为2
,则可以使用它You can use the package
\usepackage{dcolumn}
.Normaly you use it to align floating numbers, but you can use it if you define the delimiter as
:
an the number of digits as2