3 孔活页夹标签的 LaTeX 模板

3 孔活页夹标签的 LaTeX 模板

我有一个三孔活页夹,里面有八个页隔。每个页隔上都有一个空白的槽,可以输入主题名称的标签。

标签尺寸为 0.5 英寸 x 1.5 英寸。有没有办法为这些标签设置一个简单的环境,以便我可以打印出一堆并快速自定义它们?

另外,标签可以折叠起来,使其厚度加倍,这样我就可以在标签的两面书写。当我将其打印出来然后折叠起来时,名称就会出现在两面。另外,是否可以在标签周围放置一个方框,这样我就知道在哪里剪裁。

当我将其打印出来并剪下来时它看起来应该是这样的:

在此处输入图片描述

我对 Latex 还很陌生,所以很抱歉自己没有尝试。但我觉得你们很聪明,很快就能做到。

答案1

minipages使用和进行简单尝试\fbox

平均能量损失

\documentclass[twocolumn,a4paper]{article}
\usepackage[margin=.5in,columnsep=.5in]{geometry}
\usepackage{xcolor}
\usepackage{graphicx}
\setlength{\parskip}{\bigskipamount}
\setlength{\parindent}{0pt}
\usepackage{bbding}
\newcommand\tab[1]{
\Huge\ScissorRightBrokenBottom\\[-5pt]
{\color{gray!30}
\fbox{\begin{minipage}[c][.5in]{1.5in}%
\color{blue!70!black}\large\bfseries\sffamily
\centering\resizebox{.8\linewidth}{!}{#1}%
\end{minipage}}%
\fbox{\begin{minipage}[c][.5in]{1.5in}%
\color{black!70!green}\large\bfseries\sffamily
\centering\resizebox{.8\linewidth}{!}{#1}%
\end{minipage}}}\\}

\begin{document}

\tab{Homework}
\tab{To do}
\tab{Drafts}
\tab{Class notes}
\tab{Something}
\tab{Something long}
\newpage
\tab{Maths}
\tab{History}
\tab{Literature}
\tab{Fly scores}
\tab{Nothing}
\tab{\parbox{\linewidth}{Some that need a very long explanation to remember.}}

\end{document}

相关内容