Detail Columns

I am trying to create alignment points in a list environment. The following code gives me an error, but it almost compiles to what I want, just skipping the marker points. I must not understand what alignment and / or table view is, and how they work with line breaks. Guide appreciated!

\documentclass{beamer}

\begin{document}

\begin{frame}
    \frametitle{Title}
    \begin{itemize}
    \begin{tabular}{ll}
        \item Topic Apple: &Something to say about it \\
        \item Topic Watermelons: &Something different
    \end{tabular}
    \end{itemize}
\end{frame}

\end{document}
+3
source share
1 answer

How about this?

\documentclass{beamer}

\begin{document}

\begin{frame}
  \frametitle{Title}

\begin{tabular}{p{0.4\textwidth}p{0.5\textwidth}}

\begin{itemize}
     \item Topic Apple:
     \item Topic Watermelon:
  \end{itemize} &

\begin{itemize}
  \item[] Something to say about it
  \item[] Something to say about it
\end{itemize} \\

\end{tabular}

\end{frame}

\end{document}

, {ll} {p {width} l} {p {width} p {width}}, , , , (, , ), , .

m {width}, , , itemize. , width p {}, /. , "dummy" .

, jimmy, , , , , , , .

the\item [] - . , , , .

+9

Source: https://habr.com/ru/post/1775172/


All Articles