使用 grid-system 包http://www.ctan.org/tex-archive/macros/latex/contrib/grid-system
关于它的文档很少。当我尝试\figure
在单元格中添加时,出现 Latex 错误。
\documentclass[12pt,notitlepage]{article}%
\usepackage{float}
\usepackage{grid-system}
\begin{document}
\begin{Row}%
\begin{Cell}{2}
test
\end{Cell}
\begin{Cell}{1}
\begin{figure}
test
\end{figure}
\end{Cell}
\end{Row}
\end{document}
现在,当我在 Windows(Miktex 2.9)上使用 texstudio 编译它时,出现错误:
当我在 Linux 上使用 texlive 2013 进行编译时,我得到:
答案1
浮动环境(例如figure
和)table
必须被允许在文档中自由漫游 - 当您尝试将它们关在一个框中(例如、、minipage
和在您的情况下),您必然会收到错误。vbox
parbox
Cell
内部工作原理的细节floats
以及控制其放置的算法在如何影响 LaTeX 中图形和表格等浮动环境的位置?,这是关于该主题的权威且全面的指南之一。
要继续处理当前文档,您只需抓取环境内容figure
并将其放置在 中即可Cell
;如果您需要标题,那么您可以captionof
使用caption
包裹。