I would like to put a brace in front of some table rows.
I found a similar question here and in an answer the use of the bigdelim package is suggested.
The problem is, it does not seem to work if a row contains a lot of text that is wrapped to multiple lines. Here is an example to illustrate the problem:
\documentclass{article}
\usepackage{multirow,bigdelim}
\usepackage{blindtext}
\begin{document}
\begin{tabular}{ccl}
\ldelim\{{3}{3mm}[a] & \ldelim\{{1}{3mm}[x] &
\begin{minipage}{0.8\textwidth}
\blindtext
\end{minipage}\\
&\ldelim\{{1}{3mm}[y] & More text\\
&\ldelim\{{1}{3mm}[z] & More text
\end{tabular}
\end{document}
This produces the following:

What I would like is to let the brace x span over all of the lorem ipsum text and the brace a to span over all three table rows.
How can I achieve this (using \ldelim is not a strict requirement, but I like the syntax)?
EDIT:
Note that the minipage I use to hold the text does not only need to contain text but also e.g. a tikzpicture or some small tabular (I'm not exactly sure yet…). So the minipages height does not need to be a multiple of the height of a line of text.

\ldelimhas an option that tells how many lines it should span, and right now it is set to use 3 lines. Change it to 13 and add[t]option to the minipage and it should work. (\begin{minipage}[t]{0.8\textwidth}). But I don't think a minipage solution is the right thing for you. Can you include your own case here? – percusse Jun 01 '13 at 07:52minipage. Any other ideas? – siegi Jun 01 '13 at 08:15