tags:

views:

588

answers:

6

Hi,

I am producing some latex beamer slides (but I think it is not a beamer specific question per se).

I have the following:

\begin{itemize}
\item Issue1
\item Issue2
\item Issue3
\end{itemize}

Now, I want to have a right curly brace (i.e. '}') behind the items spreading over issue1 and issue2. And of course I want to write something behind that curly brace.

In a perfect world I would write something like:

\begin{itemize}
\left .
\item Issue1
\item Issue2
\right \} One and Two are cool
\item Issue3
\end{itemize}

This does not work because I am not in a math environment and I can not put the whole snippet inside a math environment because itemize would not work in that case.

Is there a clean solution or a hack to produce my desired result?

Regards, Bastian.

+2  A: 

One way to get around this would be to use a math environment like align, put the bullet points by hand (with \bullet ), and then use the resources of the math environment for big braces and such.

Seamus
I thought about that (but without knowing $\bullet$ in particular).Is there a way to produce a symbol looking like the default bullet of the itemize environment in a beamer document? If so, this solution seems quite applicable.
basweber
+4  A: 

You could (ab)use a table instead:

\documentclass{article}
\usepackage{multirow}

\begin{document}

\begin{tabular}{ll}

\textbullet Issue 1 & \multirow{2}{*}{{\LARGE \}} One and Two are cool} \\
\textbullet Issue 2                                                     \\
\textbullet Issue 3                                                     \\

\end{tabular}

\end{document}

produces:

alt text

Bart Kiers
+1: I like this answer much better than @Seamus's.
High Performance Mark
@Mark, thanks, although when spawning `}` over 3 (or more) rows, it might become too wide. But that will be something *basweber* should/would try and see for him/her self.
Bart Kiers
Yes, spawning 3 or more items is on my wish list. ;) And there is another Problem: $\bullet$ looks different from the default bullet of the itemize environment (in a beamer document).
basweber
Use `\textbullet` instead of `$\bullet$`
Geoff
A: 

I did something similar once. I let the list be in a column to the left, and in the right column, I did the $\right\}$-thing so that it was as tall as some \mbox or something (which I decided with \vphantom or something similar). Unfortunately I don't have time to dig it out... I actually don't have time to be at SO at all right now ;)

aioobe
@aioobe, that's just as ugly as the other solutions.
aioobe
@aioobe, are you now talking to yourself? :)
Bart Kiers
Wanted to put. the comment there before someone else ;)
aioobe
Mine is ugliest!
Charles Stewart
+4  A: 

I'd use tikz and make an overlay.

First include the proper packages (you may not need to include tikz since this is a beamer question):

\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}

Then when you make your list, give names to the places after each item:

\begin{itemize}
    \item Issue 1     
        \tikz[remember picture] \node[coordinate,yshift=0.5em] (n1) {}; 
    \item Issue 2
        \tikz[remember picture] \node[coordinate] (n2) {};
    \item Issue 3
\end{itemize}

(Note: I shifted the y value up by 1/2 of a line maybe more would be better.)

Because we used remember picture we can refer to these places in an overlay:

  \begin{tikzpicture}[overlay,remember picture]
      \path (n2) -| node[coordinate] (n3) {} (n1);
      \draw[thick,decorate,decoration={brace,amplitude=3pt}]
            (n1) -- (n3) node[midway, right=4pt] {One and two are cool};
  \end{tikzpicture}

The path is there to deal with items that do not have the same width. This edit comes from ESultanik's answer.

The result is:

alt text

Side note: You can remove all of the remember picture options and add the following to automatically add remember to all pictures:

\tikzstyle{every picture}+=[remember picture]
Geoff
Thats it! Realy cool! I post an adapted example below. Thanks a lot.
basweber
I've never used this before, it may not be so pretty when the items don't have the same length. In that case you'll probably need to set some hard `x` value for the `\node` s or maybe use some rubber width like `\hspace{2in}`. I'm sure there is some smart tikz way to compute the max `x` value for two nodes also.
Geoff
Nice! +1 ` ` ` ` ` `
Bart Kiers
Updated to deal with items that have different widths, using ESultanik's answer.
Geoff
+3  A: 

Here is Geoffs code with some small adaptions (just for other beamer users)

\begin{frame}{Example}

\begin{itemize}
\item The long Issue 1
\tikz[remember picture] \node[coordinate,yshift=0.7em] (n1) {}; \\
spanning 2 lines


\item Issue 2
  \tikz[remember picture] \node[coordinate, xshift=1.597cm] (n2) {};
\item Issue 3

\end{itemize}

\visible<2->{
\begin{tikzpicture}[overlay,remember picture]
  \draw[thick,decorate,decoration={brace,amplitude=5pt}]
        (n1) -- (n2) node[midway, right=4pt] {One and two are cool};
\end{tikzpicture}
 } % end visible

\end{frame}

Ressult (2nd slide of that frame):

beamer result

The adaptions are:

  • added the visible command (because I think it is useful to blend in the brace later)
  • made the items more complex so the use of xshift became necessary (I figured out the xshift value simply by try and error so thats a drop of bitterness)
basweber
Yeah, the `xshift`, this upsets me also. I *know* there's a way to compute the maximum *x* value for two nodes, I just don't know tikz well enough.
Geoff
I opened a new question: http://stackoverflow.com/questions/2777179/tikz-set-appropriate-x-value-for-a-nodeLets see if anyone comes up with a nice solution.
basweber
Good. I was thinking of doing that. I've been wasting loads of time trying to figure it out on my own. There are so many nice Tikz examples, but it's so flexible that it's hard to find exactly what you need (or think you need).
Geoff
A: 

I tried my idea, below. It doesn't work: unfortunately, the vboxes produced by the itemize environment all have width \textwidth.

The UI of my suggestion is nice, and by redefining \item it should be possible to get the item vboxes be of reasonable width. Or calculate a reasonable width for the vboxes containing the items. But since there are fucntional solutions already, I won't spend anymore time on this.

\documentclass{article}

\def\setgrouptext#1{\gdef\grouptext{#1}}
\newenvironment{groupeditems}{\begin{displaymath}\left.\vbox\bgroup\setgrouptext}{%
  \egroup\right\rbrace\hbox{\grouptext}\end{displaymath}}

\begin{document}

\begin{itemize}
\item Line 1
\begin{groupeditems}{Lines 2 and 3 together!}
\item Line 2
\item Line 3
\end{groupeditems}
\item Line 4
\end{itemize}

\end{document}
Charles Stewart