blob: 28b28c2e7e10e1c1d6c188d3660dbc499b0f530d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
%%
%% A DANTE-Edition example
%%
%% Example 02-04-7 on page 42.
%%
%% Copyright (C) 2010 Herbert Voss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
%%
%% ====
% Show page(s) 1
%%
\documentclass[]{article}
\pagestyle{empty}
\setlength\textwidth{201.70511pt}
\setlength\parindent{0pt}
\hyphenation{ge-nau Klam-mern}
\AtBeginDocument{\setbox0\hbox{$ $}}
\usepackage{blkarray,ragged2e}
\begin{document}
\begin{blockarray}{\BAenum!{.\quad}cc\Right{\}}{\texttt{block 1}}}
ccc & cc \\
c & ccccccccc \\
\BAnoalign*{\texttt{\textbackslash BAnoalign*} typesets the text exactly in the
width of the table.}
\begin{block}{\BAenum!{.\quad}(rr\Right{\}}
{\parbox{3cm}{block 2, with a nested \texttt{block*}}}}
\phantom{XX}rrr & rr \\
rrr & r \\ % next row empty "field" for BAenum
\begin{block*}{!{\quad}ll}
& ll & ll\phantom{XX}\\
& l & l\\
\end{block*}
r & r \\ \end{block}
ccc \\
\begin{block}{\BAenum!{.\quad}>{\bfseries}l \{c\Right{\}}{\texttt{block 3}}}
\gdef\theBAenumi{\Roman{BAenumi}}
LLL & \BAmultirow{50pt}{\Centering All columns in one block.} \\
LL & \\
L & \\
\end{block}
\begin{block}{\BAenum \{l\}l\Right{\}}{\texttt{block 4}}}
ll & l\\ \BAnoalign{In contrast to \texttt{\textbackslash BAnoalign*},
\texttt{\textbackslash BAnoalign} interrupts all delimiters in the current block.}
l & lll \\
\end{block}
c & c
\end{blockarray}
\end{document}
|