我想使用tabu
我听说的最新最好的表创建包来生成如下所示的表:
-------------------------------------
|A | B | C|
| | | |
| | | |
-------------------------------------
| | | |
|A | B | C|
| | | |
-------------------------------------
| | | |
| | | |
|A | B | C|
-------------------------------------
这是一张简单的表格,但每个单元格中的文本的对齐方式不同。软件包文档说,X
列可以同时垂直对齐(使用p
、m
、b
)和水平对齐(使用l
、c
、r
、j
),但我找不到使用此功能创建此表格的方法。我知道始终可以使用一些低级命令来实现\parbox
此目的,但我很想知道是否有更好的方法来实现此目的。
如果有其他包可以创建这样的表格或者帮助对齐,请在这里讨论。
答案1
tabu
ia 是一个危险的软件包;它有很多错误,而且没有维护;此外,新版本与当前版本不兼容。我目前的建议是不要使用tabu
(参见this thread
在中远海运)。
您只需使用array
包来声明一些列的类型,然后\multicolumn
可以帮助从一种类型切换到另一种类型:
\documentclass{article}
\usepackage{array}
\newcolumntype{L}[4]{
>{\vspace{0pt}\minipage[c][#2][#3]{3cm}%
\ifx#4r\relax\raggedright
\else
\ifx#4l\relax\raggedleft
\else
\ifx#4c\relax\centering
\fi\fi\fi
}p{#1}
<{\endminipage\vspace{\tabcolsep}}}
\begin{document}
\noindent\begin{tabular}{|L{3cm}{3cm}{t}{r}|L{3cm}{3cm}{t}{c}|L{3cm}{3cm}{t}{l}|}
\hline
A & B & C \tabularnewline
\hline
\multicolumn{1}{|L{3cm}{3cm}{c}{r}|}{A}
& \multicolumn{1}{L{3cm}{3cm}{c}{c}|}{B}
& \multicolumn{1}{L{3cm}{3cm}{c}{l}|}{C}
\tabularnewline
\hline
\multicolumn{1}{|L{3cm}{3cm}{b}{r}|}{A}
& \multicolumn{1}{L{3cm}{3cm}{b}{c}|}{B}
& \multicolumn{1}{L{3cm}{3cm}{b}{l}|}{C}
\tabularnewline
\hline
\end{tabular}
\end{document}
列类型的语法L
是
L{<width>}{<height>}{<v. position>}{<text justification>}
其中<width>
和<height>
控制单元格的宽度和高度,<v. position>
是单元格内文本的垂直位置(可能的值:t
顶部,c
中心,,b
底部),并<text justification>
控制单元格内文本的对齐方式(可能的值:l
左不齐,c
居中,r
右不齐)。
答案2
这是一个基于 TikZ 的答案,是我根据 Roberto Bonvallet 提供的一些 Sudoko 生成代码改编的(来源:http://www.texample.net/tikz/examples/数独/)。
% Original author: Roberto Bonvallet
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\newcounter{row}
\newcounter{col}
\newcommand\setrow[9]{
\setcounter{col}{1}
\foreach \n in {#1, #2, #3, #4, #5, #6, #7, #8, #9} {
\edef\x{\value{col} - 0.5}
\edef\y{9.5 - \value{row}}
\node[anchor=center] at (\x, \y) {\n};
\stepcounter{col}
}
\stepcounter{row}
}
\begin{document}
\begin{tikzpicture}
\draw[scale=3] (0, 0) grid (3, 3);
\setcounter{row}{1}
\setrow {A}{ }{ } { }{B}{ } { }{ }{C}
\setrow { }{ }{ } { }{ }{ } { }{ }{ }
\setrow { }{ }{ } { }{ }{ } { }{ }{ }
\setrow { }{ }{ } { }{ }{ } { }{ }{ }
\setrow {A}{ }{ } { }{B}{ } { }{ }{C}
\setrow { }{ }{ } { }{ }{ } { }{ }{ }
\setrow { }{ }{ } { }{ }{ } { }{ }{ }
\setrow { }{ }{ } { }{ }{ } { }{ }{ }
\setrow {A}{ }{ } { }{B}{ } { }{ }{C}
\end{tikzpicture}
\end{document}
答案3
我建议购买套餐cals
。文档“使用示例“第 3 页显示了您想要的表格。
\documentclass{article}
\usepackage{xcolor,cals}% http://ctan.org/pkg/{xcolor,cals}
\begin{document}
\makeatletter
\newcommand\bbrow{\brow\setbox\cals@current@row=\hbox{\vbox to 3cm{}}}
\newenvironment{decotable}{\begin{calstable}
\Large\cals@setpadding{Ag}\cals@setcellprevdepth{Al}
\cals@paddingL=0pt \relax
\cals@paddingR=0pt \relax
\def\cals@framecs@width{2pt}
\def\cals@rs@width{8pt}
\def\cals@cs@width{4pt}
}{\end{calstable}}
\begin{decotable}
\colwidths{{3cm}{3cm}{3cm}}
\bbrow
\cell{left,\\top}
\alignC \cell{center,\\top}
\def\cals@borderL{0pt}\def\cals@borderB{0pt}
\alignR \cell{right,\\top} \erow
\let\cals@borderL=\relax \let\cals@borderB=\relax
\bbrow
\alignL \cell{\vfil left,\\middle}
\alignC \cell{\vfil center,\\middle}
\alignR \cell{\vfil right,\\middle} \erow
\bbrow
\def\cals@bgcolor{green}
\alignL \cell{\vfill left,\\bottom}
\def\cals@bgcolor{}
\alignC \cell{\vfill center,\\bottom}
\alignR \cell{\vfill right,\\bottom} \erow
\end{decotable}
\end{document}