In my attempt of putting some text over an image using the callouts package, I copied the the example code form here (you have to scroll down a bit to the answer of user knut) where the package is loaded with the colour options set to [wby] and it works fine.
But if I try and remove the colour options, according to the documentation that came with the package it should display the text and arrow in black and no background, but instead I get the error
! Package xcolor Error: Undefined color `none'. See the xcolor package documentation for explanation.
Nobody else seems to be having this issue so either I misunderstood something in the documentation or something is wrong with my code.
The following reproduces my problem.
\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}
Anyone has suggestions what it might be?
\bgcolcommand to a quitable color. The manual mentions calling the package with[ background = gray , arrow = red ]which works. If you do not explicitly set thebackgroundcolor, it will use the default value which is the non existing colornone. – daleif Apr 12 '18 at 14:26\helpgrid. Just do\helpgrid[black]. – egreg Apr 12 '18 at 15:50