创建特定框架

创建特定框架

我需要在我的报告中创建这个特定的框架,但我甚至不知道如何开始。也许有人知道如何创建它。

在此处输入图片描述

答案1

您可以对crop包装做出类似的裁剪标记(我想实际的标记设计并不那么重要,因为它会在生产过程中被剪掉)。灰色盒子是随包装一起制作的tcolorbox。您需要调整边距/尺寸/间距以满足您的需求。由于您没有给出具体尺寸,我只是选择了使其看起来与图片相似的值。

\documentclass{article}
\usepackage[paperwidth=6.5in, paperheight=9in, margin=0in,bottom=.5in,top=.5in]{geometry}
\usepackage[letter,center, noinfo]{crop}
\usepackage{tcolorbox}
\begin{document}
\crop[cam,axes]
\begin{flushright}
\begin{tcolorbox}[colframe=lightgray, colback=white, width=3in, sharp corners, boxrule=2mm]
\centering\bigskip
\textbf{\large Tytu\l}\\
\vspace{1in}
\textbf{Autor}
\end{tcolorbox}
\end{flushright}
\newpage\crop[off] %To get rid of crop marks on subsequent pages
\end{document}

在此处输入图片描述

相关内容