Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I'd use <code>tikz</code> and make an overlay. </p> <p>First include the proper packages (you may not need to include <code>tikz</code> since this is a beamer question):</p> <pre><code>\usepackage{tikz} \usetikzlibrary{decorations.pathreplacing} </code></pre> <p>Then when you make your list, give names to the places after each item:</p> <pre><code>\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} </code></pre> <p>(<em>Note:</em> I shifted the <code>y</code> value up by 1/2 of a line maybe more would be better.)</p> <p>Because we used <code>remember picture</code> we can refer to these places in an overlay:</p> <pre><code> \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} </code></pre> <p>The path is there to deal with items that do not have the same width. This edit comes from <a href="https://stackoverflow.com/questions/2777179/tikz-set-appropriate-x-value-for-a-node/2781944#2781944">ESultanik's answer</a>.</p> <p>The result is:</p> <p><img src="https://i56.photobucket.com/albums/g162/nakedwithbootson/onetwocool.png?t=1273084709" alt="alt text"></p> <p><em>Side note</em>: You can remove all of the <code>remember picture</code> options and add the following to automatically add remember to all pictures:</p> <pre><code>\tikzstyle{every picture}+=[remember picture] </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload