Re: Beamer: \item e \only

#32428
Antonio Ledda
Partecipante
    Up
    0
    Down
    ::

    Sto cercando di fare in modo che le item dell’ambiente \itemize, dopo essere state visualizzare in una slide, scompaiano.

    ` \begin{itemize}
    \item[] \only<2> {No Traffic, Line-Card Unplugged \\ \alert{\SI{617}{\watt}}}
    \item[] \only<3> {No Traffic, All Line-Card Plugged \\ \alert{\SI{1708}{\watt}}}
    \end{itemize}
    \end{column} `

    In particolare con questo codice, quando vedo la terza slide, il testo va sotto di una riga.

    Se metto \only prima della item, non si compila…

    Qualcosa tipo questo:

    `\begin{frame}
    \begin{itemize}
    \onslide<1>
    \item
    No Traffic, Line-Card Unplugged \\ \alert{\SI{617}{\watt}}
    \onslide<2>
    \item
    No Traffic, All Line-Card Plugged \\ \alert{\SI{1708}{\watt}}
    \onslide<3>
    \item
    No Traffic, All Line-Card Plugged \\ \alert{\SI{1910}{\watt}}
    \onslide<4>
    \item
    No Traffic, All Line-Card Plugged \\ \alert{\SI{2010}{\watt}}
    \end{itemize}
    \end{frame}`

    può andar bene?

    Se vuoi far scomparire l’elenco dopo aver illustrato l’ultimo punto:

    `\begin{frame}
    \begin{itemize}
    \onslide<1>
    \item
    No Traffic, Line-Card Unplugged \\ \alert{\SI{617}{\watt}}
    \onslide<2>
    \item
    No Traffic, All Line-Card Plugged \\ \alert{\SI{1708}{\watt}}
    \onslide<3>
    \item
    No Traffic, All Line-Card Plugged \\ \alert{\SI{1910}{\watt}}
    \onslide<4>
    \item
    No Traffic, All Line-Card Plugged \\ \alert{\SI{2010}{\watt}}
    \end{itemize}
    \onslide<5>
    \end{frame}
    `
    Ciao,
    Antonio.

    Go to top