附录中的 IEEEtran 问题

附录中的 IEEEtran 问题

我必须向一个会议提交一篇论文,该会议要求 IEEEtran 课程和 compsoc 选项。除了附录外,一切都很好。

  1. 附录中忽略了 section 命令。我必须使用 subsection 命令才能显示标题。
  2. 在附录中使用命令“\subsection{Bla}”并在文本中引用子节时,子节以大写字母标识。但奇怪的是,在子节的头部,标识是十进制的。如何从十进制改为大写字母?(仅在附录中。在正文中,我希望所有内容都以十进制表示。)
  3. 我希望附录中的引理和定理的编号取决于附录的章节。例如,A 节中的引理应为 A.1 A.2,...B 节中的引理应为 B.1、B.2,...但在当前版本中,附录所有章节中的数字均为 A.1 A.2 A.3 格式...换句话说,字母没有变化,计数器也没有重置。如何解决这个问题?

结果

 \documentclass[conference,compsoc]{IEEEtran}

 \begin{document}

 \section{First Section}

 \section{Second Section}

 \section{Third Section}

 \begin{itemize}
    \item See Appendix \ref{FirstAppendix}
    \item See Appendix \ref{FirstSubsectionAppendix}
    \item See Appendix \ref{SecondAppendix}
    \item See Appendix \ref{ThirdAppendix}
    \item See Appendix \ref{FourthAppendix}
  \end{itemize}

  \begin{thebibliography}{1}
  \bibitem{testEntry}
      Test Ing, \emph{Testing a template}, 2017.
  \end{thebibliography}

  \appendix

  \subsection{First Appendix}
  \label{FirstAppendix}

  \subsubsection{First Subsection In Appendix}
  \label{FirstSubsectionAppendix}

  \subsection{Second Appendix}
  \label{SecondAppendix}

  \subsection{Third Appendix}
  \label{ThirdAppendix}

  \section{Fourth Appendix}
  \label{FourthAppendix}

  \end{document}

答案1

请注意,这\appendices似乎是IEEEtrans班级所独有的。

 \documentclass[conference,compsoc]{IEEEtran}

 \begin{document}

 \section{First Section}

 \section{Second Section}

 \section{Third Section}

 \begin{itemize}
    \item See Appendix \ref{FirstAppendix}
    \item See Appendix \ref{FirstSubsectionAppendix}
    \item See Appendix \ref{SecondAppendix}
    \item See Appendix \ref{ThirdAppendix}
    \item See Appendix \ref{FourthAppendix}
  \end{itemize}

  \begin{thebibliography}{1}
  \bibitem{testEntry}
      Test Ing, \emph{Testing a template}, 2017.
  \end{thebibliography}

  \appendices

  \section{First Appendix}
  \label{FirstAppendix}

  \subsection{First Subsection In Appendix}
  \label{FirstSubsectionAppendix}

  \section{Second Appendix}
  \label{SecondAppendix}

  \section{Third Appendix}
  \label{ThirdAppendix}

  \section{Fourth Appendix}
  \label{FourthAppendix}

  \end{document}

演示

相关内容