패키지 xcolor 오류: 정의되지 않은 색상 `lightblue2'

패키지 xcolor 오류: 정의되지 않은 색상 `lightblue2'

pdflatex를 사용하여 TeX 문서를 컴파일하려고 할 때 다음 오류가 발생합니다.

패키지 xcolor 오류: 정의되지 않은 색상 `lightblue2'

내 파일은 다음과 같습니다.

\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}
%

답변1

LightBlue2당신은 색상 이 아닌 색상을 찾고 있습니다 lightblue2.

내부적으로 모든 색상은 매크로로 표시되며 매크로는 대소문자를 구분합니다. 즉, and 와는 \latex다릅니다 ... 실제로 색상은 매크로에 저장됩니다 .\Latex\LaTeX\LATEXX\\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}

답변2

xcolor올바른 색상 이름(x11names)은 설명서 39페이지를 참조하세요 . 실행하면 문서를 얻을 수 있습니다.texdoc xcolor

관련 정보