学习使用LATEX排版

0.说明

本文使用的LATEX排版工具为CTEX套件,具体可参看上一篇博文。

1.排版实练

1)换行

每行最后加“\\”可进行换行,也可以使用\newline指令。\\换行还可以进行行距控制。

this is a line \\[1cm]
this is a new line

上述内容表示在原来行间距上加上1cm,值可以是负数,表示减去对应的行间距。不使用换行控制,即使进行回车(enter)也不会进行换行。

2)文档类别

先主要介绍“article”与“report",article没有章(chapter),可以用作短文或者小论文,report则是报告或者大论文。

文档结构主要有chapter/section/subsection/等。

3)简单示例

这里为了能对结果pdf进行很好的截图,使用article文档类别,report文档每个chapter会自动分页。test.tex文件内容如下:

 1 \documentclass{article}
 2 \begin{document}
 3 This is the first experience of \LaTeX.
 4 \section{Aesop Fables}
 5 \subsection{The Ant and the Dove}
 6 An ant went to the bank of a river to quench its thirst, and
 7 being carried away by the rush of the stream, was on the
 8 point of drowning.
 9 A Dove sitting on a tree overhanging the water plucked a
10 leaf and let it fall into the stream close to her. The Ant
11 climbed onto it and floated in safety to the bank.
12 \subsection{The Dog in the Manger}
13 A dog lay in a manger, and by his growling and snapping
14 prevented the oxen from eating the hay which had been
15 placed for them.
16 ‘‘What a selfish Dog!’’ said one of them to his companions;
17 ‘‘he cannot eat the hay himself, and yet refuses to allow
18 those to eat who can.’’
19 \section{The Eagle and the Arrow}
20 An eagle sat on a lofty rock, watching the movements of a
21 Hare whom he sought to make his prey.
22 An archer, who saw the Eagle from a place of concealment,
23 took an accurate aim and wounded him mortally.
24 \end{document} 

上述代码编译产生的pdf效果如下图:

解释:第3行被当做引言,从而被自动缩进了。section后为节,subsection后为小结,节和小节被自动使用了响应的格式进行了加粗等设置。

4)加入标题(title)等信息

将test.tex的1-3行改为:

\documentclass{article}
\title{Aesop Fables}
\author{Aesop\thanks{Thanks to the reader.}
\and Nobody\thanks{Thanks to nobody.}}
\date{\today}
\begin{document}
\maketitle
This is the first experience of \LaTeX.

编译的pdf结果如下:

解释:\title指令添加文章标题,\author加入作者名字,\thanks添加致谢,多位作者用\and 进行连接。\date加入日期,title的插入式在preamble区,并且需要在文本区(\begin{document}后)加入\maketitle指令来生成title信息。

5)加入目录

目录的插入非常简单,在上述基础上,在\maketitle指令后加入一行:

\tableofcontents

LATEX会自动根据章节(chapter)/节(section)/小节(subsection)等内容插入目录,此时需要编译两次,一次用于生成toc文件(table of contents),第二次根据toc真正的编入目录。

本文示例加入目录后,结果如下图:

6)摘要

article/report文档类别可以有摘要,可以在\maketitle和\tableofcontents之间插入摘要,如下:

\begin{abstract}
The tale, the Parable, and the Fable are all common and popular
modes of conveying instruction. Each is distinguished by its own
special characteristics.
\end{abstract}

摘要使用\begin{abstract}   \end{abstract}进行标记,摘要会自动进行左右缩排,排版结果如下图:

7)脚注与边注

可以使用\footnote{}加入脚注\marginpar{}加入边注,脚注和边注的内容写在{}内。

修改第一小节内容如下:

An ant\footnote{mayi in chinese} went to the bank of a river to quench its thirst, and being carried away by the rush of the stream, was on the point of drowning.
A Dove\marginpar{Pigeon} sitting on a tree overhanging the water plucked a leaf and let it fall into the stream close to her. The Ant climbed onto it and floated in safety to the bank.

编译后排版结果如下图:

to be coutinued...

时间: 2024-10-21 12:04:41

学习使用LATEX排版的相关文章

学习使用LaTex排版文字输出为pdf(1)

学习用latex写我的简历. 我在ubuntu环境下,先下载所需软件,命令百度就可以. 先创建一个a.tex,写上 1 \documentclass{article} 2 \usepackage{CJK} 3 \begin{document} 4 \begin{CJK}{UTF8}{gbsn} 5 真是一个笨蛋! 6 \end{CJK} 7 \end{document} 然后执行pdflatex a.tex 这样就会有pdf输出,直接用evince a.pdf就可以啦. 功能很多很强大 关于输出

