JHEP 类和 TikZ 问题

JHEP 类和 TikZ 问题

似乎不可能在 JHEP 类中使用任何 TikZ 包(理论高能物理:关联

冲突似乎是 JHEP 不喜欢颜色(除了经典的蓝色、绿色、红色等)。不过,我需要制作交换图。

有人知道如何

1)结合 TikZ 和 JHEP 风格

或者

2)以不同于 TikZ 的方式编写 NICE 交换图?

PS我得到的错误是:

! Undefined control sequence.
\set@color ...\@pdfcolorstack push{\current@color
}\aftergroup \reset@color

PS2 这是我使用的代码,无法与 TikZ 一起使用:

\RequirePackage{ifpdf}
\documentclass[12pt,letterpaper]{JHEP3}



\usepackage{amscd,amsmath,amssymb,amsfonts,xspace,mathrsfs}
\usepackage[utf8]{inputenc}
\usepackage{tikz-cd}
%\usetikzlibrary{cd}
% \usetikzlibrary{arrows,intersections}
% \usepackage{lipsum}
% \usepackage{setspace}
\usepackage{graphicx}
 \title{Some Title}
%    Remove any unused author tags
%    author one information 
\author{Author 1 and Author 2\\
{\it Some University}\\

\vspace*{2mm} {\tt e-mail:
\email{[email protected]}, 
\email{[email protected]}}
}

\abstract{ Abtract for JHEP.} 


\preprint{}


\begin{document}

Hi. This is a test.

\end{document}

答案1

这不是一个真正的答案,但是因为我已经使用了 TiJHEP 出版物中的 Z 图片我只是想确认 Torbjørn Ts 的声明是否有效。

\documentclass[a4paper,11pt,fleqn]{article}
\pdfoutput=1 % if your are submitting a pdflatex (i.e. if you have
             % images in pdf, png or jpg format)
\usepackage[utf8]{inputenc}
% from https://jhep.sissa.it/jhep/help/JHEP/TeXclass/DOCS/jheppub.sty
\usepackage{jheppub} % for details on the use of the package, please
                     % see the JHEP-author-manual
\usepackage{tikz-cd}                     
\title{\boldmath A JHEP article with Ti\emph{k}Z
\unboldmath}

\author[a]{Koala Bear}
\author[b,1]{and Marmot\note{Corresponding author.}}


\affiliation[a]{Eucalyptus tree}
\affiliation[b]{Marmot burrow}

% e-mail addresses: one for each author, in the same order as the authors
\emailAdd{[email protected]}
\emailAdd{[email protected]}

\preprint{XXX-YYY}

\abstract{We use a Ti\emph{k}Z picture in a JHEP publication.}

\notoc
\begin{document}
\maketitle

\section{Introduction}

\begin{tikzcd}  
  & & I_1 \ar[rd] \arrow[loop above] & & \\
  & I_K \ar[ur] & & I_2 \ar[rd] & \\ 
  \makebox[14pt]{$I_{K-1}$} \ar[ur] & & & & \makebox[14pt]{$I_{3}$} \ar[d] \\
  \makebox[14pt]{$I_{K-2}$} \ar[u] & & & & \makebox[14pt]{$I_{4}$} \ar[ld]\\
  &~\ar[lu]& & ~\ar[ll,dashed, bend left]&\\
\end{tikzcd}    



\end{document}
\endinput

所以您需要提供更多细节,以便人们能够找出问题所在,但 Tobjørn T. 很可能已经这样做了。

相关内容