classicthesis-LyX v4.1 中的 tikz-图片

classicthesis-LyX v4.1 中的 tikz-图片

我使用 matlab2tikz 将 MATLAB 中的绘图导出到文件中testfig.tikz。如下所示这里, 包括我

\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\pgfplotsset{plot coordinates/math parser=false}

进入classicthesis-config.tex。当我编译我的论文时,我收到一个错误:

Package xcolor Error: Undefinded color 'Maroon'.

\begingroup \color{Maroon}
                  \spacedallcaps{\myTitle} \endgroup
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.

尽管这个问题看起来类似于一,我无法解决。我的论文中没有包含任何 pdf 文档。

此外,它必须与之相关classicthesis,因为当我将同一个文件包含到纯article文本文档中时(也使用 LyX 和内置Input功能以及上面的序言添加),一切工作正常。

答案1

pgfplots 和 classicthesis 都加载 xcolor 包,必定存在选项冲突。此外,classicthesis 使用 dvipsnames 选项加载它,并期望相应的命名颜色集。您可以尝试在 classicthesis-config.tex 的最后加载 pgfplots,或者使用其他命名颜色作为标题(\color{purple}应该总是有效)。查看 xcolor 和 pgfplots 的文档。

相关内容