LaTeX 中的隔间标签(办公桌标签)模板

LaTeX 中的隔间标签(办公桌标签)模板

有没有人有样式隔间或办公桌标签的好模板LaTeX。标签的格式如下:

Name Designation Misc Info

答案1

以下是一些很酷的会议名牌名称标签

这是代码

%%%%
%
% ticket.sty example file for a pin for conferences
%
%%%%
% use the corresponding paper size for your ticket definition
\documentclass[a4paper,10pt]{letter}

% load ticket.sty with the appropriate ticket definition
\usepackage[freepin,crossmark]{ticket}

% load misc stuff
\usepackage{graphicx}

% make your default ticket. \ticketdefault is somewhat like a background
\renewcommand{\ticketdefault}{%
  \put(55,  3){\includegraphics[scale=0.05]{tiger.eps}}
  \put( 5, 13){\line(1,0){60}}
  \put( 7, 10){\scriptsize Carolina Dynamics Symposium}
  \put( 7,  7){\scriptsize Clemson University}
  \put( 7,  4){\scriptsize April 13 -- April 15, 2012}
}

% now what do you like to put in your ticket
\newcommand{\confpin}[2]{\ticket{%
    \put(35,36){\makebox[0mm]{\bfseries\Large #1}}
    \put(35,28){\makebox[0mm]{\bfseries\large #2}}%
}}


%% the pins for the partipiciants ... ;-)
%% you can generate this part from a database!
\begin{document}
\sffamily

\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}
\confpin{ Predrag Puno\v{s}evac}{Augusta State}

\end{document}

答案2

有一个抽认卡MiKTeX、TeX Live 和 CTAN 上的课程最初用于打印到索引卡上,但文档的第 4 节讨论了如何将其调整为任意卡片尺寸。第 2.3 节展示了如何打印具有左上标题、居中主要内容和右下页脚的卡片。

例子:

\documentclass[custom-tags,fronts,frame]{flashcards}

\begin{document}
\cardfrontstyle{headings}
\cardfrontfoot{Footer}
\begin{flashcard}[Header]{Center}
This goes on the back of the card.
\end{flashcard}

\cardfrontfoot{Second Footer}
\begin{flashcard}[Second Header]{Second Center}
This goes on the back of the card.
\end{flashcard}

\end{document}

在 custom-tags.cfg 中加上 (从类中包含的 avery5388.cfg 复制):

\NeedsTeXFormat{LaTeX2e}[1996/12/01]
\ProvidesFile{custom-tags.cfg}
\newcommand{\cardpapermode}{portrait}
\newcommand{\cardpaper}{letterpaper}
\newcommand{\cardrows}{4}
\newcommand{\cardcolumns}{1}
\setlength{\cardheight}{2.0in}
\setlength{\cardwidth}{6.5in}
\setlength{\topoffset}{1.0in}
\setlength{\oddoffset}{0.25in}
\setlength{\evenoffset}{0.25in}

\endinput

生成:

在此处输入图片描述

相关内容