美文网首页
论文结构学习

论文结构学习

作者: sunnysinge | 来源:发表于2020-02-11 18:16 被阅读0次

    接下来是一整套连续的论文写作代码(精简版),明天整理自己的美赛模板吧···

    一、引言部分

    \documentclass{article}     %确定了文档类型为article

    \usepackage{}     %使用相应的宏包 。如:

    graphicx——用来在文档中插入图片

    caption2——修改图注相关

    subfigure——用来插入插入并列分布的图片

    float——确定图片是否为浮动,而不是在一个固定的地方。

    \title{}    %用来写文档的题目

    \author{}      %用来指明作者,

    \date{}        %确定写作日期

    二、正文部分

    正文部分在\begin{document}和\end {document}之间。

    \begin{document}

    摘要

    \begin{abstract} 

    \begin{keywords} 

    \end{keywords} 

    \end{abstract}

    目录

    \maketitle              %生成页面标题

    \tableofcontents       %生成目录

    \chapter{}           %    设置每章标题

    \section{s}

    \section{i}

    \subsection{n}

    \subsection{g}

    \section{c}

    \section{u}

    \subsection{t}

    \subsection{e}

    附录

    \begin{appendices}

    \end{appendices}

    \end{document}

    相关文章

      网友评论

          本文标题:论文结构学习

          本文链接:https://www.haomeiwen.com/subject/jpbxfhtx.html