Estou recebendo este erro ao tentar compilar um documento TeX usando pdflatex:
Erro xcolor do pacote: cor indefinida `lightblue2'
Aqui está meu arquivo:
\documentclass{article}
\usepackage[x11names, rgb]{xcolor}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{snakes,arrows,shapes}
\usepackage{amsmath}
%
%
%
%
\begin{document}
\pagestyle{empty}
%
%
%
\enlargethispage{100cm}
% Start of code
\begin{tikzpicture}[>=latex',line join=bevel,]
%%
\node (Wollongong) at (487bp,594bp) [draw=lightblue2,fill=lightblue2,ellipse] {Wollongong};
\node (PDP-11 Sys V) at (884bp,306bp) [draw=lightblue2,fill=lightblue2,ellipse] {PDP-11 Sys V};
\node (Interdata) at (258bp,594bp) [draw=lightblue2,fill=lightblue2,ellipse] {Interdata};
\node (2*8 BSD) at (221bp,162bp) [draw=lightblue2,fill=lightblue2,ellipse] {2.8 BSD};
% CODE REMOVED TO SAVE SPACE
%
\end{tikzpicture}
% End of code
%
\end{document}
%
Responder1
Você está procurando a cor LightBlue2
, não lightblue2
.
Internamente, todas as cores são representadas como macros e as macros diferenciam maiúsculas de minúsculas. Ou seja, \latex
é diferente de \Latex
e \LaTeX
e \LATEX
e... Na verdade a cor X
é armazenada em uma macro \\color@X
:
\documentclass{article}
\usepackage[x11names]{xcolor}
\begin{document}
\textcolor{LightBlue2}{something}
\makeatletter
\ttfamily\verb|\\color@LightBlue2|:
\expandafter\expandafter\expandafter\strip@prefix\expandafter\meaning\csname \string\color@LightBlue2\endcsname
\end{document}
Responder2
Consulte a página 39 da xcolor
documentação para obter os nomes de cores corretos (x11names). Você obterá a documentação executandotexdoc xcolor