我的包裹出现了有线问题xcolor
,我认为问题出在包裹上sgamex
,但我无法解决它。
\documentclass[12pt,a4paper]{article}
\usepackage{adjustbox}
\usepackage{amssymb,amsmath,amsthm}
\usepackage{bm}
\usepackage{colortbl}
\usepackage{commath}
\usepackage{datetime}
\usepackage{dirtytalk}
\usepackage{etoolbox,refcount}
\usepackage{fancyhdr}
\usepackage{float}
\usepackage[font=scriptsize,labelfont=bf]{caption}
\usepackage{geometry}
\usepackage{istgame}
\usepackage{listings}
\usepackage{lscape}
\usepackage{multicol}
\usepackage{multirow}
\usepackage[pdfusetitle, hidelinks, pdfencoding=auto, colorlinks=true, linkcolor=blue]{hyperref}
\usepackage{pgfplots}\pgfplotsset{compat=1.13}
\usepackage{pifont}
\usepackage{rotating}
\usepackage{scalerel}
\usepackage{sgamex}
\usepackage[shell]{gnuplottex}
\usepackage[shortlabels]{enumitem}
\usepackage{subcaption}
\usepackage{tabularx}
\usepackage{tikz, tkz-euclide, siunitx, tkz-tab}
\usepackage{tkz-euclide}
\usepackage[utf8]{inputenc}
\usepackage{verbatim}
\usepackage{wrapfig}
\usepackage{xcolor}
我收到此错误:
! LaTeX Error: Option clash for package xcolor.
答案1
当我读完手动的在sgamex
包裹的第 2 页我发现了这个:
要在文档中使用该包,请将以下行放在
\usepackage{sgamex}
前言中。它会使用xcolor
选项表加载包,因此如果您的文档加载了另一个xcolor
没有选项的包,则需要先加载或使用表选项尽早sgamex
加载。xcolor
因此我将其移至\usepackage{sgamex}
第一个。