答案1
您可以指定text width=3cm
,或tcbox{}
与表格一起使用:
笔记:
- 包裹
showframe
仅用于显示页边距。实际使用中不需要它。
代码:
\documentclass{article}
\usepackage{showframe}
\usepackage{tcolorbox}
\begin{document}
\begin{flushright}
\begin{tcolorbox}[text width=3cm]
\textbf{Date:11/12/2018}\\
\textbf{Time: 2:30 PM}
\end{tcolorbox}
\end{flushright}
\begin{flushright}
\tcbox[left=2pt,right=2pt]{%
\bfseries
\begin{tabular}{@{}ll@{}}
Date: & 11/12/2018 \\
Time: & 2:30 PM \\
\end{tabular}%
}%
\end{flushright}
\end{document}