以下简单的Latex描述并不会产生我想要的幻灯片。
\begin{frame}
\frametitle{Previous Work}
\begin{itemize}
\item [Hummer 1992] - First work in this area was conducted by Hummer
\item [Goldreich et at. 2002] - Theoretical work that focused more on the power characteristics of embedded systems
\end{itemize}
\end{frame}问题是,方括号中的文本被截断了。所以它应该看起来像这样:
Hummer 1992 - First work in this area was conducted
by Hummer
Goldreich et al. 2002 - Theoretical work that focused more on
the power 但它看起来像这样:
r 1992 - First work in this area was conducted by Hummer
l. 2002 - Theoretical work that focused more on the power 你知道我该怎么解决这个问题吗。
谢谢!
发布于 2010-07-23 18:50:26
itemize环境不适合与长“项目符号”一起使用。使用description环境做得更好(正如我检查的那样,它在beamer中也可以工作),但它不会像您想要的那样对齐名称和描述。
总是有tabular可以精确地做你想做的事情。
https://stackoverflow.com/questions/3317378
复制相似问题