在我尝试使用 callouts 包将一些文本放在图像上时,我复制了示例代码形式这里(您必须向下滚动一点才能看到用户 knut 的回答)其中,软件包加载时颜色选项设置为,[wby]
并且运行正常。
但是,如果我尝试删除颜色选项,根据软件包附带的文档,它应该以黑色显示文本和箭头,并且没有背景,但我却收到错误
! Package xcolor Error: Undefined color `none'. See the xcolor package documentation for explanation.
似乎没有其他人遇到过这个问题,所以要么是我误解了文档中的某些内容,要么是我的代码有问题。
以下内容重现了我的问题。
\documentclass[a4paper,10pt,twoside]{report}
\usepackage{callouts}
\begin{document}
\begin{figure}
\centering
\def\scale{0.7}
\begin{annotate}{
\includegraphics[width=\scale\textwidth]{Carc.png}}{\scale}
\helpgrid
\note{0,0}{Center}
\callout{4,3}{Mushrom}{3,2}
\arrow{-3,-2.4}{-4.5,-3}
%And raw tikz
\draw[very thick,red] (-4,4) rectangle (-3,3);
\end{annotate}
\end{figure}
\end{document}
有谁能提出建议它可能是什么吗?