在 Beamer 中使用 3dplot 包

在 Beamer 中使用 3dplot 包

我正在尝试通过调整来自 Beamer 画廊的一幅作品我正在使用 LyX 2.0。我不断收到错误,提示 LyX 无法编译文件,因为它找不到

\begin{document}

显然,您不会将其放入 Lyx 中的 LaTeX 序言中。在下载 .sty 文件并将以下行插入序言之前,我的文档编译得很好。

\usepackage{3dplot}

以下是我的完整序言:

%\usetheme{Warsaw}
\usetheme{CambridgeUS}
% or ...

\usecolortheme{beaver}
\usefonttheme{serif}
\setbeamertemplate{footline}[text line]{} % makes the footer EMPTY
\usepackage{tikz}
\usetikzlibrary{arrows}
\beamertemplatenavigationsymbolsempty
\definecolor{burntorange}{cmyk}{0,0.52,1,0}

\AtBeginSection[]
{
    \begin{frame}
     \frametitle{Table of Contents}
     \tableofcontents[currentsection,currentsubsection]
      \end{frame}
}
  \usepackage{3dplot} %requires 3dplot.sty to be in same directory, or in your LaTeX      
   installation

我该如何解决这个问题?

答案1

使用

\usepackage{tikz-3dplot}

代替

\usepackage{3dplot}

不会导致任何错误并能正常生成示例。

相关内容