0%

【LaTeX排版】LaTeX论文模版

本文是对前面LaTeX论文排版文章的总结。前面的几篇文章是分别从论文的几个方面来讲述LaTeX的排版问题,这里综合了前面的内容,给出了论文排版的模版。

模版的使用:

1、首先建立一个main.tex文件,该文件用于管理论文的整体构架,文件代码为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
\documentclass[a4paper,12pt]{book}
\usepackage{ctexcap}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage[super,square,comma,sort&compress]{natbib}%设置参考文献的格式
%%%设置页边距
\usepackage{geometry}
\geometry{left=4cm,right=2cm,top=3cm,bottom=2cm}
\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}% 设置换行
\graphicspath{{pics/},{figs/}}
\usepackage{float}%是图片悬浮


\usepackage{bm}
\usepackage{times}
\usepackage{mathptmx} %设置为罗马体
\usepackage{caption}
\captionsetup{labelsep=space}
%\usepackage[colorlinks,dvipdfm, %电子版时使用这个包
% bookmarksopenlevel=2,
% pdfpagemode=UseNone,
% pdfstartview=FitB,
% linkcolor=black,
% citecolor=blue,
% linkcolor=black,
% hyperindex=true,
% pagebackref=true,
% CJKbookmarks=true,
% colorlinks]{hyperref}

\renewcommand{\captionfont}{\zihao{5}\songti}
\renewcommand\theequation{\thechapter-\arabic{equation}}%公式编号
\usepackage{setspace}%使用间距宏包
\usepackage{comment}
\linespread{1.5}

\CTEXsetup[beforeskip={0pt}]{chapter}
\CTEXsetup[nameformat={\heiti\zihao{3}\centering}]{chapter}%章标题格式
\CTEXsetup[titleformat={\heiti\zihao{3}\centering}]{chapter}%章标题格式
\CTEXsetup[format={\songti\zihao{4}\centering}]{section}% 节标题格式
\CTEXsetup[format={\songti\zihao{-4}}]{subsection}%小节标题格式
\CTEXsetup[format={\songti\zihao{-4}}]{subsubsection}%小节标题格式
\usepackage{titletoc}

\begin{document}\songti\zihao{-4}%设置正文字体格式



\pagenumbering{Roman}

\include{Abstract}
\songti\zihao{-4}
\setcounter{tocdepth}{2}%设置目录深度
\thispagestyle{plain}
\titlecontents{chapter}
[0.0em]
{\songti\zihao{-4}\bfseries\addvspace{10bp minus 0bp}} %\song
{\thecontentslabel\hspace{0.5em}}
{}
{\normalfont\dotfill\textrm{\contentspage[{\bfseries\thecontentspage}]}}
\newgeometry{bottom=3cm,top=3cm}
\tableofcontents
\restoregeometry
%\include{chapter1}

%\include{chapter2}
%\include{chapter3}
%\include{chapter4}
%\include{chapter5}

%\include{thanks}
%\include{appendix}
%\include{reference}

\end{document}

在上面的代码中,我将\include命令都给了注释,可以根据你论文的章节来去掉对应的%。比如说,我的论文有5章,还有致谢、附录和参考文献部分,则我需要将上面代码中include命令前的%去掉。同时,我需要新建chapter1.tex……chapter5.tex来编写1-5章的内容,thanks.tex对应致谢部分,appendix.tex对应附录部分,reference.tex对应参考文献部分。你可以根据实际情况来增、删、改相应的部分。

2、对于每一章的内容,大体形式如下(以第一章chapter1.tex的框架为例):

1
2
3
4
5
6
7
8
9
\chapter{绪论}
\section{研究背景及意义}
\subsection{无线频谱的分配与利用}
\subsection{提高频谱利用效率的方法}
\section{认知无线电概述}
\subsection{认知无线电的定义}
\subsection{认知无线电的关键技术}
\subsection{国内外认知无线电的研究现状}
\section{论文内容及结构}

在上面的每条命令语句下插入该标题的相关内容即可,效果显示如下图:

图1

到现在为止,LaTeX论文排版终于告一段落了,虽然这些文章只讲解了一些简单的问题,但是用来排版毕设论文已经足够了。离毕设答辩都过去半个多月了,由于比较忙,到现在才刚将关于论文排版的文章写完。说也惭愧,英语学习停止了大概一个多月了,下个月要将其补回来。BTW,前天举办了毕业典礼,有幸得到校长颁发学位证的机会,今天学院又进行了授位仪式,是真的要毕业了。

坚持原创技术分享,您的支持将鼓励我继续创作!