我正在尝试将一些盒子放在第二个包裹上
\usepackage{fancybox}
我的代码看起来像这样
\documentclass{article}
\usepackage{fancybox,color}
\begin{document}
\boxput*(-0.4,1.1){
\textbf{MathBox : }Akaike information criterion }{
\colorbox{blue}{
\ovalbox{
\begin{minipage}{0.9\textwidth}
\newline
Text
$eqation$
Text
\footnote{\textit{Everitt (1998), The Cambridge Dictionary of Statistics }}
\end{minipage}
}}}
\end{document}
我使用这种类型的装箱三次,在装箱结束时,其中两个让我出错。我\\
在框中或之前的框中没有任何内容。最奇怪的是代码完成编译并且框出现在 pdf 中。我在 TexMaker 中使用 pdflatex 进行编译(在 ubuntu 上)
我真的不知道问题是什么。
谢谢
答案1
错误来自于 ,因为\newline
您在 的开头立即出现了 ,在开始段落minipage
之前,您无法结束当前行并开始新行,因此会出现错误。只需删除 即可\newline
消除错误。