我在使用 document 类时遇到了非常奇怪的行为ieeecolor.cls
!使用这个类和包编译 latex 文档tikz
会触发一些颜色警告:Warning Incompatible color definition
,但生成的 pdf 似乎符合预期(即参见下面的 MWE)。
然而,当将以下部分添加到 tex 文件时,会发生非常奇怪的事情:
%%%% Inverse PDF page and text color
\definecolor{pagcol}{rgb}{0.1255,0.1255,0.1255}
\definecolor{txtcol}{rgb}{0.85,0.85,0.85}
\pagecolor{pagcol}
\color{txtcol}
在这种情况下,latex 的行为相当出乎意料,颜色不再是应有的颜色。这似乎是由于新ieeecolor
类与某些包(如)之间的冲突造成的tikz
。
有人遇到过这个问题吗?有人找到解决办法了吗?
该ieeecolor
课程可在IEEE 作者中心网站,它需要文件ieeecolor.cls
和“generic.sty”。
带有页面和文本颜色代码注释的最小工作示例:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%2345678901234567890123456789012345678901234567890123456789012345678901234567890
% 1 2 3 4 5 6 7 8
%\documentclass[letterpaper,10pt,conference]{ieeeconf} % Comment this line out
% if you need a4paper
%\documentclass[a4paper, 10pt, conference]{ieeeconf} % Use this line for a4
% paper
\documentclass[journal,twoside,web]{ieeecolor} % %% NEW ieeecolor class %%
% \IEEEoverridecommandlockouts % This command is only
% needed if you want to
% use the \thanks command
% \overrideIEEEmargins
% See the \addtolength command later in the file to balance the column lengths
% on the last page of the document
% The following packages can be found on http:\\www.ctan.org
\usepackage{generic}
\usepackage{lipsum}
\usepackage{tikz}
\usepackage{pagecolor}
%%%%% Inverse PDF page and text color
%\definecolor{pagcol}{rgb}{0.1255,0.1255,0.1255}
%\definecolor{txtcol}{rgb}{0.85,0.85,0.85}
%\pagecolor{pagcol}
%\color{txtcol}
\title{My Dummy Article}
\author{Julius~Caesar~\IEEEmembership{Fellow~Member,~IEEE}
\thanks{J.~Caesar is with the Senate House, Rome}
}
\begin{document}
\maketitle
\thispagestyle{empty}
\pagestyle{empty}
\begin{abstract}
\lipsum[1]
\end{abstract}
\begin{IEEEkeywords}
Key word 1, Key word 2.
\end{IEEEkeywords}
\section{Dummy Section 1}
\lipsum
\section{Dummy Section 2}
\lipsum
\begin{figure}[!htbp]
\centering
\begin{tikzpicture}
\draw (0,0) -- (4,0) -- (4,4) -- (0,4) -- (0,0);
\end{tikzpicture}
\caption{A Dummy Square figure}
\end{figure}
\lipsum
\end{document}
通用.sty
\def\logoname{LOGO-generic-web}
\definecolor{subsectioncolor}{rgb}{0,0.541,0.855}
\setlength{\firstpagerule}{39pc}
\setlength{\logowidth}{4pc}
\def\journalname{Generic Colorized Journal}
答案1
ieeecolor.sty
有点麻烦。顺便问一下,有人知道可以联系谁来发布补丁吗?
这里有两个技术问题和一个哲学问题。
哲学问题是:这值得关心吗?当他们接受你的论文时,他们会用一些根本不是 LaTeX 的东西重新格式化它,而且他们无论如何都想要单独的图表,最好用 来构建standalone
。但是如果你想让你的文件用于内部使用或提交给某个档案馆,那么是的,也许值得关心。
技术问题有两个:
- 第一个相当大:颜色会泄漏。链接的答案为此提供了一个很好的答案。
- 该包加载
color
,而不是xcolor
(在2021年!),这就是为什么你遇到Ti的所有问题钾Z,这需要xcolor
。
可能的解决方案。
- 修补
ieeecolor.cls
--- ieeecolor.cls.orig 2021-06-04 11:51:15.355826034 +0200
+++ ieeecolor.cls 2021-06-04 12:11:40.354385057 +0200
@@ -667,12 +667,13 @@
%
%
%
-%
+
\ProvidesClass{IEEEtran}[2002/11/18 revision V1.6b by Michael Shell]
\typeout{-- See the "IEEEtran_HOWTO" manual for usage information.}
\typeout{-- The source comments contain changelog notes.}
\NeedsTeXFormat{LaTeX2e}
-\RequirePackage{color}
+% \RequirePackage{color}
+\RequirePackage[table]{xcolor}
%%%%%%%%%%%
\DeclareOldFontCommand{\sf}{\normalfont\sffamily}{\mathsf}
@@ -2255,16 +2256,16 @@
\else
\@IEEEfigurecaptionsepspace% V1.6 was a hard coded 5pt
% 3/2001 use footnotesize, not small; use two nonbreaking spaces, not one
-\setbox\@tempboxa\hbox{\footnotesize #1.\color{black}\normalcolor~~\sf\boldmath #2}%
+\setbox\@tempboxa\hbox{{\footnotesize #1.\color{black}\normalcolor~~\sf\boldmath #2}}%
\ifdim \wd\@tempboxa >\hsize%
% if caption is longer than a line, let it wrap around
-\setbox\@tempboxa\hbox{\footnotesize #1.\color{black}\normalcolor~~ }%
+\setbox\@tempboxa\hbox{{\footnotesize #1.\color{black}\normalcolor~~ }}%
\parbox[t]{\hsize}{\footnotesize \noindent\unhbox\@tempboxa\sf\boldmath #2}%
% if caption is shorter than a line,
% allow user to control short figure caption justification (left or center)
\else%
-\ifcenterfigcaptions \hbox to\hsize{\footnotesize\hfil\box\@tempboxa\hfil}%
-\else \hbox to\hsize{\footnotesize\box\@tempboxa\hfil}%
+\ifcenterfigcaptions \hbox to\hsize{{\footnotesize\hfil\box\@tempboxa\hfil}}%
+\else \hbox to\hsize{{\footnotesize\box\@tempboxa\hfil}}%
\fi\fi\fi\color{black}}
我认为这应该可以解决这两个问题。
- 如果你不想触碰原始课程,我们可以尝试在课程开始前
ieeecolor
加载;修复其他问题xcolor
与 Phelype Oleinik 修复:只需将您的调用更改\documentclass
为(使用ieeecolor.cls
今天早上下载的进行测试!):
\RequirePackage{xcolor}
\documentclass[journal,twoside,web]{ieeecolor} % %% NEW ieeecolor class %%
% \IEEEoverridecommandlockouts % This command is only
% needed if you want to
% Fix ieeecolor's \caption
\usepackage{etoolbox}
\makeatletter
\@ifundefined{color@begingroup}%
{\let\color@begingroup\relax
\let\color@endgroup\relax}{}%
\def\fix@ieeecolor@hbox#1{%
\hbox{\color@begingroup#1\color@endgroup}}
\patchcmd\@makecaption{\hbox}{\fix@ieeecolor@hbox}{}{\FAILED}
\patchcmd\@makecaption{\hbox}{\fix@ieeecolor@hbox}{}{\FAILED}
对我来说,这两种方法似乎都有效,但我没有时间进行深入检查。