我正在尝试在 TeX 文档中打印我的计算器的按键,感谢这些软件包:
以下是 MWE:
\documentclass[a4paper,12pt]{report}
\usepackage[color=real]{graph35} % Casio calculator
\usepackage{tipfr} % TIcalculator
\begin{document}
On a Casio calculator, type \key[scale=2]{sin} ; On a TI calculator, type \Touche .
\end{document}
我收到一条错误消息: ! LaTeX 错误:软件包 xcolor 的选项冲突。请参阅 LaTeX 手册或 LaTeX Companion 了解详情。键入 H 可立即获得帮助。... l.9 \RequirePackage [zerostyle=d]{newtxtt} 软件包 xcolor 已使用以下选项加载:[] 现已尝试使用以下选项加载它 [dvipsnames,table] 将全局选项:,dvipsnames,table 添加到您的 \documentclass 声明中可能会修复此问题。
但即使我把,dvipsnames,表在我的 documentclass 声明中,仍然有一个错误。有人知道如何防止这两个包之间发生冲突吗?
谢谢您的帮助!
答案1
答案2
该tipfr
软件包有
\RequirePackage[dvipsnames,table]{xcolor}
虽然graph35
有
\RequirePackage{tikz}
无需选项即可加载xcolor
。
因此软件包的顺序必须颠倒。如果您需要向 传递更多选项xcolor
,请先加载您需要的选项,包括dvipsnames
和table
。
\documentclass[a4paper,12pt]{report}
% uncomment the following if you need more options to xcolor
%\usepackage[dvipsnames,table,<other options>]{xcolor}
\usepackage{tipfr} % TIcalculator
\usepackage[color=real]{graph35} % Casio calculator
\begin{document}
On a Casio calculator, type \key[scale=2]{sin} ; On a TI calculator, type \Touche .
\end{document}
例如,您可能想要使用monochrome
黑白打印机进行打印:
\documentclass[a4paper,12pt]{report}
\usepackage[dvipsnames,table,monochrome]{xcolor}
\usepackage{tipfr} % TIcalculator
\usepackage[color=real]{graph35} % Casio calculator
\begin{document}
On a Casio calculator, type \key[scale=2]{sin} ; On a TI calculator, type \Touche .
\end{document}