【论文基本功】【LaTeX】附录【IEEE论文】

注意:本博客使用的所有命令都需要以使用 IEEEtran 文档类为前提,即 tex 文件的第一行中的必须是 \documentclass[可选参数]{IEEEtran}(可选参数部分可以自由选择,如 \documentclass[10pt,journal,compsoc]{IEEEtran}。)

0. 图示索引

为了方便直观查找,将LaTeX系列博客实现的格式列在了下面,可以直接点击导航。
单section附录(点击这里可直接导航)
单section附录的效果
多section附录(点击这里可直接导航)
多section附录的实际效果

1. 单section附录

如果附录只有一个section,使用 \appendix\section* 即可。(不可以使用 \section)单section附录的示例代码及实际效果展示在下面。

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

单section附录的效果

2. 多section附录

如果附录有多个section,使用 \appendices\section 即可。多section附录的示例代码及实际效果展示在下面。

% 附录有多个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 ...

多section附录的实际效果

3. 附录与参考文献的相对位置

IEEE论文的附录一般在参考文献之前。具体请参考相应会议或期刊的已公开发表论文。

猜你喜欢

转载自blog.csdn.net/AbaloneVH/article/details/131600265