.pdf
我需要在课堂文件中显示方程的标签(除了方程编号)IEEEtran
。
为此我使用\usepackage[right]{显示标签}。但我无法显示标签。例如我的代码是
%http://elevatorlady.ca/doc/refcard/expressions.html
\documentclass[11pt,final,onecolumn]{IEEEtran}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[noadjust]{cite}
\usepackage{epstopdf}
\usepackage[right]{showlabels}
\ifCLASSINFOpdf
\else
\fi
\hyphenation{}
\begin{document}
\title{Example}
\begin{abstract}
%\boldmath
This work is summarizing ............
\end{abstract}
\IEEEpeerreviewmaketitle
\section{Introduction}
This is the introduction...........
\hfill
\section{My section}
We have a system
\begin{IEEEeqnarray*}{rCl}
\vec{z}=\vec{b}s+\vec{w} \label{a30} \IEEEyesnumber
\end{IEEEeqnarray*}
\end{document}
请问有什么想法吗?
答案1
根据 egreg、Christian Hupfer 和 Ignasi 的有益评论。我终于找到了一种在 IEEEtran 类中在输出 .pdf 文件中显示方程标签的方法。
1)改变最终的在 \documentclass[11pt,最终的,onecolumn]{IEEEtran} 至草稿列表,
2)使用\usepackage{显示键}代替\usepackage{显示标签}。
完毕。