美文网首页
LaTex论文结构

LaTex论文结构

作者: KoooOooooK | 来源:发表于2019-07-02 09:55 被阅读0次

学术论文的格式设置LaTex比word不知道好用多少倍,不过LaTex的学习成本比较高,所以可以先学习使用LaTex完成基本的论文结构编写,之后遇到具体问题再去学习。

文章结构

%文档类
\documentclass[12pt]{article}

%宏包
\usepackage[margin=1in]{geometry}
......

%样式设置
......

%文章主题
\begin{document}
%标题
\begin{titlepage}
......
\end{titlepage}

%目录
\tableofcontents

......
\end{document}

0x00 论文标题

论文一般分为一级标题、二级标题......

%一级标题
\section{}
%二级标题
\subsection{}
%三级标题
\subsubsection{}

效果图如下图所示:


各级标题

0x01 页眉页脚的设置

先导入宏包

\usepackage{fancyhdr}

设置页眉和页脚

\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
%设置页眉标题
\fancyhead[L]{\slshape \MakeUppercase{Place Title Here}}
\fancyhead[R]{\slshape Student Name}
%设置页码
\fancyfoot[C]{\thepage}

效果图:


页眉
页脚

0x02 文章标题

\begin{titlepage}
\begin{center}
......
\end{center}
\end{titlepage}

效果图:


标题

相关文章

网友评论

      本文标题:LaTex论文结构

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