beamer documentclass 存在问题:未找到 xcolor.sty

beamer documentclass 存在问题:未找到 xcolor.sty

我正在尝试运行以下代码:

\documentclass[10pt]{beamer}
\mode<beamer>{%
\usetheme[hideothersubsections,
right,width=22mm]{Goettingen}
}
\title{Simple Presentation}
\author[D. Flipo]{Daniel Flipo}
\institute{U.S.T.L. \& GUTenberg}
\titlegraphic{\includegraphics[width=20mm]{USTL}}
\date{2005}
\begin{document}
\begin{frame}<handout:0>
\titlepage
\end{frame}
\section{An Example}
\begin{frame}
\frametitle{Things to do on a Sunday Afternoon}
\begin{block}{One could \ldots}
\begin{itemize}
\item walk the dog\dots \pause
\item read a book\pause
\item confuse a cat\pause
\end{itemize}
\end{block}
and many other things
\end{frame}
\end{document}

但我收到以下错误:

xcolor.sty not found

我也尝试过

\usepackage{xcolor}

在文档的序言中,有和没有选项,如dvips和,svgnames但我无法摆脱错误

xcolor.sty not found

我通过按下 LED 上的“PDFLaTeX”来运行代码,并使用 MiKTeX 2.9 发行版。

答案1

在 MikTeX 树中,此包可能位于此处: \MiKTeX 2.9\tex\latex\xcolor\xcolor.sty。如果不是,请使用 MikTeX 更新工具下载xcolor.sty并将其放入您的工作目录中,或者最好将整个包放入其中。xcolor

相关内容