我想通过启动一个环境并在其中创建四个(使用包)来tikzpictures
在投影仪幻灯片上创建一个数组。奇怪的是,在我目前正在处理的幻灯片之前的两张幻灯片上,这个确切的过程成功了两次,但第三次失败了。我一直在为此绞尽脑汁,但似乎找不到问题所在。figure
subfloats
subfigure
这是一个最小工作示例,但仍然会产生错误:
\documentclass[11pt]{beamer}
\begin{document}
\resizebox{10cm}{!}{\begin{figure}\end{figure}}
\end{document}
错误本身如下:
! LaTeX Error: Something's wrong--perhaps a missing \item.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.11 ...zebox{10cm}{!}{\begin{figure}\end{figure}}
答案1
该figure
环境是浮动环境。您应该调整图形的实际内容(图形)的大小,而不是浮动环境的大小。
\begin{figure}
\resizebox{10cm}{!}{\includegraphics{foo.png}}
\end{figure}