我正在尝试在列表环境中创建对齐点.下面的代码给了我一个错误,但它几乎编译成我想要的,只是错过了要点.我必须误解对齐和/或表格以及它们如何与换行符一起使用.指导赞赏!
\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}
Run Code Online (Sandbox Code Playgroud)