【LaTeX排版】LaTeX论文排版<三>

A picture is worth a thousand words(一图胜千言).图在论文中的重要性不言而喻,本文主要讲解图的制作与插入. 1.图像的插入 图像可以分为两大类:位图和向量图. 位图:也就是点阵图,使用像素的小方块组成网格来表示图像.每个像素都有自己特定的位置和颜色值.一幅图像的像素数量的大小不变,当放大或缩小时,改变的只是像素尺寸的大小.因此放大或缩小时会出现锯齿现象,造成失真.位图还分为:无损压缩和有损压缩.其中,TIFF.PNG.GIF是无损压缩,JPG是有损压缩. 向量

用LATEX 排版编程技术书籍的一些个人经验模板

format.cls 1 \usepackage[centering,paperwidth=180mm,paperheight=230mm,% 2 body={390pt,530pt},marginparsep=10pt,marginpar=50pt]{geometry} 3 \usepackage{color} 4 \usepackage{enumitem} 5 \usepackage{fancyvrb} 6 \usepackage[bottom,perpage,symbol*]{footmi

【LaTeX排版】LaTeX使用--入门基础<一>

经过两个多星期,毕业论文终于写完了.由于自己对Word软件并不是很熟悉,再加上在数模时见识过LaTex的强大之处,于是就决定用LaTex进行论文的排版.使用LaTex可以避免像Word那样换台机器而出现格式错乱的问题. 首先,我们来讲一讲LaTex的优缺点: 优点: 1.排版质量高: 通过LaTex可以对字距.词距.行距.段距以及版面的精确控制.当插入公式时,不会出现Word中出现的行距不同的情况. 2.具有注释功能:在写作和修改论文时,有时会将某些语句.段落和公式删除,可以事后有觉得不妥,这样

【LaTeX排版】LaTeX使用--入门基础<二>

1.在命令之后留一个空格有下列方式: 源文件如下: \documentclass[a4paper,12pt]{book}%采用book类型(中篇论文一般采用这种类型),A4纸,字体为12磅,默认为10磅 \usepackage{ctexcap}%采用中文标题宏包(标题是中文的) %\usepackage{ctex}%采用中文字体宏包(标题是英文的)与ctexcap不能同时使用 \begin{document} {\LaTeX} 是一个排版工具 %命令行后保留空格的三种方法 \par %另起一段,

【LaTeX排版】LaTeX论文模版

本文是对前面LaTeX论文排版文章的总结.前面的几篇文章是分别从论文的几个方面来讲述LaTeX的排版问题,这里综合了前面的内容,给出了论文排版的模版. 模版的使用: 1.首先建立一个main.tex文件,该文件用于管理论文的整体构架,文件代码为: \documentclass[a4paper,12pt]{book} \usepackage{ctexcap} \usepackage{amsmath} \usepackage{graphicx} \usepackage{fancyhdr} \usep

LaTeX排版工具使用

专业的论文,都是用Latex.CTex等相关的工具.那么,用word写论文,缺点在哪? latex 写的东西,最终要编译成pdf格式的.里面的格式,尤其是数学类符号等,比较漂亮.这是word不能比的.latex还有一个最大的特点是,写出来的东西比较规范.比如:要写一篇论文,它规定要按一定的格式,如果是latex,只需要使用他的一个模板,编译出来自然符合他的格式.而如果是word,那就需要每个细节都要注意到,比较麻烦.再有,latex是免费的,word是收费的,所以,很多老外不愿意用word.他们

Latex排版全解

Latex排版全解 LATEX(英语发音:/?le?t?k/ LAY-tek或英语发音:/?lɑ?t?k/ LAH-tek,音译"拉泰赫"),是一种基于TEX的排版系统,由美国电脑学家莱斯利?兰伯特在20世纪80年代初期开发,利用这种格式,即使用户没有排版和程序设计的知识也可以充分发挥由TEX所提供的强大功能.对于生成复杂表格和数学公式,这一点表现得尤为突出.因此它非常适用于生成高印刷质量的科技和数学类文档.这个系统同样适用于生成从简单的邮件到完整书籍的所有其他种类的文档. 和Micr

LaTeX排版指定行列的子图

在写paper时,经常遇到LaTeX排版指定行列的子图形.以2X2子图为例,代码如下: \usepackage{subfig} \begin{figure*}[!htb] \centering \subfloat[Location of Cell Towers]{\includegraphics[width=0.47\textwidth]{figures/geo_tower.pdf}} & \subfloat[Number of Records]{\includegraphics[width=0