Latex appendix 生成附录A和B

第一种:

\documentclass[a4paper,12pt]{cctart}
\begin{document}
    main body %正文内容
  \appendix
  \renewcommand{\appendixname}{Appendix~\Alph{section}}

  \section{Some Examples 1}
  some text...
  \section{Some Examples 2}
  some text...
\end{document}

 

第二种:

\documentclass[10pt,conference,twocolumn]{IEEEtran}
\begin{document}
   main body %正文内容
    \begin{appendices}
      \section{  }
      some text in Appendix A
      \section{  }
      some text in Appendix B
  \end{appendices}
\end{document}

你可能感兴趣的:(LateX,LaTeX)