我正在做一张便条,上面写着我提供的一些服务。我打算把这张便条放在图书馆、商店、学校等地方。我相信你们都熟悉这样的便条。我的问题是,我该如何处理这种便条的底部,即文本垂直流动并分为(大约)十列的地方?(在每一列中,您通常会写上电话号码、电子邮件和主页 - 然后,用剪刀剪开以分隔各列。)就像我说的,您可能已经知道我在说什么了。有没有标准的方法来做到这一点,如果没有,您有什么建议吗?
答案1
您可以使用一系列的minipage
s 来撕下:
笔记:
代码:
\documentclass{article}
\usepackage{pgffor}
\usepackage{calc}
\usepackage{graphicx}
\begin{document}
\foreach \x in {1,...,10} {%
\noindent
\begin{minipage}{0.1\linewidth}
\rotatebox{90}{%
\fbox{%
\parbox{3cm}{%
\begin{tabular}{l@{~}l}%
Name: & Foo bar \\
Phone: & 555-1212
\end{tabular}%
}%
}%
}%
\end{minipage}%
}%
\end{document}
答案2
一个几乎逐字逐句取自的例子petiteannonce
课程文件:
\documentclass[margin=3mm]{petiteannonce}
\usepackage{siunitx}
\usepackage{graphicx}
\usepackage{array}
\usepackage{eurosym}
\begin{document}
\petiteannonce[cols=2, count=4]%
{02 99 yy yy yy}
{%
\tabcolsep=10pt\relax
\petiteannonceaddtowidth{-2\tabcolsep}%
\begin{tabular}%
{@{}m{\petiteannoncewidth{0.5}}m{\petiteannoncewidth{0.5}}@{}}
\multicolumn{2}{@{}c@{}}{\Large \dotfill Vend Baignoire enfant \dotfill }\\
\hline\\
Vend baignoire enfant.\newline
Dimensions \(\SI {80}{\centi \metre }\times \SI
{30}{\centi \metre }\)\newline
Prix 20\si{~}\euro
&
\includegraphics[width=\petiteannoncewidth{0.5}]{ctanlion}
\end{tabular}
}
\end{document}
CTAN 狮子绘画由 Duane Bibby 绘制。
答案3
一个简单的解决方案tabular
代码
\documentclass{article}
\usepackage{
array,
graphicx,
calc,
arydshln
}
\newbox\mycontacts
\savebox\mycontacts{%
\rotatebox{90}{%
\parbox[][\paperwidth/10-9\arrayrulewidth][c]{\widthof{www.emanuel-berg.de}+2em}{%
\centering Emanuel Berg \\
+00~123~456\,789 \\
www.emanuel-berg.de%
}
}
}
\newcommand*\putmycontacts{\usebox\mycontacts}
\usepackage{lipsum}
\pagestyle{empty}
\usepackage[bottom=0in]{geometry}
\begin{document}
\lipsum[1-2]
\vfill
\centering\makebox[0em]{%
\begin{tabular}{ * { 9 } { @{} c @{} : } @{} c @{} }
\hdashline
\putmycontacts & \putmycontacts & \putmycontacts & \putmycontacts & \putmycontacts & \putmycontacts & \putmycontacts & \putmycontacts & \putmycontacts & \putmycontacts \\
\end{tabular}%
}
\end{document}