url 包的 belongspaces 选项与 Beamer 发生选项冲突

url 包的 belongspaces 选项与 Beamer 发生选项冲突

path我在使用软件包中的命令处理我的投影仪幻灯片时遇到了一些问题。在 64 位 Ubuntu 18.10 上url提供以下 MWE会产生错误: 。有推荐的解决方法吗?pdflatex! LaTeX Error: Option clash for package url

\documentclass{beamer}

\usepackage[obeyspaces]{url} % Preserve spaces in \path command

\begin{document}

\begin{frame}{Test}
Navigate to \path{C:\Program Files\}
\end{frame}

\end{document}

答案1

您不需要url自己加载包,只需将其传递obeyspaces给包并让 beamer 为您加载即可。

此外您还需要使用fragile框架选项。

\PassOptionsToPackage{obeyspaces}{url}

\documentclass{beamer}

\begin{document}

\begin{frame}[fragile]{Test}
Navigate to \path{C:\Program Files\}
\end{frame}

\end{document}

在此处输入图片描述

相关内容