使用时\usepackage {pst-barcode}
出现错误:
\documentclass[10pt,a4paper,twoside,openany]{book}
\usepackage[spanish]{babel}
\usepackage[dvipsnames,x11names]{pstricks}% Options for xcolor
\usepackage{pst-barcode}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{pspicture}(3.5,1.2in)
\psbarcode[linecolor=red]{1613198400316}{includetext inkspread=0.1}{ean13}
\end{pspicture}
\end{document}
答案1
xcolor
您可以传递via的选项pstricks
:
\documentclass{article}
\usepackage[dvipsnames,x11names]{pstricks}% Options for xcolor
\usepackage{pst-barcode}
\begin{document}
\begin{pspicture}(3.5,1.2in)
\psbarcode[linecolor=red]{1234567}{includetext inkspread=0.5}{ean8}
\end{pspicture}
\end{document}
xcolor
默认加载color
与
\psbarcode[linecolor=red]{1613198400317}{includetext inkspread=0.5}{ean13}
答案2
Pstricks
(由 加载pst-barcode
) 已加载,xcolor
无需选项。如果您使用选项加载后者,则会出现“选项冲突”。解决方案是从文档类中加载选项,它将向所有后续包提出该选项,直到其中一个包识别它。
替代解决方案:写入序言中\PassOptionsToPackage{selected options}{xcolor}
。