Xcolor 包中的 Beamer 颜色未定义

Xcolor 包中的 Beamer 颜色未定义
\documentclass[aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
%\usepackage[T1]{fontenc}
\usepackage{luaotfload}
\usepackage[EU2]{fontenc}
\usepackage{lmodern}
\usepackage{transparent}
\usepackage[default,scale=1]{opensans}
\usepackage{xcolor}

\newcommand{\tdb}[1]{\textcolor{DarkBlue}{#1}} % text DarkBlue

\begin{document}

\section{Section Title}
\begin{frame}{}
 \begin{block}{}
   \begin{Huge}
     \tdb{Section Title}
   \end{Huge}
 \end{block}
\end{frame}

\end{document}

错误

尽管我得到了svgnames option以下显示:DarkBlue

Package xcolor Error: Undefined color `DarkBlue'.

See the xcolor package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.25 \end{frame}

答案1

嗯,您没有使用 svgnames 选项。我删除了当前 lualatex 中所有不需要或错误的包。

\documentclass[aspectratio=169,xcolor=svgnames]{beamer}
\usepackage{transparent}
\usepackage[default,scale=1]{opensans}

\newcommand{\tdb}[1]{\textcolor{DarkBlue}{#1}} % text DarkBlue

\begin{document}

\section{Section Title}
\begin{frame}{}
 \begin{block}{}
   \begin{Huge}
     \tdb{Section Title}
   \end{Huge}
 \end{block}
\end{frame}

\end{document}

相关内容