文档右侧的可见框

文档右侧的可见框

如何才能在文档的右侧得到一个小框,如下图所示:在此处输入图片描述

我最初的尝试失败了:

\begin{flushright}
\begin{tcolorbox}
\textbf{Date:11/12/2018}\\
\textbf{Time: 2:30 PM}
\end{tcolorbox}
\end{flushright}

谢谢。

答案1

您可以指定text width=3cm,或tcbox{}与表格一起使用:

在此处输入图片描述

笔记:

代码:

\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}

相关内容