LaTeX入门教程
LaTeX入门教程
##引言
由于国外的很多会议都使用LaTeX进行排版,例如自然语言处理顶级会议ACL。因此,为了投国外的期刊与会议,我也开始学习LaTeX。
但是遗憾的是,现有的LaTeX入门教材都太长了,导致我这个想半天搞定它开始写论文的想法付之东流。因此,在这里,只为了能够快速入门LaTeX,本人写了这一篇入门教程,其中只涉及到写论文的基本知识点,让您能够半天搞定LaTeX。
当涉及到高级知识的方面,请自行找“谷哥”和“度娘”。
##LaTeX简介
LaTeX的介绍主要是以下三点:
- LaTeX是一类用于编辑和排版的软件,用于生成PDF文档。
- LaTeX编辑和排版的核心思想在于,通过\section和\paragraph等语句,规定了每一句话在文章中所从属的层次,从而极大方便了对各个层次批量处理。
- LaTeX在使用体验方面,最不易被Word替代的有四个方面:方便美观的数学公式编辑、不会乱动的退格对齐、非所见即所得因此可以在编辑的时候用退格和换行整理思路但生成PDF出来不影响美观、部分导师和刊物不接受Word排版的文章。
##LaTeX软件的安装
由于国内的CTeX非常流行,因此这里可以在cTeX.org下载ctex套装,其中包含MikTeX和WinEit。一键安装即可。
##建立第一个文档
打开WinEdt
,建立一个新文档,在其中输入以下内容:
\documentclass{article}
\begin{document}
hello world!!!
\end{document}
然后进行保存,保存格式为UTF-8
.接着在WinEdt
的工具栏中找到编译按钮,在下拉菜单中选择LeTeX
,并点击进行编译。
如果成功的话,就会得到一个PDF文件,点击工具栏中的放大镜按钮就可以快速查看。
##标题、作者和注释
建立一个新文档,输入以下内容:
\documentclass{article}
\author{My Name}
\title{The Title}
\begin{document}
\maketitle
hello, world % This is comment
\end{document}
并保存为UTF-8
格式,然后编译查看结果。
##章节和段落
建立一个新文档,输入以下内容:
\documentclass{article}
\title{Hello World}
\begin{document}
\maketitle
\section{Hello China} China is in East Asia.
\subsection{Hello Beijing} Beijing is the capital of China.
\subsubsection{Hello Dongcheng District}
\paragraph{Tian'anmen Square}is in the center of Beijing
\subparagraph{Chairman Mao} is in the center of Tian'anmen Square
\subsection{Hello Guangzhou}
\paragraph{Sun Yat-sen University} is the best university in Guangzhou.
\end{document}
其实每一行前面的空格不影响编译生成的PDF的排版结果。因此,是否退格只是个人的爱好。
##加入目录
建立一个新文档,输入以下内容,编译并观察结果:
\documentclass{article}
\begin{document}
\tableofcontents %生成目录
\section{Hello China} China is in East Asia.
\subsection{Hello Beijing} Beijing is the capital of China.
\subsubsection{Hello Dongcheng District}
\paragraph{Hello Tian'anmen Square}is in the center of Beijing
\subparagraph{Hello Chairman Mao} is in the center of Tian'anmen Square
\end{document}
##换行
建立一个新文档,输入以下内容,编译并观察结果:
\documentclass{article}
\begin{document}
Beijing is
the capital
of China.
New York is
the capital
of America.
Amsterdam is \\ the capital \\
of Netherlands.
\end{document}
##数学公式
建立一个新文档,输入以下内容,保存并进行编译,然后观察结果:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
The Newton's second law is F=ma.
The Newton's second law is $F=ma$.
The Newton's second law is
$$F=ma$$
The Newton's second law is
\[F=ma\]
Greek Letters $\eta$ and $\mu$
Fraction $\frac{a}{b}$
Power $a^b$
Subscript $a_b$
Derivate $\frac{\partial y}{\partial t} $
Vector $\vec{n}$
Bold $\mathbf{n}$
To time differential $\dot{F}$
Matrix (lcr here means left, center or right for each column)
\[
\left[
\begin{array}{lcr}
a1 & b22 & c333 \\
d444 & e555555 & f6
\end{array}
\right]
\]
Equations(here \& is the symbol for aligning different rows)
\begin{align}
a+b=c\\
d=e+f+g
\end{align}
\[
\left\{
\begin{aligned}
&a+b=c\\
&d=e+f+g
\end{aligned}
\right.
\]
\end{document}
具体细节需要查看LaTeX的数学符号表。
公式中的空格设定如下:
两个quad空格 a \qquad b a \qquad b 两个m的宽度
quad空格 a \quad b a \quad b 一个m的宽度
大空格 a\ b a\ b 1/3m宽度
中等空格 a\;b a\;b 2/7m宽度
小空格 a\,b a\,b 1/6m宽度
没有空格 ab ab\,
紧贴 a\!b a\!b 缩进1/6m宽度
##插入图片
首先先要搜索一个将图片转成eps
文件的软件,很容易找到,然后要将图片保存为一个名字如figure1.eps。
建立一个新文档,输入以下内容,保存到和图片文件同一个文件夹里,编译并观察现象。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=4.00in,height=3.00in]{figure1.eps}
\end{document}
##简单表格
建立一个新文档,输入以下内容,进行保存编译并观察结果:
\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|}
a & b \\
c & d\\
\end{tabular}
\begin{tabular}{|c|c|}
\hline
a & b \\
\hline
c & d\\
\hline
\end{tabular}
\begin{center}
\begin{tabular}{|c|c|}
\hline
a & b \\ \hline
c & d\\
\hline
\end{tabular}
\end{center}
\end{document}
##总结
到目前为止,你已经可以用LaTeX自带的article模板来书写一篇基本的论文框架了,至少你已经能够用得起来LaTeX了。
在论文从框架到完整的过程中,必然还存在许多的细节问题,比如字体字号,比如图片拼合,比如复杂的表格等等。
那些问题,就请咨询google吧。