可以将 \figure 与 grid-system 包一起使用吗?

可以将 \figure 与 grid-system 包一起使用吗?

使用 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 编译它时,出现错误:

Mathematica 图形

当我在 Linux 上使用 texlive 2013 进行编译时,我得到:

Mathematica 图形

答案1

浮动环境(例如figure和)table必须被允许在文档中自由漫游 - 当您尝试将它们关在一个框中(例如、、minipage和在您的情况下),您必然会收到错误。vboxparboxCell

内部工作原理的细节floats以及控制其放置的算法在如何影响 LaTeX 中图形和表格等浮动环境的位置?,这是关于该主题的权威且全面的指南之一。

要继续处理当前文档,您只需抓取环境内容figure并将其放置在 中即可Cell;如果您需要标题,那么您可以captionof使用caption包裹。

相关内容