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}

版权声明:本文为小平果原创文章,转载请注明:http://blog.csdn.net/i10630226

转载于:https://www.cnblogs.com/dingxiaoyue/p/4948308.html

你可能感兴趣的:(Latex appendix 生成附录A和B)