使用 IEEEtrans 模板的 xcolor 包中出现“不兼容的颜色定义”警告

使用 IEEEtrans 模板的 xcolor 包中出现“不兼容的颜色定义”警告

我正在使用IEEEtrans.clsieeeaccess.cls模板为 IEEE Access 撰写一篇文章。

我的问题是,这些模板正在使用color包来定义标题,当我尝试使用该包时,我收到一串警告xcolor

我可以通过对 Overleaf 中的 IEEE Access 模板(包括changes序言中的包)进行小幅修改来演示该问题。

我在模板正文中只添加了这一行:

\usepackage[markup=underlined,commentmarkup=footnote]{changes}

我想摆脱警告,但不放弃使用该changes包或任何其他xcolor基于包的包。

我将非常感激您对这个主题的回答。

请随意调整项目以提供可行的解决方案。

最小工作示例:

\documentclass{ieeeaccess}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}

%If not commented, warnings given for the incompatible color definition
\usepackage[markup=underlined,commentmarkup=footnote]{changes}

\begin{document}

\section{Header}
Some text here. The colors are fine with or without the "changes" package, but warnings are listed.
\subsection{SubSection}
And also here
\Figure[t!](topskip=0pt, botskip=0pt, midskip=0pt){fig1.png}
{Magnetization as a function of applied field.
It is good practice to explain the significance of the figure in the caption.\label{fig1}}

\EOD
\end{document}

模板运行所需的文件可以从以下位置获取: https://ieeeaccess.ieee.org/wp-content/uploads/2020/04/access.zip

正在工作、可编辑和共享的 Overleaf 项目: https://www.overleaf.com/9292567342drnymnpxzbst

相关内容