[Thesis Basic Skills] [LaTeX] Appendix [IEEE Papers]

Note : All the commands used in this blog need to use the IEEEtran document class as a prerequisite, that is, the first line of the tex file must be \documentclass[optional parameters]{IEEEtran} (The optional parameter part can be chosen freely, such as \documentclass[10pt,journal,compsoc]{IEEEtran} .)

0. Icon index

In order to facilitate the intuitive search, the format implemented by the LaTeX series of blogs is listed below, and you can directly click to navigate.
Single section appendix (click here for direct navigation)
The effect of a single-section appendix
Multi-section appendix (click here for direct navigation)
The practical effect of multi-section appendices

1. Single section appendix

If the appendix has only one section, use\appendixand\section*That's it. (cannot use\section) The sample code and actual effect of the single-section appendix are shown below.

% 附录只有一个section时
\appendix
\section*{Title of the Single appendix}
This is the first paragraph of the appendix ...

The effect of a single-section appendix

2. Multi-section appendix

If the appendix has multiple sections, use\appendicesand\sectionThat's it. The sample code and actual effect of the multi-section appendix are shown below.

% 附录有多个section时
\appendices
\section{Title of the 1nd appendix}
This is the first paragraph of Appx. A ...
\section{Title of the 2nd appendix}
This is the first paragraph of Appx. B ...

The practical effect of multi-section appendices

3. Relative position of appendices and references

The appendices of IEEE papers generally precede the references. For details, please refer to published papers in corresponding conferences or journals.

Guess you like

Origin blog.csdn.net/AbaloneVH/article/details/131600265