├── chapter2 ├── summary.tex ├── section5.tex ├── preamble.tex ├── section4.tex ├── section7.tex ├── section8.tex ├── section6.tex ├── section3.tex~ ├── section9.tex ├── preamble.aux ├── summary.aux ├── section5.aux ├── section2.tex ├── section9.aux ├── section6.aux ├── section8.aux ├── section1.tex ├── section4.aux ├── section3.tex └── section7.aux ├── chapter3 ├── summary.tex ├── preamble.tex ├── section1.tex ├── preamble.aux ├── summary.aux └── section1.aux ├── appendix ├── preamble.tex ├── section2.tex ├── section1.tex ├── preamble.aux └── section1.aux ├── README ├── chapter4 ├── section3.tex ├── preamble.tex ├── section1.tex └── section2.tex ├── book.pdf ├── test ├── icon.png ├── test.pdf ├── Makefile ├── test.out ├── test.toc ├── test.tex └── test.log ├── chapter1.tex ├── chapter1 ├── summary.tex ├── preamble.tex ├── section2.tex ├── section3.tex ├── preamble.aux ├── summary.aux ├── section3.aux ├── section2.aux ├── section1.aux └── section1.tex ├── Makefile ├── preamble.aux ├── book.tex ├── book.out ├── book.aux ├── book.toc ├── preamble.tex ├── chapter2.tex └── book.log /chapter2/summary.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter3/summary.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appendix/preamble.tex: -------------------------------------------------------------------------------- 1 | xxx 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | LaTeX 入门手册 2 | ============== 3 | 4 | -------------------------------------------------------------------------------- /chapter2/section5.tex: -------------------------------------------------------------------------------- 1 | \section{使用box来限制文字的宽度} 2 | 3 | -------------------------------------------------------------------------------- /chapter4/section3.tex: -------------------------------------------------------------------------------- 1 | \section{个性化列表} 2 | TODO 3 | 4 | -------------------------------------------------------------------------------- /book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxnz/lbg/HEAD/book.pdf -------------------------------------------------------------------------------- /test/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxnz/lbg/HEAD/test/icon.png -------------------------------------------------------------------------------- /test/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxnz/lbg/HEAD/test/test.pdf -------------------------------------------------------------------------------- /appendix/section2.tex: -------------------------------------------------------------------------------- 1 | \section{clearpage与newpage的区别} 2 | \begin{description} 3 | \item[newpage] 结束当前页 4 | \item[clearpage] 结束当前页,还可以清除浮动的表格和插图,非常有用。 5 | \end{description} 6 | 7 | -------------------------------------------------------------------------------- /chapter4/preamble.tex: -------------------------------------------------------------------------------- 1 | 以列表的形式安排文字会使得用户亲切。你可以使用一个清晰的结构呈现几种想法。 2 | 通常,有三种列表样式: 3 | \begin{enumerater} 4 | \item{Bulleted lists} 5 | \item{Numbered lists} 6 | \item{Definition lists} 7 | \end{enumerater} 8 | 在这一章中,我们将学习如何创建这种列表。 9 | -------------------------------------------------------------------------------- /chapter1.tex: -------------------------------------------------------------------------------- 1 | \chapter{LaTeX入门} 2 | \begin{lstlisting}[language={[LaTeX]TeX}] 3 | \documentclass={article} 4 | \begin{document} 5 | \end{document} 6 | \end{lstlisting} 7 | \section{了解LaTeX并及其相比传统字处理软件的优缺点} 8 | \section{安装一个包括编辑器在内的完整的LaTeX套件} 9 | \section{写第一份LaTeX文档} 10 | -------------------------------------------------------------------------------- /chapter3/preamble.tex: -------------------------------------------------------------------------------- 1 | 学过了前一章,格式化文本对我们来说已经很简单了。所以,让我们转到整个页面。 2 | 在这一章中,我们将学习: 3 | \begin{itemize} 4 | \item{调整边框} 5 | \item{改变行宽} 6 | \item{区间化文档} 7 | \item{创建一个内容表格} 8 | \item{设计页眉和页脚} 9 | \item{控制分页} 10 | \item{设置脚注并修改样式} 11 | \end{itemize} 12 | 在学习这些的过程中,我们将会对类和包有更深入的认识。 13 | -------------------------------------------------------------------------------- /chapter1/summary.tex: -------------------------------------------------------------------------------- 1 | \section{总结} 2 | 3 | TeX的好处。这将是轮到我们使用的美德 4 | LaTeX来达到最佳的结果。 5 | 此外,我们介绍了: 6 | \begin{itemize} 7 | \item {安装TeX Live} 8 | \item {使用TeXworks编辑器} 9 | \item {创建一份LaTeX文档并产生输出} 10 | \end{itemize} 11 | 现在,我们已经有了一个功能并经过测试的LaTeX系统,我们就可以写我们自己的 12 | LaTeX文档。在下一章中,我们将详细的文本格式。 13 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- 1 | TEXC:=xelatex 2 | test.pdf: test.tex 3 | $(TEXC) $< 4 | $(TEXC) $< 5 | 6 | .PHONY: clean test again 7 | 8 | clean: 9 | rm -rf *.log 10 | rm -rf *.dvi 11 | rm -rf *.aux 12 | rm -rf *.toc 13 | rm -rf *.pdf 14 | test: test.pdf 15 | evince $< 16 | again: test.tex 17 | $(TEXC) $< 18 | -------------------------------------------------------------------------------- /chapter1/preamble.tex: -------------------------------------------------------------------------------- 1 | 你准备好离开“所见即所得”字处理器 2 | 进入真实,可靠,高品质的排版世界了吗? 3 | 好了,让我们一起出发吧! 4 | 5 | 这是伟大的,如果你决定学LaTeX的。这本书将引导你前进的道路来帮助你 6 | 得到最有效地利用它。让我们简单说说关于LaTeX的利益和面临的挑战,然后 7 | 我们应准备的工具。 8 | 在本章中,我们将: 9 | \begin{itemize} 10 | \item {知道LaTeX和谈论字处理器相比的优点和缺点} 11 | \item {LaTeX的软件安装完整的软件包,其中包括一个编辑器} 12 | \item {写我们的第一个LaTeX文档} 13 | \end{itemize} 14 | 好了,我们开始吧。 15 | -------------------------------------------------------------------------------- /chapter2/preamble.tex: -------------------------------------------------------------------------------- 1 | 在上一章中,我们安装了LaTeX和TEXworks的编辑器来编写我们的 2 | 第一个文档。现在,我们将谈论的文档结构,我们 3 | 将重点放在文本的细节和它的格式。 4 | 5 | 在这一章中,我们将: 6 | \begin{itemize} 7 | \item 探讨关于逻辑格式化 8 | \item 学习如何更改字体,文本的形状和风格 9 | \item 使用box来限制文档的宽度 10 | \item 学习如何断行和提高断字 11 | \item 探索对齐和格式化段落 12 | \end{itemize} 13 | 14 | 过工作的例子,并尝试新的功能,我们将学习LaTeX一些基本概念. 15 | 本章的结束,我们将熟悉命令和环境。 16 | 你甚至可以定义自己的命令。 17 | -------------------------------------------------------------------------------- /test/test.out: -------------------------------------------------------------------------------- 1 | \BOOKMARK [-1][-]{part.1}{I 第一部分}{} 2 | \BOOKMARK [0][-]{chapter.1}{测试}{part.1} 3 | \BOOKMARK [1][-]{section.1.1}{hello, world}{chapter.1} 4 | \BOOKMARK [2][-]{subsection.1.1.1}{hell.....}{section.1.1} 5 | \BOOKMARK [-1][-]{part.2}{II 第2部分}{} 6 | \BOOKMARK [0][-]{chapter.2}{2}{part.2} 7 | \BOOKMARK [0][-]{appendix.A}{hello A}{part.2} 8 | \BOOKMARK [0][-]{appendix.B}{B}{part.2} 9 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # File: Makefile 3 | # Author: yunxinyi@gmail.com 4 | # Last Modified: Fri Oct 26 20:28:53 CST 2012 5 | 6 | TEXC:=xelatex 7 | PDFVIEWER:=evince 8 | 9 | book.pdf: book.tex 10 | $(TEXC) $< 11 | $(TEXC) $< 12 | 13 | .PHONY: clean test 14 | 15 | clean: 16 | -find -name '*.aux' -exec rm -f {} \; 17 | -rm -f *.log *.out *.toc *.pdf 18 | test: book.pdf 19 | $(PDFVIEWER) $< 20 | -------------------------------------------------------------------------------- /appendix/section1.tex: -------------------------------------------------------------------------------- 1 | \section{列表} 2 | \begin{enumerate} 3 | \item{概述} 4 | \begin{description} 5 | \item[enumerate] \hfill 6 | 有序列表,会有数字前缀。此行使用hfill填充标签与 7 | 描述之间的空白。 8 | \item[itemize] 使用圆点前缀。 9 | \item[description] 需要在item后的方括号中指定标签 10 | \end{description} 11 | \setcounter{enumi}{4} 12 | \item{标签和计数器} 13 | 枚举的列表计数可以通过其计数器来改变。enumerate提供了四个 14 | 计数器enumi,enumii,enumiii,enumiv对应不同层次的枚举。值的 15 | 改变可以通过setcounter\{enumi\}\{4\}来实现。则会输出5. 16 | 对于itemize而言,无需计数。 17 | \end{enumerate} 18 | -------------------------------------------------------------------------------- /chapter2/section4.tex: -------------------------------------------------------------------------------- 1 | \section{节省事件和精力 自定义命令} 2 | \subsection{Time for action-craeting our first command using it as an abbrevitaion} 3 | \subsection{Gentle spacing after commands} 4 | \subsection{Time for action-adding intellingent spacing to command ouput} 5 | \subsection{creating more universal commands-using arguments} 6 | \subsection{Time for action-creating a macro for formating keywords} 7 | \subsection{Using optional arguments} 8 | \subsection{Time for action-marking keywords with optional formating} 9 | 10 | -------------------------------------------------------------------------------- /chapter1/section2.tex: -------------------------------------------------------------------------------- 1 | \section{安装LaTeX} 2 | 让我们开始安装LaTeX的分布TeX Live中。这种分布是 3 | 适用于Windows,Linux和Mac OS X上,和其他Unix-like的操作系统。 TeX Live中。 4 | 良好的维护,它正在积极发展。 5 | %[] 6 | 另一个很好的和用户友好的Windows是LaTeX的分布 7 | MiKTeX。像任何其他Windows应用程序可以很容易地安装,但它不是 8 | 可用于其他系统,如Linux或Mac OS X,你可以下载 9 | 从http://miktex.org。 10 | 11 | 首先,我们将参观TEX Live的主页,参与调查的安装可能性。 12 | 如果深入研究提供的信息有自由探索的网页。 13 | 打开TEX Live的主页在http://tug.org/texlive。 14 | 15 | 我们将介绍两种安装方式。第一,将在网上和需要互联网 16 | 连接。另一种方法是一个巨大的下载开始,但可以完成离线。 17 | 让我们来看看两种安装方法。 18 | 19 | \subsection{使用网络安装向导安装TeX} 20 | \subsection{离线安装TeX Live} 21 | \subsection{在其他系统上安装} 22 | 23 | -------------------------------------------------------------------------------- /chapter2/section7.tex: -------------------------------------------------------------------------------- 1 | \subsection{Exploring the fine details} 2 | 印刷字体约定可能需要注意一些小细节,也有不同的破折号,且一个点周围的空间可能 3 | 会有所不同,这取决于上下文。之后的空间一些字母可能取决于以下,以至于一些字母, 4 | 甚至可能被接合到一个单一的。这种结构被称为连字。让我们来仔细看看在他们。 5 | \subsection{Understanding ligatures} 6 | \subsection{Choosing the rightdash} 7 | \subsection{Setting dots} 8 | \subsection{Time for action-using differently spaced dots} 9 | \subsection{Time for action-comparing dots to ellipsis} 10 | \subsection{Setting accents} 11 | \subsection{Time for action-experimenting with accents} 12 | \subsection{Using special characters directly in the editor} 13 | \subsection{Time for action-using accents directly} 14 | 15 | -------------------------------------------------------------------------------- /test/test.toc: -------------------------------------------------------------------------------- 1 | \contentsline {part}{I\hspace {1em}第一部分}{V} 2 | \contentsline {chapter}{\numberline {1}测试}{VII} 3 | \contentsline {section}{\numberline {1.1}hello, world}{VII} 4 | \contentsline {subsection}{\numberline {1.1.1}hell.....}{VII} 5 | \contentsline {paragraph}{This is the para title}{VII} 6 | \contentsline {paragraph}{HHelloHelloHelloHelloHelloHelloHelloH}{VII} 7 | \contentsline {paragraph}{HHelloHelloHelloHelloHelloHelloHelloH}{VII} 8 | \contentsline {part}{II\hspace {1em}第2部分}{IX} 9 | \contentsline {chapter}{\numberline {2}2}{XI} 10 | \contentsline {chapter}{\numberline {A}hello A}{XIII} 11 | \contentsline {chapter}{\numberline {B}B}{XV} 12 | -------------------------------------------------------------------------------- /chapter4/section1.tex: -------------------------------------------------------------------------------- 1 | \section{创建一个bulleted list} 2 | 我们将以最简单的列表开始。它只包含了项目,没有数字。每个item被bullet标记。 3 | \subsection{Time for action-listing LaTeX packages} 4 | 我们将创建一个在前面章节中了解的包: 5 | \begin{lstlisting}[language={[LaTeX]TeX}] 6 | \documentclass{article} 7 | \begin{document} 8 | \section*{Useful packages} 9 | LaTeX provides several packages for designing the layout: 10 | \begin{itemize} 11 | \item geometry 12 | \item typearea 13 | \item fancyhdr 14 | \item scrpage2 15 | \item setspace 16 | \end{itemize} 17 | \end{document} 18 | \end{lstlisting} 19 | 没有必要load任何包。我们以一个标题开始接着一些文本。实际列表中,我们 20 | 使用了一个环境叫做itemize。如我们了解的环境,\textbackslash \{itemize\} 21 | 开始,\textbackslash \{itemize\}结束。命令 \textbackslash item 告诉 22 | LaTeX接着的是一个新的条目。每个条目可以包含任何长度的文本,甚至可以 23 | 分段。相当的简单,不是吗? 24 | -------------------------------------------------------------------------------- /chapter2/section8.tex: -------------------------------------------------------------------------------- 1 | \section{Truning off full justification} 2 | \subsection{Time for action-justifying a paragraph to the left} 3 | \subsection{Creating ragged-left text} 4 | \subsection{Time for action-centering a title} 5 | \subsection{Using environments for justification} 6 | 由于具有对应每个声明都有相对应的环境,我们可以在之前的文本中使用 7 | \textbackslash begin\{centering\}...\textbackslash end\{centering\}。 8 | 也可以做类似ragged-right和ragged-left文本。这里也有一些预定义的环境 9 | 做类似的事情,但是同时开始一个新的段落。 10 | \subsection{Time for action-centering verses} 11 | 让我们重用fragment of 诗"Annabel Lee"。这次我们将居中所有erses: 12 | \begin{lstlisting}[language={[LaTeX]TeX}] 13 | \documentclass{article} 14 | \usepackage{url} 15 | \begin{document} 16 | \noindent This is the beginning of a poem 17 | by Edgar Allan Poe: 18 | \begin{center} 19 | \emph{Annabel Lee} 20 | \end{center} 21 | \begin{center} 22 | It was many and many a year ago,\\ 23 | In a kingdom by the sea,\\ 24 | That a maiden there lived whom you may know\\ 25 | By the name of Annabel Lee 26 | \end{center} 27 | The complete poem can be read on 28 | \url{http://www.online-literature.com/poe/576/}. 29 | \end{document} 30 | \end{lstlisting} 31 | 我们使用\textbackslash 开始来避免段落缩进。\textbackslash \{center\}开始了 32 | 居中环境。它开始了一个新段落,留下一些空白to the preceding text。\textbackslash \{center\} 33 | 结束了环境。我们两次使用环境。第二次,我们插入了\textbackslash \textbackslash 34 | 来结束erses。 35 | 36 | 在center环境结束之后,有一些空白接着,下一个段落began at the left margin。 37 | 38 | 对应于ragged-right text的环境 39 | 叫做flushleft, 40 | ragged-left的叫做flushright。 41 | 42 | -------------------------------------------------------------------------------- /chapter1/section3.tex: -------------------------------------------------------------------------------- 1 | \section{写第一份LaTeX文档} 2 | 我们已经安装了TeX和启动编辑器,现在让我们写在深水的一端跳 3 | 我们的第一个LaTeX文档。 4 | \subsection{Time for action-使用TeXworks写我们的第一份文档} 5 | 我们的首要目标是创建一个文档,打印出来只有一句话。我们要使用它 6 | 了解一个LaTeX文档的基本结构。 7 | \begin{enumerate} 8 | \item {点击桌面上的图标,或打开它的启动TEXworks的编辑器 9 | “开始”菜单。} 10 | \item {点击新建按钮} 11 | \item {输入以下内容} 12 | \begin{lstlisting}[language={[LaTeX]TeX}] 13 | \documentclass={article} 14 | \begin{document} 15 | This is our first document. 16 | \end{document} 17 | \end{lstlisting} 18 | \item {点击保存按钮保存。选择要存储的位置,理想是它自己的文件夹。} 19 | \item {在下拉列表中选择TeXworks工具条,选择pdfLaTeX} 20 | \item {点击排版按钮} 21 | \item {输出窗口会自动打开。有一个看看吧:} 22 | \end{enumerate} 23 | 刚刚发生了什么? 24 | 您刚才看到一个LaTeX文档的生命的最初几分钟。其下的时间 25 | 天将由编辑,排版,等。不要忘记保存您的 26 | 记录频繁。 27 | 宣布,违背经典的字处理软件,你可以看不到效果 28 | 立即改变,但结果却只是一个点击即可。 29 | 30 | 31 | \subsubsection{一展身手 - 检查先进的LaTeX的编辑器} 32 | 你有经验的工作与复杂的程序呢?你喜欢使用一个功能丰富的 33 | 强大的编辑器呢?然后看看这些胶乳编辑。访问他们的网站,发现 34 | 截图和了解它们的功能: 35 | \begin{itemize} 36 | \item {TeXnicCenter} 37 | a very powerful editor for Windows, http://texniccenter. 38 | org/ 39 | 40 | \item {Kile} 41 | a user-friendly editor for operating systems with KDE, such as Linux, 42 | http://kile.sourceforge.net/ 43 | 44 | \item {TeXShop} 45 | an easy-to-use and very popular editor for Mac OS X, http://pages. 46 | uoregon.edu/koch/texshop/ 47 | 48 | \item {Texmaker} 49 | a cross-platform editor running on Linux, Mac OS X, Unix, and 50 | Windows systems, http://www.xm1math.net/texmaker/ 51 | 52 | \end{itemize} 53 | 上面提到的编辑器是免费的开源软件。 54 | -------------------------------------------------------------------------------- /chapter2/section6.tex: -------------------------------------------------------------------------------- 1 | \section{Breaking lines and paragraphs} 2 | 通常情况下,当你写的文字,你并不需要关心自动换行。 3 | 只要输入文本与编辑LaTeX会使其适合线和照顾 4 | 的理由。如果你想开始一个新的段落,结果得到一个换行符 5 | 在输出时,只需插入一个空行,然后再继续你的文字。 6 | 现在,我们将找出如何控制自动换行。首先,我们将看到如何提高 7 | 自动断行。然后,我们将学习指令直接插入休息。 8 | \subsection{提高断字(Imporving hyphenation)} 9 | 如果你看一下,你会发现在较长的文本,它是优秀的文字是完全有道理的 10 | LaTeX和如何单词之间的间距被均匀的分布上的线。如果有必要, 11 | LaTeX会划分的话,并把连字符的行结束时,为了打破中的行 12 | 更好的办法。 LaTeX的很好的算法已经使用连字符连接的词,但它可能发生 13 | 它不能找到一个可以接受的方式,将一个字。前面的例子指出了这一点 14 | 问题:打破了词的缩写,提高产量,但LaTex不知道 15 | 划分。我们将找出如何解决这个问题。 16 | \subsection{Improving the justification further} 17 | 如今最流行的TeX编译器是pdfTeX,它直接以PDF格式输出。当xxx写了pdfTeX,他 18 | 使用micro-typographic的兼容性扩展了TeX。当我们直接输出pdf时,我们实际上 19 | 是用的pdfLaTeX,并且我们可以使用microtype包来使用它的特性。 20 | \subsection{Breaking lines manually} 21 | 我们可能会选择结束压倒一切的全自动行。有几个命令 22 | 不同的效果。 23 | \subsection{Preventing line breaks} 24 | 命令\textbackslash linebreak有直接的对应:\textbackslash nolinebreak。此命令 25 | 在当前位置防止断行。像它的对手,它带有一个可选的的参数。如果你写\textbackslash nolinebreak[0], 26 | 则建议不断行。使用1,2,或3使得请求更强大和\textbackslash nolinebreak[4]完全禁止它。 27 | 如果你不提供一个参数,则使用的是后者。已经提到的命令,\textbackslash mbox[文字], 28 | 不仅要禁用断字,也避免了换行的完整文本。 29 | 30 | LaTeX可以在字与字之间的空间进行有意义的断行。符号〜标识词间没有空间断行: 31 | 如果你写Dr. ~Watson, 那么Rr.绝不会出现在行末。 32 | \subsection{Managing line breaks wisely} 33 | 坏断字的文件仍然可以消失的增长,说明一些明智的断字规则将不会做任何伤害, 34 | 但可能被证明是有用的。但只使用\textbackslash\textbackslash,\textbackslash newline, 35 | and \textbackslash linebreak 来调整您的文档的最终版本!当你还在编辑你的文字, 36 | 你不需要担心换行。他们仍然在写作过程中可能会改变。难看理由可能有所变动, 37 | 不干预变得更好。另一方面,如果你手动换行,但后来插入文本之前,其结果可能是 38 | 不必要的短行。 39 | 40 | 所以,不要浪费你的能量格式化而你正在写的文本。 41 | 42 | -------------------------------------------------------------------------------- /chapter3/section1.tex: -------------------------------------------------------------------------------- 1 | \section{定义全局布局} 2 | 我们将写个包含几页的示例文档。我们将在这个文档上练习修改边距,行距,页眉和 3 | 页脚等和其他更多的东西。 4 | \subsection{Time for action-写个包含章节的书} 5 | 我们将开始写一本书。首先,我们将选择一个类,更进一步使用一些填充 6 | 文本来试验页面布局。 7 | \begin{lstlisting}[language={[LaTeX]TeX}] 8 | \documentclass[a4paper,12pt]{book} 9 | \usepackage[english]{babel} 10 | \usepackage{blindtext} 11 | \begin{document} 12 | \chapter{Exploring the page layout} 13 | In this chapter we will study the layout of pages. 14 | \section{Some filler text} 15 | \blindtext 16 | \section{A lot more filler text} 17 | More dummy text will follow. 18 | \subsection{Plenty of filler text} 19 | \blindtext[10] 20 | \end{document} 21 | \end{lstlisting} 22 | 我们选择的文档类型为book。如名字所指示,这个类适合于书一类的文档。书通常是 23 | 两面的,包含章节which usually start at right-hand pages。它们可以有一个前言 24 | 具有一个或多个标题页和一个back matter with bibliography,index等等。book类 25 | 支持所有这些。 26 | 27 | 我们加载了babel类。这对于非英语typesetting 非常有用。 28 | 29 | 即使对于英语,这里也有几个选项: 30 | 31 | USenglish,american, 32 | english,UKenglish,british, 33 | 34 | canadian,australian,and newzealand. 35 | 显然,一些是相同的, 36 | 37 | 例如UKenglish和british。 38 | 39 | 然而,There are differences in hyphenation rules 40 | 41 | between USenglish(american, 42 | english) and UKenglish (british). 43 | 44 | 现在,我们只需要babel来加载blindtext:这个包被开发用来产生填充文本。它需要 45 | babel来探测文档语言。我们向babel声明语言为english,意味这American English。 46 | 47 | 命令\textbackslash chapter产生一个大标题。这个命令总是开始于新的一页。 48 | 49 | 我们已经了解了\textbackslash section命令. 50 | 它是我们的二级标题,产生一个比 51 | 52 | \textbackslash chapter小一点的标题。它自动为每个章节计数。 53 | 54 | 接着是\textbackslash 55 | blindtext,打印一些无意义的文本来填充空间。 56 | 57 | 最后,we refined the sectioning with a \textbackslash subsection 命令和更多的 58 | 59 | -------------------------------------------------------------------------------- /chapter2/section3.tex~: -------------------------------------------------------------------------------- 1 | \section{格式化文本-字体形状和风格} 2 | \subsection{调整字体形状} 3 | \textbackslash emph 斜体 4 | \textbackslash textit 意大利斜体 5 | \textbackslash textbf 粗體 6 | \textbackslash textsl slanted 7 | \textbackslash textsc small caps 8 | 这些可以组合起来使用,例如 \textbackslash textsc\{\textbackslash textbf\{nested\}\} 9 | 也可以重复使用,例如\textbackslash textbf\{\textbackslash textbf\{nested\}\} 10 | %又省略一点。。。 11 | \subsection{选择字体族} 12 | \textbackslash textsf : sans-serif font 13 | \textbackslash texttt : typewriter font 14 | \textbackslash textrm : Roman text - the default font with serifs. 15 | \textbackslash textsf\{LaTeX\ resources on the internet\} 16 | \textbackslash texttt\{http://www.ctan.org\}. 17 | \textsf{LaTeX\ resources on the internet} 18 | The best place for downloading LaTeX related software is CTAN. 19 | Its address is \texttt{http://www.ctan.org}. 20 | \subsection{Time for action-switch to sans-serif and to typewriter fonts} 21 | \subsection{字体切换} 22 | \textbackslash sffamily 23 | \textbackslash rmfamily 24 | Command Declaration Meaning 25 | \textbackslash textrm\{\} \textbackslash rmfamily 26 | \textbackslash textsf\{\} 27 | \textbackslash texttt\{\} 28 | \textbackslash textbf\{\} 29 | \textbackslash textmd\{\} 30 | \textbackslash textit\{\} 31 | \textbackslash textsl\{\} 32 | \textbackslash textsc\{\} 33 | \textbackslash textup\{\} 34 | \textbackslash textnormal\{\} 35 | \subsection{切换字体族} 36 | \subsection{字体命令和声明的小结} 37 | \subsection{划定命令的效果} 38 | \subsection{Time for action-exploring grouping by braces} 39 | \subsection{Time for action-探索字体大小} 40 | \subsection{Using environments} 41 | \subsection{Time for action-使用环境来调整字体大小} 42 | -------------------------------------------------------------------------------- /preamble.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{preamble}{ 3 | \setcounter{page}{1} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{0} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{chapter}{0} 13 | \setcounter{section}{0} 14 | \setcounter{subsection}{0} 15 | \setcounter{subsubsection}{0} 16 | \setcounter{paragraph}{0} 17 | \setcounter{subparagraph}{0} 18 | \setcounter{figure}{0} 19 | \setcounter{table}{0} 20 | \setcounter{zf@famc@Adobe Song Std}{1} 21 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 22 | \setcounter{zf@famc@Adobe Heiti Std}{0} 23 | \setcounter{zf@famc@DejaVu Serif}{0} 24 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 25 | \setcounter{zf@famc@DejaVu Sans}{0} 26 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 27 | \setcounter{zf@famc@LiSu}{0} 28 | \setcounter{zf@famc@YouYuan}{0} 29 | \setcounter{example}{0} 30 | \setcounter{algorithm}{0} 31 | \setcounter{theorem}{0} 32 | \setcounter{definition}{0} 33 | \setcounter{axiom}{0} 34 | \setcounter{property}{0} 35 | \setcounter{proposition}{0} 36 | \setcounter{lemma}{0} 37 | \setcounter{corollary}{0} 38 | \setcounter{remark}{0} 39 | \setcounter{condition}{0} 40 | \setcounter{conclusion}{0} 41 | \setcounter{assumption}{0} 42 | \setcounter{Item}{0} 43 | \setcounter{Hfootnote}{0} 44 | \setcounter{Hy@AnnotLevel}{0} 45 | \setcounter{parentequation}{0} 46 | \setcounter{ContinuedFloat}{0} 47 | \setcounter{KVtest}{0} 48 | \setcounter{subfigure}{0} 49 | \setcounter{subfigure@save}{0} 50 | \setcounter{lofdepth}{1} 51 | \setcounter{subtable}{0} 52 | \setcounter{subtable@save}{0} 53 | \setcounter{lotdepth}{1} 54 | \setcounter{lstnumber}{1} 55 | } 56 | -------------------------------------------------------------------------------- /chapter4/section2.tex: -------------------------------------------------------------------------------- 1 | \section{列表的嵌套} 2 | 当一个列表变长时,我们可以通过分割是它变得清晰明了。我们只是在列表中创建列表。 3 | 建议使用不同的bullet保持列表的层次清晰。LaTeX会自动这样做。 4 | \subsection{Tiem for action-listing packages by topic} 5 | We shall refine the package list by introducing categories: 6 | 1. Refine the aforementioned highlighted itemize environment of our example 7 | in the following way: 8 | \begin{lstlisting}[language={[LaTeX]TeX}] 9 | \begin{itemize} 10 | \item Page layout 11 | \begin{itemize} 12 | \item geometry 13 | \item typearea 14 | \end{itemize} 15 | \item Headers and footers 16 | \begin{itemize} 17 | \item fancyhdr 18 | \item scrpage2 19 | \end{itemize} 20 | \item Line spacing 21 | \begin{itemize} 22 | \item setspace 23 | \end{itemize} 24 | \end{itemize} 25 | \end{lstlisting} 26 | 我们只是简单的在列表中插入了列表。最高可以嵌套四层,否则LaTeX会 27 | 停止并输出错误信息 !LaTeX Error: Too deeply nested. 如我们所见, 28 | 第一曾用bullet标记,第二层用英文段横线。第三曾使用星号*,第四层 29 | 和以后的使用圆点标记。 30 | 31 | 深度嵌套的列表着实少见;如此复杂的结构将会很难阅读。在这种情况下, 32 | it could be a good idea to revise the text structure or at least 33 | spilt the list. 34 | \section{创建一个编号列表} 35 | bulleted lists are useful 如果顺序不重要的话。然而,如果顺序重要的话,我们 36 | 可以给出数字创建有序列表。这将使得读者可以轻松跟着我们的思路。 37 | \subsection{Tiem for action-writing a step-by-step tutorial} 38 | 让我们写个how-to并设计页面布局: 39 | \begin{lstlisting}[language={[LaTeX]TeX}] 40 | \documentclass{article} 41 | \begin{document} 42 | \begin{enumerate} 43 | \item State the paper size by an option to the documentclass 44 | \item Determine the margin dimensions using one of these packages 45 | \begin{itemize} 46 | \item geometry 47 | \item typearea 48 | \end{itemize} 49 | \item Customize header and footer by one of these packages: 50 | \begin{itemize} 51 | 52 | -------------------------------------------------------------------------------- /chapter2/section9.tex: -------------------------------------------------------------------------------- 1 | \section{显示引用} 2 | 想象一下你的作品中有其他作者的引用。如果只是简单的插入到 3 | 文本中的话将会使得难以阅读。一种常用的提高可读性的方式是: 4 | 设置这些文本两边缩进。 5 | \subsection{Time for action-quoting a scientist} 6 | 我们将引用著名物理学家的思想。 7 | \begin{lstlisting}[language={[LaTeX]TeX}] 8 | \documentclass{article} 9 | \begin{document} 10 | Niels Bohr said: ``An expert 11 | is a person who has made 12 | all the mistakes that can be made 13 | in a very narrow field.'' 14 | Albert Einstein said: 15 | \begin{quote} 16 | Anyone who has never made a mistake 17 | has never tried anything new. 18 | \end{quote} 19 | Errors are inevitable. So, 20 | let's be brave trying something new. 21 | \end{document} 22 | \end{lstlisting} 23 | 首先我们使用了行内引用。产生了一个左引号;这个字符也称作backtick。产生了个右 24 | 引号。我们只是键入两个这样的符号来获得双引号。 25 | 26 | 然后我们使用quote 环境来显示引用。我们并没有开始一个新的段落,因为引用已经 27 | 设置了缩进。这就是我们在环境中前后不使用空行的原因。 28 | \subsection{引用更长的文本} 29 | 当你写短的引用的时候,the quote environment 看起来非常好。然而,当你需要引用的 30 | 文本有好几段的时候,你可能会希望获得与环绕文字相通的缩进格式。The quotation 31 | environment将会为你解决问题。 32 | \subsection{Time for action-quioting TeX's benefits} 33 | \begin{lstlisting}[language={[LaTeX]TeX}] 34 | \documentclass{article} 35 | \usepackage{url} 36 | \begin{document} 37 | The authors of the CTAN team listed ten good reasons 38 | for using \TeX. Among them are: 39 | \begin{quotation} 40 | \TeX\ has the best output. What you end with, 41 | the symbols on the page, 42 | is as useable, and beautiful, 43 | as a non-professional can produce. 44 | \TeX\ knows typesetting. As those 45 | plain text samples 46 | show, \TeX's has more sophisticated 47 | typographical algorithms 48 | such as those for making paragraphs 49 | and for hyphenating. 50 | \TeX\ is fast. On today's machines 51 | \end{quotation} 52 | \end{document} 53 | \end{lstlisting} 54 | -------------------------------------------------------------------------------- /appendix/preamble.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{appendix/preamble}{ 3 | \setcounter{page}{47} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{7} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{chapter}{0} 13 | \setcounter{section}{0} 14 | \setcounter{subsection}{0} 15 | \setcounter{subsubsection}{0} 16 | \setcounter{paragraph}{0} 17 | \setcounter{subparagraph}{0} 18 | \setcounter{figure}{0} 19 | \setcounter{table}{0} 20 | \setcounter{zf@famc@Adobe Song Std}{1} 21 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 22 | \setcounter{zf@famc@Adobe Heiti Std}{0} 23 | \setcounter{zf@famc@DejaVu Serif}{0} 24 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 25 | \setcounter{zf@famc@DejaVu Sans}{0} 26 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 27 | \setcounter{zf@famc@LiSu}{0} 28 | \setcounter{zf@famc@YouYuan}{0} 29 | \setcounter{example}{0} 30 | \setcounter{algorithm}{0} 31 | \setcounter{theorem}{0} 32 | \setcounter{definition}{0} 33 | \setcounter{axiom}{0} 34 | \setcounter{property}{0} 35 | \setcounter{proposition}{0} 36 | \setcounter{lemma}{0} 37 | \setcounter{corollary}{0} 38 | \setcounter{remark}{0} 39 | \setcounter{condition}{0} 40 | \setcounter{conclusion}{0} 41 | \setcounter{assumption}{0} 42 | \setcounter{Item}{7} 43 | \setcounter{Hfootnote}{0} 44 | \setcounter{Hy@AnnotLevel}{0} 45 | \setcounter{parentequation}{0} 46 | \setcounter{ContinuedFloat}{0} 47 | \setcounter{KVtest}{0} 48 | \setcounter{subfigure}{0} 49 | \setcounter{subfigure@save}{0} 50 | \setcounter{lofdepth}{1} 51 | \setcounter{subtable}{0} 52 | \setcounter{subtable@save}{0} 53 | \setcounter{lotdepth}{1} 54 | \setcounter{lstnumber}{14} 55 | \setcounter{section@level}{1} 56 | \setcounter{lstlisting}{0} 57 | } 58 | -------------------------------------------------------------------------------- /chapter1/preamble.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{chapter1/preamble}{ 3 | \setcounter{page}{9} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{0} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{chapter}{1} 13 | \setcounter{section}{0} 14 | \setcounter{subsection}{0} 15 | \setcounter{subsubsection}{0} 16 | \setcounter{paragraph}{0} 17 | \setcounter{subparagraph}{0} 18 | \setcounter{figure}{0} 19 | \setcounter{table}{0} 20 | \setcounter{zf@famc@Adobe Song Std}{1} 21 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 22 | \setcounter{zf@famc@Adobe Heiti Std}{0} 23 | \setcounter{zf@famc@DejaVu Serif}{0} 24 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 25 | \setcounter{zf@famc@DejaVu Sans}{0} 26 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 27 | \setcounter{zf@famc@LiSu}{0} 28 | \setcounter{zf@famc@YouYuan}{0} 29 | \setcounter{example}{0} 30 | \setcounter{algorithm}{0} 31 | \setcounter{theorem}{0} 32 | \setcounter{definition}{0} 33 | \setcounter{axiom}{0} 34 | \setcounter{property}{0} 35 | \setcounter{proposition}{0} 36 | \setcounter{lemma}{0} 37 | \setcounter{corollary}{0} 38 | \setcounter{remark}{0} 39 | \setcounter{condition}{0} 40 | \setcounter{conclusion}{0} 41 | \setcounter{assumption}{0} 42 | \setcounter{Item}{0} 43 | \setcounter{Hfootnote}{0} 44 | \setcounter{Hy@AnnotLevel}{0} 45 | \setcounter{parentequation}{0} 46 | \setcounter{ContinuedFloat}{0} 47 | \setcounter{KVtest}{0} 48 | \setcounter{subfigure}{0} 49 | \setcounter{subfigure@save}{0} 50 | \setcounter{lofdepth}{1} 51 | \setcounter{subtable}{0} 52 | \setcounter{subtable@save}{0} 53 | \setcounter{lotdepth}{1} 54 | \setcounter{lstnumber}{1} 55 | \setcounter{section@level}{0} 56 | \setcounter{lstlisting}{0} 57 | } 58 | -------------------------------------------------------------------------------- /chapter2/preamble.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{chapter2/preamble}{ 3 | \setcounter{page}{17} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{7} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{chapter}{2} 13 | \setcounter{section}{0} 14 | \setcounter{subsection}{0} 15 | \setcounter{subsubsection}{0} 16 | \setcounter{paragraph}{0} 17 | \setcounter{subparagraph}{0} 18 | \setcounter{figure}{0} 19 | \setcounter{table}{0} 20 | \setcounter{zf@famc@Adobe Song Std}{1} 21 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 22 | \setcounter{zf@famc@Adobe Heiti Std}{0} 23 | \setcounter{zf@famc@DejaVu Serif}{0} 24 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 25 | \setcounter{zf@famc@DejaVu Sans}{0} 26 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 27 | \setcounter{zf@famc@LiSu}{0} 28 | \setcounter{zf@famc@YouYuan}{0} 29 | \setcounter{example}{0} 30 | \setcounter{algorithm}{0} 31 | \setcounter{theorem}{0} 32 | \setcounter{definition}{0} 33 | \setcounter{axiom}{0} 34 | \setcounter{property}{0} 35 | \setcounter{proposition}{0} 36 | \setcounter{lemma}{0} 37 | \setcounter{corollary}{0} 38 | \setcounter{remark}{0} 39 | \setcounter{condition}{0} 40 | \setcounter{conclusion}{0} 41 | \setcounter{assumption}{0} 42 | \setcounter{Item}{7} 43 | \setcounter{Hfootnote}{0} 44 | \setcounter{Hy@AnnotLevel}{0} 45 | \setcounter{parentequation}{0} 46 | \setcounter{ContinuedFloat}{0} 47 | \setcounter{KVtest}{0} 48 | \setcounter{subfigure}{0} 49 | \setcounter{subfigure@save}{0} 50 | \setcounter{lofdepth}{1} 51 | \setcounter{subtable}{0} 52 | \setcounter{subtable@save}{0} 53 | \setcounter{lotdepth}{1} 54 | \setcounter{lstnumber}{5} 55 | \setcounter{section@level}{1} 56 | \setcounter{lstlisting}{0} 57 | } 58 | -------------------------------------------------------------------------------- /chapter2/summary.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{chapter2/summary}{ 3 | \setcounter{page}{23} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{7} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{chapter}{2} 13 | \setcounter{section}{5} 14 | \setcounter{subsection}{3} 15 | \setcounter{subsubsection}{0} 16 | \setcounter{paragraph}{0} 17 | \setcounter{subparagraph}{0} 18 | \setcounter{figure}{0} 19 | \setcounter{table}{0} 20 | \setcounter{zf@famc@Adobe Song Std}{1} 21 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 22 | \setcounter{zf@famc@Adobe Heiti Std}{0} 23 | \setcounter{zf@famc@DejaVu Serif}{0} 24 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 25 | \setcounter{zf@famc@DejaVu Sans}{0} 26 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 27 | \setcounter{zf@famc@LiSu}{0} 28 | \setcounter{zf@famc@YouYuan}{0} 29 | \setcounter{example}{0} 30 | \setcounter{algorithm}{0} 31 | \setcounter{theorem}{0} 32 | \setcounter{definition}{0} 33 | \setcounter{axiom}{0} 34 | \setcounter{property}{0} 35 | \setcounter{proposition}{0} 36 | \setcounter{lemma}{0} 37 | \setcounter{corollary}{0} 38 | \setcounter{remark}{0} 39 | \setcounter{condition}{0} 40 | \setcounter{conclusion}{0} 41 | \setcounter{assumption}{0} 42 | \setcounter{Item}{7} 43 | \setcounter{Hfootnote}{0} 44 | \setcounter{Hy@AnnotLevel}{0} 45 | \setcounter{parentequation}{0} 46 | \setcounter{ContinuedFloat}{0} 47 | \setcounter{KVtest}{0} 48 | \setcounter{subfigure}{0} 49 | \setcounter{subfigure@save}{0} 50 | \setcounter{lofdepth}{1} 51 | \setcounter{subtable}{0} 52 | \setcounter{subtable@save}{0} 53 | \setcounter{lotdepth}{1} 54 | \setcounter{lstnumber}{20} 55 | \setcounter{section@level}{2} 56 | \setcounter{lstlisting}{0} 57 | } 58 | -------------------------------------------------------------------------------- /chapter3/preamble.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{chapter3/preamble}{ 3 | \setcounter{page}{25} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{7} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{chapter}{3} 13 | \setcounter{section}{0} 14 | \setcounter{subsection}{3} 15 | \setcounter{subsubsection}{0} 16 | \setcounter{paragraph}{0} 17 | \setcounter{subparagraph}{0} 18 | \setcounter{figure}{0} 19 | \setcounter{table}{0} 20 | \setcounter{zf@famc@Adobe Song Std}{1} 21 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 22 | \setcounter{zf@famc@Adobe Heiti Std}{0} 23 | \setcounter{zf@famc@DejaVu Serif}{0} 24 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 25 | \setcounter{zf@famc@DejaVu Sans}{0} 26 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 27 | \setcounter{zf@famc@LiSu}{0} 28 | \setcounter{zf@famc@YouYuan}{0} 29 | \setcounter{example}{0} 30 | \setcounter{algorithm}{0} 31 | \setcounter{theorem}{0} 32 | \setcounter{definition}{0} 33 | \setcounter{axiom}{0} 34 | \setcounter{property}{0} 35 | \setcounter{proposition}{0} 36 | \setcounter{lemma}{0} 37 | \setcounter{corollary}{0} 38 | \setcounter{remark}{0} 39 | \setcounter{condition}{0} 40 | \setcounter{conclusion}{0} 41 | \setcounter{assumption}{0} 42 | \setcounter{Item}{7} 43 | \setcounter{Hfootnote}{0} 44 | \setcounter{Hy@AnnotLevel}{0} 45 | \setcounter{parentequation}{0} 46 | \setcounter{ContinuedFloat}{0} 47 | \setcounter{KVtest}{0} 48 | \setcounter{subfigure}{0} 49 | \setcounter{subfigure@save}{0} 50 | \setcounter{lofdepth}{1} 51 | \setcounter{subtable}{0} 52 | \setcounter{subtable@save}{0} 53 | \setcounter{lotdepth}{1} 54 | \setcounter{lstnumber}{20} 55 | \setcounter{section@level}{2} 56 | \setcounter{lstlisting}{0} 57 | } 58 | -------------------------------------------------------------------------------- /chapter3/summary.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{chapter3/summary}{ 3 | \setcounter{page}{26} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{7} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{chapter}{3} 13 | \setcounter{section}{1} 14 | \setcounter{subsection}{1} 15 | \setcounter{subsubsection}{0} 16 | \setcounter{paragraph}{0} 17 | \setcounter{subparagraph}{0} 18 | \setcounter{figure}{0} 19 | \setcounter{table}{0} 20 | \setcounter{zf@famc@Adobe Song Std}{1} 21 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 22 | \setcounter{zf@famc@Adobe Heiti Std}{0} 23 | \setcounter{zf@famc@DejaVu Serif}{0} 24 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 25 | \setcounter{zf@famc@DejaVu Sans}{0} 26 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 27 | \setcounter{zf@famc@LiSu}{0} 28 | \setcounter{zf@famc@YouYuan}{0} 29 | \setcounter{example}{0} 30 | \setcounter{algorithm}{0} 31 | \setcounter{theorem}{0} 32 | \setcounter{definition}{0} 33 | \setcounter{axiom}{0} 34 | \setcounter{property}{0} 35 | \setcounter{proposition}{0} 36 | \setcounter{lemma}{0} 37 | \setcounter{corollary}{0} 38 | \setcounter{remark}{0} 39 | \setcounter{condition}{0} 40 | \setcounter{conclusion}{0} 41 | \setcounter{assumption}{0} 42 | \setcounter{Item}{7} 43 | \setcounter{Hfootnote}{0} 44 | \setcounter{Hy@AnnotLevel}{0} 45 | \setcounter{parentequation}{0} 46 | \setcounter{ContinuedFloat}{0} 47 | \setcounter{KVtest}{0} 48 | \setcounter{subfigure}{0} 49 | \setcounter{subfigure@save}{0} 50 | \setcounter{lofdepth}{1} 51 | \setcounter{subtable}{0} 52 | \setcounter{subtable@save}{0} 53 | \setcounter{lotdepth}{1} 54 | \setcounter{lstnumber}{14} 55 | \setcounter{section@level}{2} 56 | \setcounter{lstlisting}{0} 57 | } 58 | -------------------------------------------------------------------------------- /chapter1/summary.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {1.4}总结}{13}{section.1.4}} 3 | \@setckpt{chapter1/summary}{ 4 | \setcounter{page}{14} 5 | \setcounter{equation}{0} 6 | \setcounter{enumi}{7} 7 | \setcounter{enumii}{0} 8 | \setcounter{enumiii}{0} 9 | \setcounter{enumiv}{0} 10 | \setcounter{footnote}{0} 11 | \setcounter{mpfootnote}{0} 12 | \setcounter{part}{0} 13 | \setcounter{chapter}{1} 14 | \setcounter{section}{4} 15 | \setcounter{subsection}{0} 16 | \setcounter{subsubsection}{0} 17 | \setcounter{paragraph}{0} 18 | \setcounter{subparagraph}{0} 19 | \setcounter{figure}{0} 20 | \setcounter{table}{0} 21 | \setcounter{zf@famc@Adobe Song Std}{1} 22 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 23 | \setcounter{zf@famc@Adobe Heiti Std}{0} 24 | \setcounter{zf@famc@DejaVu Serif}{0} 25 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 26 | \setcounter{zf@famc@DejaVu Sans}{0} 27 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 28 | \setcounter{zf@famc@LiSu}{0} 29 | \setcounter{zf@famc@YouYuan}{0} 30 | \setcounter{example}{0} 31 | \setcounter{algorithm}{0} 32 | \setcounter{theorem}{0} 33 | \setcounter{definition}{0} 34 | \setcounter{axiom}{0} 35 | \setcounter{property}{0} 36 | \setcounter{proposition}{0} 37 | \setcounter{lemma}{0} 38 | \setcounter{corollary}{0} 39 | \setcounter{remark}{0} 40 | \setcounter{condition}{0} 41 | \setcounter{conclusion}{0} 42 | \setcounter{assumption}{0} 43 | \setcounter{Item}{7} 44 | \setcounter{Hfootnote}{0} 45 | \setcounter{Hy@AnnotLevel}{0} 46 | \setcounter{parentequation}{0} 47 | \setcounter{ContinuedFloat}{0} 48 | \setcounter{KVtest}{0} 49 | \setcounter{subfigure}{0} 50 | \setcounter{subfigure@save}{0} 51 | \setcounter{lofdepth}{1} 52 | \setcounter{subtable}{0} 53 | \setcounter{subtable@save}{0} 54 | \setcounter{lotdepth}{1} 55 | \setcounter{lstnumber}{5} 56 | \setcounter{section@level}{1} 57 | \setcounter{lstlisting}{0} 58 | } 59 | -------------------------------------------------------------------------------- /appendix/section1.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {.1}列表}{47}{section..1}} 3 | \@setckpt{appendix/section1}{ 4 | \setcounter{page}{48} 5 | \setcounter{equation}{0} 6 | \setcounter{enumi}{5} 7 | \setcounter{enumii}{0} 8 | \setcounter{enumiii}{0} 9 | \setcounter{enumiv}{0} 10 | \setcounter{footnote}{0} 11 | \setcounter{mpfootnote}{0} 12 | \setcounter{part}{0} 13 | \setcounter{chapter}{0} 14 | \setcounter{section}{1} 15 | \setcounter{subsection}{0} 16 | \setcounter{subsubsection}{0} 17 | \setcounter{paragraph}{0} 18 | \setcounter{subparagraph}{0} 19 | \setcounter{figure}{0} 20 | \setcounter{table}{0} 21 | \setcounter{zf@famc@Adobe Song Std}{1} 22 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 23 | \setcounter{zf@famc@Adobe Heiti Std}{0} 24 | \setcounter{zf@famc@DejaVu Serif}{0} 25 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 26 | \setcounter{zf@famc@DejaVu Sans}{0} 27 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 28 | \setcounter{zf@famc@LiSu}{0} 29 | \setcounter{zf@famc@YouYuan}{0} 30 | \setcounter{example}{0} 31 | \setcounter{algorithm}{0} 32 | \setcounter{theorem}{0} 33 | \setcounter{definition}{0} 34 | \setcounter{axiom}{0} 35 | \setcounter{property}{0} 36 | \setcounter{proposition}{0} 37 | \setcounter{lemma}{0} 38 | \setcounter{corollary}{0} 39 | \setcounter{remark}{0} 40 | \setcounter{condition}{0} 41 | \setcounter{conclusion}{0} 42 | \setcounter{assumption}{0} 43 | \setcounter{Item}{9} 44 | \setcounter{Hfootnote}{0} 45 | \setcounter{Hy@AnnotLevel}{0} 46 | \setcounter{parentequation}{0} 47 | \setcounter{ContinuedFloat}{0} 48 | \setcounter{KVtest}{0} 49 | \setcounter{subfigure}{0} 50 | \setcounter{subfigure@save}{0} 51 | \setcounter{lofdepth}{1} 52 | \setcounter{subtable}{0} 53 | \setcounter{subtable@save}{0} 54 | \setcounter{lotdepth}{1} 55 | \setcounter{lstnumber}{14} 56 | \setcounter{section@level}{1} 57 | \setcounter{lstlisting}{0} 58 | } 59 | -------------------------------------------------------------------------------- /chapter2/section5.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {2.2}使用box来限制文字的宽度}{18}{section.2.2}} 3 | \@setckpt{chapter2/section5}{ 4 | \setcounter{page}{19} 5 | \setcounter{equation}{0} 6 | \setcounter{enumi}{7} 7 | \setcounter{enumii}{0} 8 | \setcounter{enumiii}{0} 9 | \setcounter{enumiv}{0} 10 | \setcounter{footnote}{0} 11 | \setcounter{mpfootnote}{0} 12 | \setcounter{part}{0} 13 | \setcounter{chapter}{2} 14 | \setcounter{section}{2} 15 | \setcounter{subsection}{0} 16 | \setcounter{subsubsection}{0} 17 | \setcounter{paragraph}{0} 18 | \setcounter{subparagraph}{0} 19 | \setcounter{figure}{0} 20 | \setcounter{table}{0} 21 | \setcounter{zf@famc@Adobe Song Std}{1} 22 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 23 | \setcounter{zf@famc@Adobe Heiti Std}{0} 24 | \setcounter{zf@famc@DejaVu Serif}{0} 25 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 26 | \setcounter{zf@famc@DejaVu Sans}{0} 27 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 28 | \setcounter{zf@famc@LiSu}{0} 29 | \setcounter{zf@famc@YouYuan}{0} 30 | \setcounter{example}{0} 31 | \setcounter{algorithm}{0} 32 | \setcounter{theorem}{0} 33 | \setcounter{definition}{0} 34 | \setcounter{axiom}{0} 35 | \setcounter{property}{0} 36 | \setcounter{proposition}{0} 37 | \setcounter{lemma}{0} 38 | \setcounter{corollary}{0} 39 | \setcounter{remark}{0} 40 | \setcounter{condition}{0} 41 | \setcounter{conclusion}{0} 42 | \setcounter{assumption}{0} 43 | \setcounter{Item}{7} 44 | \setcounter{Hfootnote}{0} 45 | \setcounter{Hy@AnnotLevel}{0} 46 | \setcounter{parentequation}{0} 47 | \setcounter{ContinuedFloat}{0} 48 | \setcounter{KVtest}{0} 49 | \setcounter{subfigure}{0} 50 | \setcounter{subfigure@save}{0} 51 | \setcounter{lofdepth}{1} 52 | \setcounter{subtable}{0} 53 | \setcounter{subtable@save}{0} 54 | \setcounter{lotdepth}{1} 55 | \setcounter{lstnumber}{5} 56 | \setcounter{section@level}{1} 57 | \setcounter{lstlisting}{0} 58 | } 59 | -------------------------------------------------------------------------------- /chapter3/section1.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {3.1}定义全局布局}{25}{section.3.1}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {3.1.1}Time for action-写个包含章节的书}{25}{subsection.3.1.1}} 4 | \@setckpt{chapter3/section1}{ 5 | \setcounter{page}{26} 6 | \setcounter{equation}{0} 7 | \setcounter{enumi}{7} 8 | \setcounter{enumii}{0} 9 | \setcounter{enumiii}{0} 10 | \setcounter{enumiv}{0} 11 | \setcounter{footnote}{0} 12 | \setcounter{mpfootnote}{0} 13 | \setcounter{part}{0} 14 | \setcounter{chapter}{3} 15 | \setcounter{section}{1} 16 | \setcounter{subsection}{1} 17 | \setcounter{subsubsection}{0} 18 | \setcounter{paragraph}{0} 19 | \setcounter{subparagraph}{0} 20 | \setcounter{figure}{0} 21 | \setcounter{table}{0} 22 | \setcounter{zf@famc@Adobe Song Std}{1} 23 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 24 | \setcounter{zf@famc@Adobe Heiti Std}{0} 25 | \setcounter{zf@famc@DejaVu Serif}{0} 26 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 27 | \setcounter{zf@famc@DejaVu Sans}{0} 28 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 29 | \setcounter{zf@famc@LiSu}{0} 30 | \setcounter{zf@famc@YouYuan}{0} 31 | \setcounter{example}{0} 32 | \setcounter{algorithm}{0} 33 | \setcounter{theorem}{0} 34 | \setcounter{definition}{0} 35 | \setcounter{axiom}{0} 36 | \setcounter{property}{0} 37 | \setcounter{proposition}{0} 38 | \setcounter{lemma}{0} 39 | \setcounter{corollary}{0} 40 | \setcounter{remark}{0} 41 | \setcounter{condition}{0} 42 | \setcounter{conclusion}{0} 43 | \setcounter{assumption}{0} 44 | \setcounter{Item}{7} 45 | \setcounter{Hfootnote}{0} 46 | \setcounter{Hy@AnnotLevel}{0} 47 | \setcounter{parentequation}{0} 48 | \setcounter{ContinuedFloat}{0} 49 | \setcounter{KVtest}{0} 50 | \setcounter{subfigure}{0} 51 | \setcounter{subfigure@save}{0} 52 | \setcounter{lofdepth}{1} 53 | \setcounter{subtable}{0} 54 | \setcounter{subtable@save}{0} 55 | \setcounter{lotdepth}{1} 56 | \setcounter{lstnumber}{14} 57 | \setcounter{section@level}{2} 58 | \setcounter{lstlisting}{0} 59 | } 60 | -------------------------------------------------------------------------------- /chapter1/section3.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {1.3}写第一份LaTeX文档}{12}{section.1.3}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.3.1}Time for action-使用TeXworks写我们的第一份文档}{12}{subsection.1.3.1}} 4 | \@writefile{toc}{\contentsline {subsubsection}{一展身手 - 检查先进的LaTeX的编辑器}{12}{section*.2}} 5 | \@setckpt{chapter1/section3}{ 6 | \setcounter{page}{13} 7 | \setcounter{equation}{0} 8 | \setcounter{enumi}{7} 9 | \setcounter{enumii}{0} 10 | \setcounter{enumiii}{0} 11 | \setcounter{enumiv}{0} 12 | \setcounter{footnote}{0} 13 | \setcounter{mpfootnote}{0} 14 | \setcounter{part}{0} 15 | \setcounter{chapter}{1} 16 | \setcounter{section}{3} 17 | \setcounter{subsection}{1} 18 | \setcounter{subsubsection}{0} 19 | \setcounter{paragraph}{0} 20 | \setcounter{subparagraph}{0} 21 | \setcounter{figure}{0} 22 | \setcounter{table}{0} 23 | \setcounter{zf@famc@Adobe Song Std}{1} 24 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 25 | \setcounter{zf@famc@Adobe Heiti Std}{0} 26 | \setcounter{zf@famc@DejaVu Serif}{0} 27 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 28 | \setcounter{zf@famc@DejaVu Sans}{0} 29 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 30 | \setcounter{zf@famc@LiSu}{0} 31 | \setcounter{zf@famc@YouYuan}{0} 32 | \setcounter{example}{0} 33 | \setcounter{algorithm}{0} 34 | \setcounter{theorem}{0} 35 | \setcounter{definition}{0} 36 | \setcounter{axiom}{0} 37 | \setcounter{property}{0} 38 | \setcounter{proposition}{0} 39 | \setcounter{lemma}{0} 40 | \setcounter{corollary}{0} 41 | \setcounter{remark}{0} 42 | \setcounter{condition}{0} 43 | \setcounter{conclusion}{0} 44 | \setcounter{assumption}{0} 45 | \setcounter{Item}{7} 46 | \setcounter{Hfootnote}{0} 47 | \setcounter{Hy@AnnotLevel}{0} 48 | \setcounter{parentequation}{0} 49 | \setcounter{ContinuedFloat}{0} 50 | \setcounter{KVtest}{0} 51 | \setcounter{subfigure}{0} 52 | \setcounter{subfigure@save}{0} 53 | \setcounter{lofdepth}{1} 54 | \setcounter{subtable}{0} 55 | \setcounter{subtable@save}{0} 56 | \setcounter{lotdepth}{1} 57 | \setcounter{lstnumber}{5} 58 | \setcounter{section@level}{3} 59 | \setcounter{lstlisting}{0} 60 | } 61 | -------------------------------------------------------------------------------- /chapter2/section2.tex: -------------------------------------------------------------------------------- 1 | \section{LaTeX如何读取你的输入} 2 | 在我们继续之前,让我们来看看如何LaTeX的理解你写在编辑器中的东西。 3 | \subsection{Time for action-尝试空白、断行和空行的效果} 4 | 我们将采取的第一个例子中,插入空格和换行。 5 | \begin{lstlisting}[language={[LaTeX]TeX}] 6 | \documentclass[a4paper,11pt]{article} 7 | \begin{document} 8 | \title{Example 3} 9 | \author{My name} 10 | \date{January 5, 2011} 11 | \maketitle 12 | \section{What's this?} 13 | This 14 | is 15 | our 16 | second document. 17 | It contains two paragraphs. The first line of a paragraph will be 18 | indented, but not when it follows a heading. 19 | % Here's a comment. 20 | \end{document} 21 | \end{lstlisting} 22 | 2.排版 23 | 3.看看效果 24 | 刚刚发生了什么? 25 | 26 | 虽然我们已经插入了一些空间之间的距离,在输出的话 27 | 保持不变。原因是,LaTeX的就像一个空格将多个空格。 28 | 此外,单个的换行像一个单一的空间具有相同的效果。它不会不管你如何 29 | 安排你的文本编辑器中使用空格或休息时,输出将保持不变。 30 | 一个空行表示一个段落符。如空格,多个空行被视为一个。 31 | 32 | 简单地说,空间分开的话,空行分隔段落。 33 | \subsection{注释源代码} 34 | 您已经看到,在输出的最后一行,似乎缺少。这是因为% 35 | 符号引入了一个评论。一切的百分比,直到行结束的迹象 36 | LaTeX的将被忽略,并不会被打印出来。这使您可以插入笔记 37 | 您的文档。它通常用于在模板中告知用户的模板做什么 38 | 某些地方。还请注意,该行的末尾,通常行为像一个空间,将 39 | 忽略后一个百分号。 40 | %] 41 | 缓解试验的试验和错误 42 | 如果你想暂时禁用命令,它可能有利于插入 43 | 百分号,而不是删除命令。这样一来,你就可以撤消 44 | 除去\%,轻易改变。 45 | %] 46 | 如果百分号这样的行为,我们应该怎样做,如果我们想在我们写100\% 47 | 文字吗?让我们来看看如何做到这一点。 48 | \subsection{输出特殊符号} 49 | 常见的文本大多含有大写和小写字母,数字和标点符号.这些只要简单的输入即可。 50 | 然而,一些字符是保留作为LaTeX的命令;它们不能被直接使用.我们已经遇到了 51 | 这样的字符,除了百分号,还有花括号等。有LaTeX命令来打印这样的符号。 52 | \subsection{Time for action-writing special characters in our text} 53 | 我们将写一个很短的例子打印出量的美元和百分数, 54 | 然后我们会尝试更多的符号: 55 | \begin{enumerate} 56 | \item {创建一个新的文件,并输入以下几行:} 57 | \begin{lstlisting}[language={[LaTeX]TeX}] 58 | \documentclass{article} 59 | \begin{document} 60 | Statement \#1: 61 | 50\% of \$100 makes \$50. 62 | More special symbols are \&, \_, \{ and \}. 63 | \end{document} 64 | \end{lstlisting} 65 | \item {排版并查看输出:} 66 | \end{enumerater} 67 | 刚刚发生了什么? 68 | 69 | 通过这样一个特殊的符号前面加一个反斜杠,我们把它变成一个LaTeX命令。 70 | 此命令打印出该符号的唯一目的。 71 | %[ 72 | 打印一个反斜杠的命令是\textbackslash textbackslash。如果你想 73 | 想知道\textbackslash \textbackslash 可能被用于,它被用来作为一个换行符的快捷方式 74 | 命令。这是一个有点古怪,但换行频频发生,而反斜杠 75 | 很少需要在输出中,因此已经选择了这条捷径。 76 | %] 77 | -------------------------------------------------------------------------------- /chapter1/section2.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {1.2}安装LaTeX}{11}{section.1.2}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.2.1}使用网络安装向导安装TeX}{11}{subsection.1.2.1}} 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.2.2}离线安装TeX Live}{11}{subsection.1.2.2}} 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.2.3}在其他系统上安装}{11}{subsection.1.2.3}} 6 | \@setckpt{chapter1/section2}{ 7 | \setcounter{page}{12} 8 | \setcounter{equation}{0} 9 | \setcounter{enumi}{0} 10 | \setcounter{enumii}{0} 11 | \setcounter{enumiii}{0} 12 | \setcounter{enumiv}{0} 13 | \setcounter{footnote}{0} 14 | \setcounter{mpfootnote}{0} 15 | \setcounter{part}{0} 16 | \setcounter{chapter}{1} 17 | \setcounter{section}{2} 18 | \setcounter{subsection}{3} 19 | \setcounter{subsubsection}{0} 20 | \setcounter{paragraph}{0} 21 | \setcounter{subparagraph}{0} 22 | \setcounter{figure}{0} 23 | \setcounter{table}{0} 24 | \setcounter{zf@famc@Adobe Song Std}{1} 25 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 26 | \setcounter{zf@famc@Adobe Heiti Std}{0} 27 | \setcounter{zf@famc@DejaVu Serif}{0} 28 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 29 | \setcounter{zf@famc@DejaVu Sans}{0} 30 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 31 | \setcounter{zf@famc@LiSu}{0} 32 | \setcounter{zf@famc@YouYuan}{0} 33 | \setcounter{example}{0} 34 | \setcounter{algorithm}{0} 35 | \setcounter{theorem}{0} 36 | \setcounter{definition}{0} 37 | \setcounter{axiom}{0} 38 | \setcounter{property}{0} 39 | \setcounter{proposition}{0} 40 | \setcounter{lemma}{0} 41 | \setcounter{corollary}{0} 42 | \setcounter{remark}{0} 43 | \setcounter{condition}{0} 44 | \setcounter{conclusion}{0} 45 | \setcounter{assumption}{0} 46 | \setcounter{Item}{0} 47 | \setcounter{Hfootnote}{0} 48 | \setcounter{Hy@AnnotLevel}{0} 49 | \setcounter{parentequation}{0} 50 | \setcounter{ContinuedFloat}{0} 51 | \setcounter{KVtest}{0} 52 | \setcounter{subfigure}{0} 53 | \setcounter{subfigure@save}{0} 54 | \setcounter{lofdepth}{1} 55 | \setcounter{subtable}{0} 56 | \setcounter{subtable@save}{0} 57 | \setcounter{lotdepth}{1} 58 | \setcounter{lstnumber}{1} 59 | \setcounter{section@level}{2} 60 | \setcounter{lstlisting}{0} 61 | } 62 | -------------------------------------------------------------------------------- /chapter2/section9.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {2.5}显示引用}{22}{section.2.5}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.1}Time for action-quoting a scientist}{22}{subsection.2.5.1}} 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.2}引用更长的文本}{22}{subsection.2.5.2}} 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.3}Time for action-quioting TeX's benefits}{22}{subsection.2.5.3}} 6 | \@setckpt{chapter2/section9}{ 7 | \setcounter{page}{23} 8 | \setcounter{equation}{0} 9 | \setcounter{enumi}{7} 10 | \setcounter{enumii}{0} 11 | \setcounter{enumiii}{0} 12 | \setcounter{enumiv}{0} 13 | \setcounter{footnote}{0} 14 | \setcounter{mpfootnote}{0} 15 | \setcounter{part}{0} 16 | \setcounter{chapter}{2} 17 | \setcounter{section}{5} 18 | \setcounter{subsection}{3} 19 | \setcounter{subsubsection}{0} 20 | \setcounter{paragraph}{0} 21 | \setcounter{subparagraph}{0} 22 | \setcounter{figure}{0} 23 | \setcounter{table}{0} 24 | \setcounter{zf@famc@Adobe Song Std}{1} 25 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 26 | \setcounter{zf@famc@Adobe Heiti Std}{0} 27 | \setcounter{zf@famc@DejaVu Serif}{0} 28 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 29 | \setcounter{zf@famc@DejaVu Sans}{0} 30 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 31 | \setcounter{zf@famc@LiSu}{0} 32 | \setcounter{zf@famc@YouYuan}{0} 33 | \setcounter{example}{0} 34 | \setcounter{algorithm}{0} 35 | \setcounter{theorem}{0} 36 | \setcounter{definition}{0} 37 | \setcounter{axiom}{0} 38 | \setcounter{property}{0} 39 | \setcounter{proposition}{0} 40 | \setcounter{lemma}{0} 41 | \setcounter{corollary}{0} 42 | \setcounter{remark}{0} 43 | \setcounter{condition}{0} 44 | \setcounter{conclusion}{0} 45 | \setcounter{assumption}{0} 46 | \setcounter{Item}{7} 47 | \setcounter{Hfootnote}{0} 48 | \setcounter{Hy@AnnotLevel}{0} 49 | \setcounter{parentequation}{0} 50 | \setcounter{ContinuedFloat}{0} 51 | \setcounter{KVtest}{0} 52 | \setcounter{subfigure}{0} 53 | \setcounter{subfigure@save}{0} 54 | \setcounter{lofdepth}{1} 55 | \setcounter{subtable}{0} 56 | \setcounter{subtable@save}{0} 57 | \setcounter{lotdepth}{1} 58 | \setcounter{lstnumber}{20} 59 | \setcounter{section@level}{2} 60 | \setcounter{lstlisting}{0} 61 | } 62 | -------------------------------------------------------------------------------- /chapter2/section6.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {2.3}Breaking lines and paragraphs}{19}{section.2.3}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.1}提高断字(Imporving hyphenation)}{19}{subsection.2.3.1}} 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.2}Improving the justification further}{19}{subsection.2.3.2}} 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.3}Breaking lines manually}{19}{subsection.2.3.3}} 6 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.4}Preventing line breaks}{19}{subsection.2.3.4}} 7 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.5}Managing line breaks wisely}{19}{subsection.2.3.5}} 8 | \@setckpt{chapter2/section6}{ 9 | \setcounter{page}{20} 10 | \setcounter{equation}{0} 11 | \setcounter{enumi}{7} 12 | \setcounter{enumii}{0} 13 | \setcounter{enumiii}{0} 14 | \setcounter{enumiv}{0} 15 | \setcounter{footnote}{0} 16 | \setcounter{mpfootnote}{0} 17 | \setcounter{part}{0} 18 | \setcounter{chapter}{2} 19 | \setcounter{section}{3} 20 | \setcounter{subsection}{5} 21 | \setcounter{subsubsection}{0} 22 | \setcounter{paragraph}{0} 23 | \setcounter{subparagraph}{0} 24 | \setcounter{figure}{0} 25 | \setcounter{table}{0} 26 | \setcounter{zf@famc@Adobe Song Std}{1} 27 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 28 | \setcounter{zf@famc@Adobe Heiti Std}{0} 29 | \setcounter{zf@famc@DejaVu Serif}{0} 30 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 31 | \setcounter{zf@famc@DejaVu Sans}{0} 32 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 33 | \setcounter{zf@famc@LiSu}{0} 34 | \setcounter{zf@famc@YouYuan}{0} 35 | \setcounter{example}{0} 36 | \setcounter{algorithm}{0} 37 | \setcounter{theorem}{0} 38 | \setcounter{definition}{0} 39 | \setcounter{axiom}{0} 40 | \setcounter{property}{0} 41 | \setcounter{proposition}{0} 42 | \setcounter{lemma}{0} 43 | \setcounter{corollary}{0} 44 | \setcounter{remark}{0} 45 | \setcounter{condition}{0} 46 | \setcounter{conclusion}{0} 47 | \setcounter{assumption}{0} 48 | \setcounter{Item}{7} 49 | \setcounter{Hfootnote}{0} 50 | \setcounter{Hy@AnnotLevel}{0} 51 | \setcounter{parentequation}{0} 52 | \setcounter{ContinuedFloat}{0} 53 | \setcounter{KVtest}{0} 54 | \setcounter{subfigure}{0} 55 | \setcounter{subfigure@save}{0} 56 | \setcounter{lofdepth}{1} 57 | \setcounter{subtable}{0} 58 | \setcounter{subtable@save}{0} 59 | \setcounter{lotdepth}{1} 60 | \setcounter{lstnumber}{5} 61 | \setcounter{section@level}{2} 62 | \setcounter{lstlisting}{0} 63 | } 64 | -------------------------------------------------------------------------------- /chapter2/section8.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {2.4}Truning off full justification}{21}{section.2.4}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.1}Time for action-justifying a paragraph to the left}{21}{subsection.2.4.1}} 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.2}Creating ragged-left text}{21}{subsection.2.4.2}} 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.3}Time for action-centering a title}{21}{subsection.2.4.3}} 6 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.4}Using environments for justification}{21}{subsection.2.4.4}} 7 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.5}Time for action-centering verses}{21}{subsection.2.4.5}} 8 | \@setckpt{chapter2/section8}{ 9 | \setcounter{page}{22} 10 | \setcounter{equation}{0} 11 | \setcounter{enumi}{7} 12 | \setcounter{enumii}{0} 13 | \setcounter{enumiii}{0} 14 | \setcounter{enumiv}{0} 15 | \setcounter{footnote}{0} 16 | \setcounter{mpfootnote}{0} 17 | \setcounter{part}{0} 18 | \setcounter{chapter}{2} 19 | \setcounter{section}{4} 20 | \setcounter{subsection}{5} 21 | \setcounter{subsubsection}{0} 22 | \setcounter{paragraph}{0} 23 | \setcounter{subparagraph}{0} 24 | \setcounter{figure}{0} 25 | \setcounter{table}{0} 26 | \setcounter{zf@famc@Adobe Song Std}{1} 27 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 28 | \setcounter{zf@famc@Adobe Heiti Std}{0} 29 | \setcounter{zf@famc@DejaVu Serif}{0} 30 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 31 | \setcounter{zf@famc@DejaVu Sans}{0} 32 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 33 | \setcounter{zf@famc@LiSu}{0} 34 | \setcounter{zf@famc@YouYuan}{0} 35 | \setcounter{example}{0} 36 | \setcounter{algorithm}{0} 37 | \setcounter{theorem}{0} 38 | \setcounter{definition}{0} 39 | \setcounter{axiom}{0} 40 | \setcounter{property}{0} 41 | \setcounter{proposition}{0} 42 | \setcounter{lemma}{0} 43 | \setcounter{corollary}{0} 44 | \setcounter{remark}{0} 45 | \setcounter{condition}{0} 46 | \setcounter{conclusion}{0} 47 | \setcounter{assumption}{0} 48 | \setcounter{Item}{7} 49 | \setcounter{Hfootnote}{0} 50 | \setcounter{Hy@AnnotLevel}{0} 51 | \setcounter{parentequation}{0} 52 | \setcounter{ContinuedFloat}{0} 53 | \setcounter{KVtest}{0} 54 | \setcounter{subfigure}{0} 55 | \setcounter{subfigure@save}{0} 56 | \setcounter{lofdepth}{1} 57 | \setcounter{subtable}{0} 58 | \setcounter{subtable@save}{0} 59 | \setcounter{lotdepth}{1} 60 | \setcounter{lstnumber}{18} 61 | \setcounter{section@level}{2} 62 | \setcounter{lstlisting}{0} 63 | } 64 | -------------------------------------------------------------------------------- /chapter1/section1.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {1.1}LaTeX是什么?}{9}{section.1.1}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.1}我们如何受益}{9}{subsection.1.1.1}} 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.2}开源的好处}{9}{subsection.1.1.2}} 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.3}形式与内容的分离}{9}{subsection.1.1.3}} 6 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.4}可移植性}{9}{subsection.1.1.4}} 7 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.5}成果的保护}{10}{subsection.1.1.5}} 8 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.6}对比LaTeX并及其相比传统字处理软件的优缺点}{10}{subsection.1.1.6}} 9 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.7}挑战是什么?}{10}{subsection.1.1.7}} 10 | \@setckpt{chapter1/section1}{ 11 | \setcounter{page}{11} 12 | \setcounter{equation}{0} 13 | \setcounter{enumi}{0} 14 | \setcounter{enumii}{0} 15 | \setcounter{enumiii}{0} 16 | \setcounter{enumiv}{0} 17 | \setcounter{footnote}{0} 18 | \setcounter{mpfootnote}{0} 19 | \setcounter{part}{0} 20 | \setcounter{chapter}{1} 21 | \setcounter{section}{1} 22 | \setcounter{subsection}{7} 23 | \setcounter{subsubsection}{0} 24 | \setcounter{paragraph}{0} 25 | \setcounter{subparagraph}{0} 26 | \setcounter{figure}{0} 27 | \setcounter{table}{0} 28 | \setcounter{zf@famc@Adobe Song Std}{1} 29 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 30 | \setcounter{zf@famc@Adobe Heiti Std}{0} 31 | \setcounter{zf@famc@DejaVu Serif}{0} 32 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 33 | \setcounter{zf@famc@DejaVu Sans}{0} 34 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 35 | \setcounter{zf@famc@LiSu}{0} 36 | \setcounter{zf@famc@YouYuan}{0} 37 | \setcounter{example}{0} 38 | \setcounter{algorithm}{0} 39 | \setcounter{theorem}{0} 40 | \setcounter{definition}{0} 41 | \setcounter{axiom}{0} 42 | \setcounter{property}{0} 43 | \setcounter{proposition}{0} 44 | \setcounter{lemma}{0} 45 | \setcounter{corollary}{0} 46 | \setcounter{remark}{0} 47 | \setcounter{condition}{0} 48 | \setcounter{conclusion}{0} 49 | \setcounter{assumption}{0} 50 | \setcounter{Item}{0} 51 | \setcounter{Hfootnote}{0} 52 | \setcounter{Hy@AnnotLevel}{0} 53 | \setcounter{parentequation}{0} 54 | \setcounter{ContinuedFloat}{0} 55 | \setcounter{KVtest}{0} 56 | \setcounter{subfigure}{0} 57 | \setcounter{subfigure@save}{0} 58 | \setcounter{lofdepth}{1} 59 | \setcounter{subtable}{0} 60 | \setcounter{subtable@save}{0} 61 | \setcounter{lotdepth}{1} 62 | \setcounter{lstnumber}{1} 63 | \setcounter{section@level}{2} 64 | \setcounter{lstlisting}{0} 65 | } 66 | -------------------------------------------------------------------------------- /book.tex: -------------------------------------------------------------------------------- 1 | \documentclass{book} 2 | \include{preamble} 3 | \title{LaTeX入门} 4 | \author{yunxinyi@gmail.com} 5 | \date{2012-10-26} 6 | \begin{document} 7 | \maketitle 8 | \tableofcontents 9 | \chapter{LaTeX入门} 10 | \include{chapter1/preamble} 11 | \include{chapter1/section1} 12 | \include{chapter1/section2} 13 | \include{chapter1/section3} 14 | \include{chapter1/summary} 15 | \chapter{字,句,段的格式化} 16 | \include{chapter2/preamble} 17 | % \include{chapter2/section1} 18 | % \include{chapter2/section2} 19 | % \include{chapter2/section3} 20 | \include{chapter2/section4} 21 | \include{chapter2/section5} 22 | \include{chapter2/section6} 23 | \include{chapter2/section7} 24 | \include{chapter2/section8} 25 | \include{chapter2/section9} 26 | \include{chapter2/summary} 27 | \chapter{页面设计} 28 | \include{chapter3/preamble} 29 | \include{chapter3/section1} 30 | \include{chapter3/summary} 31 | \chapter{创建列表} 32 | \section{项目符号列表} 33 | \section{数字列表} 34 | \section{定义列表} 35 | \chapter{创建表格和插入图片} 36 | \section{以列的方式排列文本和数据} 37 | \section{排版复杂的表格} 38 | \section{在文档中插入图片} 39 | \section{给表格和图片添加标题} 40 | \section{控制图表和表格的布局} 41 | \chapter{交叉引用} 42 | \section{设置引用标签} 43 | \section{区间,脚注,列表条目,表格和其他的引用} 44 | \section{页码的引用及ranges} 45 | \section{使LaTeX对长页面的冗余引用} 46 | \section{引用的自动命名} 47 | \section{创建到外部文档的引用} 48 | \chapter{内容和引用的列表} 49 | \section{决定要插入TOC的标题的级别} 50 | \section{创建并个性化图列表(LOF)和表格列表(LOT)} 51 | \section{将随意的文本和命令插入到TOC和其他列表} 52 | \section{引用和参考书目} 53 | \section{创建目录} 54 | \section{修改所有这些列表的标题} 55 | \chapter{编辑数学公式} 56 | \section{编辑基本公式} 57 | \section{文本中插入公式和公式间插入文本} 58 | \section{等式的中间对齐并编号} 59 | \section{多列等式的对齐} 60 | \section{插入数学符号例如:根号,操作符,希腊字母和箭头} 61 | \section{分数} 62 | \section{表达式的堆叠} 63 | \section{矩阵} 64 | \chapter{字体使用} 65 | \section{为整个文档选择其他字体集} 66 | \section{为特定的形状加载字体包} 67 | \section{如何安装附加字体} 68 | \section{多种字体的使用} 69 | \section{输入文本的编码和输出的字体} 70 | \chapter{创作大型文档} 71 | \section{一个文档分为几个文件} 72 | \section{代码的输入和重用} 73 | \section{swap out document 设置} 74 | \section{编译文档的一部分} 75 | \section{创建一个基于其他sub-files的主文档} 76 | \section{设计标题页} 77 | \section{在标题页使用罗马数字页码} 78 | \section{add a back matter without sectioning numbers} 79 | \chapter{进一步美化文档} 80 | \section{为目录,图标列表和其他的交叉引用加上超链接} 81 | \section{创建书签的导航条} 82 | \section{设置标题} 83 | \section{使用LaTeX的颜色} 84 | \chapter{故障排除} 85 | \section{理解错去信息并修复} 86 | \section{处理警告} 87 | \section{使用LaTeX在编译期间产生的所有信息} 88 | \chapter{使用在线资源} 89 | \appendix 90 | \include{appendix/preamble} 91 | \include{appendix/section1} 92 | \chapter{后记} 93 | \chapter{参考书目} 94 | \end{document} 95 | -------------------------------------------------------------------------------- /chapter2/section1.tex: -------------------------------------------------------------------------------- 1 | \section{理解逻辑格式化} 2 | 在前面的章节中,我们写了一个小例子文件。让我们扩展它使得它变成一个具有 3 | 说明性的例子,以了解典型的文档结构。 4 | \subsection{Time for action-给你的文档添加标题} 5 | 我们将使用第一个例子,插入一些命令使其产生一个漂亮的title。 6 | \begin{lstlisting}[language={[LaTeX]TeX}] 7 | \documentclass[a4paper,11pt]{article} 8 | \begin{document} 9 | \title{Example 2} 10 | \author{My name} 11 | \date{January 5, 2011} 12 | \maketitle 13 | \section{What's this?} 14 | This is our second document. It contains a 15 | title and a section with text. 16 | \end{document} 17 | \end{lstlisting} 18 | \begin{itemize} 19 | \item 我们的文档使用article类。它将使用a4纸和11号基本字体。 20 | \item 标题是"Example 2". 21 | \item 你是作者。 22 | \item 时间是January 5, 2011 23 | \item concerning the content of the document: 24 | \begin{itemize} 25 | \item 开始与标题。 26 | \item 第一section具有标题"What's this?" 27 | \item 接下来的文本是"This is our second document." 28 | \end{itemize} 29 | \end{itemize} 30 | 注意,我们并没有设置标题的字体大小;页眉有设置加粗和居中。这类的格式化是LaTeX 31 | 做的,但是你可以告诉LaTeX具体看起来效果如何。 32 | %[] 33 | 我们并不需要按“保存”按钮。 TEXworks的自动保存 34 | 的文件,如果我们点击排版“按钮。 35 | \subsection{探索文档结构} 36 | 让我们看看细节。一个LaTeX文档中并不是孤立的-通常是基于一个 37 | 多功能的模板。这类基本的模板被称为类(class)。它提供了可定制的 38 | 功能,通常是具有特定的目的性。有些类中有书(book),期刊文章 39 | (journal articles);信件(letter),演示文档(presentation),海报 40 | (poster)和其他很多;还有更多的数百个可靠的类可以在互联网存档, 41 | 在你已经安装了TeX Live之后,在您的计算机上也有很多,在这里,我们 42 | 选择了适用于小型文档的文章(article)类别。 43 | 44 | 第一行用\textbackslash documentclass开始。这个单词之前有反斜杠;这样的单词称为 45 | 命令(command)。我们使用命令制定类(class)和文档属性(document properties): 46 | title,author和date. 47 | 48 | 文档的第一部分称为文档的前言(preamble)。我们在这里选择类,指定属性, 49 | 一般地,在这里制作整个文档范围的定义。 50 | 51 | \textbackslash begin\{document\}标记了前言的结束和真正文档的开始.\textbackslash end\{document\}标记了文档的结束。所有之后的东西都将被LaTeX忽略。在\textbackslash begin...\textbackslash end之间的这样一段代码,被称作环境(environment)。 52 | 53 | 在实际的文档中间,我们使用了\textbackslash maketitle来以一种美观的格式输出标题,作者和日期。通过\textbackslash section命令,我们制作了一个标题, 54 | 更大和更大胆的比普通的文本。然后,我们让一些文本跟进。我们写到这里, 55 | 文档环境,将被打印出来。与此相反,所述前导码永远不会 56 | 产生任何输出。 57 | 58 | 让我们来看看详细的命令。 59 | \subsection{理解LaTeX命令} 60 | LaTeX命令开始一个反斜杠,或大或小的字母。 LaTeX命令 61 | 通常以小写字母和一个描述性的方式命名。但也有例外: 62 | 看到一个反斜杠和一个特殊字符组成的命令。 63 | 命令可能有参数,在大括号或方括号中。 64 | 65 | 调用命令看起来如下: 66 | \textbackslash command 67 | 68 | Or: 69 | 70 | \textbackslash \{argument\} 71 | 72 | Or: 73 | 74 | \textbackslash \[optional argument\] \{argument\} 75 | 76 | 可能有多个参数,每个人在大括号或括号。在大的争论 77 | 括号是必需的。如果一个命令需要一个参数被定义为,一种给予。 78 | 例如,调用\文档类都将是徒劳的,如果我们没有声明一个类名。 79 | %[] 80 | 在方括号中的参数是可选的,他们可能会考虑,但它不是一个 81 | 必须的。如果没有提供可选参数,该命令将使用一个默认的 82 | 1。例如,在第1章中的第一个例子,入门用LaTeX, 83 | 我们写\textbackslash documentclass \{article\}。此文件已排版 84 | 与基地的新细明体的字型大小,因为这是类的默认基本字体大小。 85 | 在第二个文件中,我们写道:\textbackslash documentclass \[ A4paper,11pt\] 86 | \{article\};这样一来,我们替换了默认值与给定值,所以现在 87 | 该文件将被调整为A4纸,使用基本字体大小为11pt。 88 | 89 | 有命令生成的输出尝试的\ LaTeX和设置属性的命令, 90 | 改变字体或布局。一般来说,根据自己的选择命令的名称 91 | 目的。在本章中,我们将有一个更详细的研究,但首先让我们来看看如何LaTeX的 92 | 把我们输入的是什么。 93 | -------------------------------------------------------------------------------- /chapter2/section4.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {2.1}节省事件和精力 自定义命令}{17}{section.2.1}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.1}Time for action-craeting our first command using it as an abbrevitaion}{17}{subsection.2.1.1}} 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.2}Gentle spacing after commands}{17}{subsection.2.1.2}} 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.3}Time for action-adding intellingent spacing to command ouput}{17}{subsection.2.1.3}} 6 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.4}creating more universal commands-using arguments}{17}{subsection.2.1.4}} 7 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.5}Time for action-creating a macro for formating keywords}{17}{subsection.2.1.5}} 8 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.6}Using optional arguments}{17}{subsection.2.1.6}} 9 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.7}Time for action-marking keywords with optional formating}{17}{subsection.2.1.7}} 10 | \@setckpt{chapter2/section4}{ 11 | \setcounter{page}{18} 12 | \setcounter{equation}{0} 13 | \setcounter{enumi}{7} 14 | \setcounter{enumii}{0} 15 | \setcounter{enumiii}{0} 16 | \setcounter{enumiv}{0} 17 | \setcounter{footnote}{0} 18 | \setcounter{mpfootnote}{0} 19 | \setcounter{part}{0} 20 | \setcounter{chapter}{2} 21 | \setcounter{section}{1} 22 | \setcounter{subsection}{7} 23 | \setcounter{subsubsection}{0} 24 | \setcounter{paragraph}{0} 25 | \setcounter{subparagraph}{0} 26 | \setcounter{figure}{0} 27 | \setcounter{table}{0} 28 | \setcounter{zf@famc@Adobe Song Std}{1} 29 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 30 | \setcounter{zf@famc@Adobe Heiti Std}{0} 31 | \setcounter{zf@famc@DejaVu Serif}{0} 32 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 33 | \setcounter{zf@famc@DejaVu Sans}{0} 34 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 35 | \setcounter{zf@famc@LiSu}{0} 36 | \setcounter{zf@famc@YouYuan}{0} 37 | \setcounter{example}{0} 38 | \setcounter{algorithm}{0} 39 | \setcounter{theorem}{0} 40 | \setcounter{definition}{0} 41 | \setcounter{axiom}{0} 42 | \setcounter{property}{0} 43 | \setcounter{proposition}{0} 44 | \setcounter{lemma}{0} 45 | \setcounter{corollary}{0} 46 | \setcounter{remark}{0} 47 | \setcounter{condition}{0} 48 | \setcounter{conclusion}{0} 49 | \setcounter{assumption}{0} 50 | \setcounter{Item}{7} 51 | \setcounter{Hfootnote}{0} 52 | \setcounter{Hy@AnnotLevel}{0} 53 | \setcounter{parentequation}{0} 54 | \setcounter{ContinuedFloat}{0} 55 | \setcounter{KVtest}{0} 56 | \setcounter{subfigure}{0} 57 | \setcounter{subfigure@save}{0} 58 | \setcounter{lofdepth}{1} 59 | \setcounter{subtable}{0} 60 | \setcounter{subtable@save}{0} 61 | \setcounter{lotdepth}{1} 62 | \setcounter{lstnumber}{5} 63 | \setcounter{section@level}{2} 64 | \setcounter{lstlisting}{0} 65 | } 66 | -------------------------------------------------------------------------------- /chapter2/section3.tex: -------------------------------------------------------------------------------- 1 | \section{格式化文本-字体形状和风格} 2 | LaTeX的已经做了一些格式。例如,我们已经看到了部分的标题是 3 | 大于普通的文本和大胆的脸。现在,我们将学习如何修改外观 4 | 自己的文字。 5 | \subsection{Time for action调整字体形状} 6 | 我们将强调一个重要的词在文本中,我们将看到如何使文字出现 7 | 粗体,斜体或倾斜。我们将弄清楚如何突出词语的一部分,一些文字 8 | 这已经强调: 9 | \item {创建新文档写入以下内容:} 10 | \begin{enumerater} 11 | \begin{lstlisting{[LaTeX]TeX}] 12 | \documentclass{article} 13 | \begin{document} 14 | Text can be \emph{emphasized}. 15 | Besides being \textit{italic} words could be \textbf{bold}, 16 | \textsl{slanted} or typeset in \textsc{Small Caps}. 17 | Such commands can be \textit{\textbf{nested}}. 18 | \emph{See how \emph{emphasizing} looks when nested.} 19 | \end{document} 20 | 21 | \end{lstlisting} 22 | \end{enumerater} 23 | 刚刚发生了什么? 24 | 首先,我们使用命令\ EMPH,一个字作为参数传递给该命令。 25 | 这个参数会以斜体字形状,因为这是默认的方式如何LaTeX的排版 26 | 强调文本。 27 | 28 | 29 | 文本格式的命令通常看起来像\ * {参数},其中**代表一个 30 | BF两个字母的缩写,如粗体,斜体,和SL倾斜。这个论点 31 | 像我们所看到的将进行相应格式化。该命令后,随后的 32 | 文字排版,因为它是前命令正是后右大括号 33 | 结束标记的说法。我们检查出来。 34 | 我们嵌套的命令\ textit和\ textbf,这使我们能够实现的 35 | 那些样式和文字的组合都出现了斜体和粗体。 36 | 37 | 38 | 大多数字体命令将显示同样的效果,如果他们被应用两次一样 39 | \ textbf {\ textbf {词}}的话会不会变得更大胆。 \ EMPH行为 40 | 是不同的。我们已经看到,强调文本会显示为斜体,但如果我们用\ EMPH到 41 | 再一块这段文字,它会改变斜体正常字体。想象一下,一个重要的 42 | 定理完全以斜体排版,你应该还是有机会突出 43 | 在这个定理的话。 44 | \ EMPH是所谓的语义标记,因为它的含义是指,不仅对 45 | 文字的外观。 46 | %[ 47 | 两次强调,如粗体和斜体标记在同一 48 | 时间,可能会被认为是有问题的风格。改变 49 | 明智的和一贯的字体形状。 50 | %] 51 | 52 | \subsection{选择字体族} 53 | 我们的例子中,你在本书中看到的标准字体的字体比较。虽然 54 | LaTeX的字体有装饰的外观,这本书的文字字体看起来简单,干净。 55 | 另一种方式是不同的,在我们的代码例子:每封信都具有相同的宽度。让我们来看看 56 | 我们如何能够实现在我们的作品。 57 | \subsection{Time for action-switching to sans-serif and to typewriter fonts} 58 | \textbackslash textsf : sans-serif font 59 | \textbackslash texttt : typewriter font 60 | \textbackslash textrm : Roman text - the default font with serifs. 61 | \textbackslash textsf\{LaTeX\ resources on the internet\} 62 | \textbackslash texttt\{http://www.ctan.org\}. 63 | \textsf{LaTeX\ resources on the internet} 64 | The best place for downloading LaTeX related software is CTAN. 65 | Its address is \texttt{http://www.ctan.org}. 66 | \subsection{Time for action-switch to sans-serif and to typewriter fonts} 67 | \subsection{字体切换} 68 | \textbackslash sffamily 69 | \textbackslash rmfamily 70 | Command Declaration Meaning 71 | \textbackslash textrm\{\} \textbackslash rmfamily 72 | \textbackslash textsf\{\} 73 | \textbackslash texttt\{\} 74 | \textbackslash textbf\{\} 75 | \textbackslash textmd\{\} 76 | \textbackslash textit\{\} 77 | \textbackslash textsl\{\} 78 | \textbackslash textsc\{\} 79 | \textbackslash textup\{\} 80 | \textbackslash textnormal\{\} 81 | \subsection{切换字体族} 82 | \subsection{字体命令和声明的小结} 83 | \subsection{划定命令的效果} 84 | \subsection{Time for action-exploring grouping by braces} 85 | \subsection{Time for action-探索字体大小} 86 | \subsection{Using environments} 87 | \subsection{Time for action-使用环境来调整字体大小} 88 | -------------------------------------------------------------------------------- /chapter2/section7.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.6}Exploring the fine details}{20}{subsection.2.3.6}} 3 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.7}Understanding ligatures}{20}{subsection.2.3.7}} 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.8}Choosing the rightdash}{20}{subsection.2.3.8}} 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.9}Setting dots}{20}{subsection.2.3.9}} 6 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.10}Time for action-using differently spaced dots}{20}{subsection.2.3.10}} 7 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.11}Time for action-comparing dots to ellipsis}{20}{subsection.2.3.11}} 8 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.12}Setting accents}{20}{subsection.2.3.12}} 9 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.13}Time for action-experimenting with accents}{20}{subsection.2.3.13}} 10 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.14}Using special characters directly in the editor}{20}{subsection.2.3.14}} 11 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.15}Time for action-using accents directly}{20}{subsection.2.3.15}} 12 | \@setckpt{chapter2/section7}{ 13 | \setcounter{page}{21} 14 | \setcounter{equation}{0} 15 | \setcounter{enumi}{7} 16 | \setcounter{enumii}{0} 17 | \setcounter{enumiii}{0} 18 | \setcounter{enumiv}{0} 19 | \setcounter{footnote}{0} 20 | \setcounter{mpfootnote}{0} 21 | \setcounter{part}{0} 22 | \setcounter{chapter}{2} 23 | \setcounter{section}{3} 24 | \setcounter{subsection}{15} 25 | \setcounter{subsubsection}{0} 26 | \setcounter{paragraph}{0} 27 | \setcounter{subparagraph}{0} 28 | \setcounter{figure}{0} 29 | \setcounter{table}{0} 30 | \setcounter{zf@famc@Adobe Song Std}{1} 31 | \setcounter{zf@famc@Adobe Kaiti Std}{1} 32 | \setcounter{zf@famc@Adobe Heiti Std}{0} 33 | \setcounter{zf@famc@DejaVu Serif}{0} 34 | \setcounter{zf@famc@DejaVu Sans Mono}{0} 35 | \setcounter{zf@famc@DejaVu Sans}{0} 36 | \setcounter{zf@famc@Adobe Fangsong Std}{0} 37 | \setcounter{zf@famc@LiSu}{0} 38 | \setcounter{zf@famc@YouYuan}{0} 39 | \setcounter{example}{0} 40 | \setcounter{algorithm}{0} 41 | \setcounter{theorem}{0} 42 | \setcounter{definition}{0} 43 | \setcounter{axiom}{0} 44 | \setcounter{property}{0} 45 | \setcounter{proposition}{0} 46 | \setcounter{lemma}{0} 47 | \setcounter{corollary}{0} 48 | \setcounter{remark}{0} 49 | \setcounter{condition}{0} 50 | \setcounter{conclusion}{0} 51 | \setcounter{assumption}{0} 52 | \setcounter{Item}{7} 53 | \setcounter{Hfootnote}{0} 54 | \setcounter{Hy@AnnotLevel}{0} 55 | \setcounter{parentequation}{0} 56 | \setcounter{ContinuedFloat}{0} 57 | \setcounter{KVtest}{0} 58 | \setcounter{subfigure}{0} 59 | \setcounter{subfigure@save}{0} 60 | \setcounter{lofdepth}{1} 61 | \setcounter{subtable}{0} 62 | \setcounter{subtable@save}{0} 63 | \setcounter{lotdepth}{1} 64 | \setcounter{lstnumber}{5} 65 | \setcounter{section@level}{2} 66 | \setcounter{lstlisting}{0} 67 | } 68 | -------------------------------------------------------------------------------- /chapter1/section1.tex: -------------------------------------------------------------------------------- 1 | \section{LaTeX是什么?} 2 | LaTeX是一种文件的排版软件。换句话说,它是一个文件的准备 3 | 系统。 LaTeX是一个文字处理器,但作为一个文档标记语言。 4 | LaTeX是一个自由的,开放源码软件。它最初是由莱斯利·兰波特,是基于 5 | 由Donald Knuth TeX排版引擎。人们常常把它当作只是TeX的,这意味着 6 | LaTeX的。它有着悠久的历史,你可以读到它在http://www.tug.org/whatis.html。 7 | 现在,让我们继续寻找我们如何能够物尽其用它。 8 | \subsection{我们如何受益} 9 | LaTeX是特别适合科学和技术文件。其优越的排版 10 | 数学公式是有口皆碑的。如果你是一个学生或科学家,然后LaTeX是 11 | 最好的选择,即使你不需要它的科研能力,有其他用途 - 12 | 它产生的输出质量非常高,它是非常稳定的,并且处理复杂的文档 13 | 容易不管他们是如何的大。 14 | 进一步显着的优势,LaTeX的交叉引用功能,其自动 15 | 编号和生成的内容,数字和表格,索引,词汇表, 16 | 和参考书目。这是多国语言特定于语言的功能,它能够使用 17 | PostScript和PDF功能。 18 | 除了完美的科学家,LaTeX是非常灵活的,有模板 19 | 信函,简报,票据,哲学书,法律文本,乐谱,甚至对国际象棋 20 | 游戏的符号。数以百计的LaTeX用户已经写了成千上万的模板,样式, 21 | 每一个可能的用途有用的工具。这是网上收集和分类的存档 22 | 服务器。 23 | 你可以受益于开始与它的默认样式,依靠其令人印象深刻的高品质 24 | 其智能的格式,但你可以自由定制和修改的一切。人 25 | TeX的社区已经写了很多的扩展寻址的几乎每一个 26 | 格式化的需要。 27 | \subsection{开源的好处} 28 | LATEX的来源是完全免费的,大家都看得到。这使您可以 29 | 学习和改变一切,从核心的LaTeX的最新扩展包。 30 | 但是,这是什么意思,你作为一个初学者?有一个巨大的LaTeX的社区有很多 31 | 友好,乐于助人的人。即使你不能直接受益于开放的源代码, 32 | 他们可以阅读源代码,并为您提供帮助。只要加入一个LaTeX网络论坛和 33 | 问您的问题有。助手,如果必要的话,挖到LaTeX的来源和在所有的可能性 34 | 中找到一个解决方案为你,有时往往提供了一个重新定义的一个建议一个 35 | 合适的包,默认命令。 36 | 37 | 今天,我们已经从近30年的发展中受益的TeX的社会。 38 | 开源的理念是不可能的,因为每个用户都邀请到研究和改进 39 | 软件和进一步发展。第13章,利用网络资源,将指向 40 | 给社会。 41 | 42 | \subsection{形式与内容的分离} 43 | 的LaTeX的一个基本原则是,作者不应该分心太多 44 | 格式问题。通常情况下,笔者着重逻辑的内容和格式, 45 | 例如,而不是写一章的标题用大号加粗字体,你只是告诉LaTeX的,这是一个 46 | 章节标题,你可以让LaTeX的设计,或者你决定在文件中的 47 | 的标题看起来像什么,只是一次为整个文档的设置。 48 | LaTeX的使用广泛称为类和包的样式文件,因此很容易设计 49 | 并修改的外观整个文档和所有它的细节。 50 | 51 | \subsection{可移植性} 52 | LaTeX是可用于几乎所有的操作系​​统,如Windows,Linux和Mac OS X中,和 53 | 等等。它的文件格式是纯文本可读和可编辑的,在所有操作系统上。 54 | LaTeX会在所有系统上都产生相同的输出。虽然有不同的LaTeX 55 | 所谓的TeX软件包,我们将重点放在TeX Live中,因为这 56 | 适用于Windows,Linux和Mac OS X的分布 57 | LaTeX本身没有图形用户界面,这就是为什么它是如此的原因之一 58 | 便携。您可以选择任何文本编辑器。有很多的编辑,甚至是专业从事LaTeX, 59 | 每一个操作系统。有些编辑器可为多个系统。例如, 60 | TEXworks的运行在Windows,Linux和Mac OS X,这就是原因,我们将使用的原因之一 61 | 它在我们的书。另外一个很重要的原因是,它可能是最好的,适合初学者。 62 | LaTeX的生成PDF输出打印和可读性,在大多数计算机上,看上去是一样的 63 | 无论操作系统。除了PDF格式,它支持DVI,PostScript和HTML 64 | 输出,准备地分布在印刷版和网络,电子屏幕上, 65 | 电子书阅读器或智能手机。 66 | 综上所述,LaTeX是便携式三个方面的来源,它的实施和输出。 67 | \subsection{成果的保护} 68 | LaTeX文档都存储在人类可读的文本格式,而不是在一些不起眼的字 69 | 处理格式,在不同版本的相同的软件,可能会改变。尝试 70 | 打开一个20岁的书面文件与商业的文字处理器。什么您 71 | 现代软件说明了什么?即使你可以读取该文件,其外观肯定会 72 | 比以前不同。 LaTeX的承诺,该文件将永远是可读的, 73 | 将导致在相同的输出。虽然它的进一步发展,它会保持向后 74 | 兼容。 75 | 文字处理,文件可能感染了病毒,恶意宏 76 | 破坏数据。你有没有听到“隐藏”在一个文本文件中的病毒吗? LaTeX是不 77 | 受到病毒的威胁。 78 | 79 | \subsection{对比LaTeX并及其相比传统字处理软件的优缺点} 80 | 我们已经描述的排版系统LaTeX的一些优势 81 | 文字处理软件。 ,LaTeX的鼓励结构化的写作,其他字 82 | 处理器可能会迫使你的工作不一致。他们可能隐藏了真正的格式 83 | 构建和加密​​你的文件,在一些专有的文件格式。相容性是一个很大的 84 | 的问题,甚至在相同的软件版本。 85 | 有一些有趣的文章,可在网上LaTeX的其他软件进行比较。的 86 | 当然,他们表达意见。有些岁,因此不包括在 87 | 最新的软件,但他们讨论重要点,今天仍然有效。你会发现 88 | 它们列在第13章,利用网络资源。 89 | \subsection{挑战是什么?} 90 | 可能是陡峭的学习曲线,但是这本书将帮助你掌握它。 91 | 虽然写的LaTeX看起来像编程,不要害怕。你很快就会知道的 92 | 常用的命令。自动完成和关键字高亮显示的文本编辑器 93 | 我会支持你的。他们甚至可能会提供给你的命令的菜单和对话框。 94 | 你现在认为这将需要很长的时间,直到你将学习以实现可信的结果吗? 95 | 不要担心,这本书会给你一个快速的开始。您将学习实践有很多 96 | 实施例。还有更多的例子可以读取和从互联网上下载。在 97 | 第13章中,我们将探讨互联网资源。 98 | 我们将继续在我们的电脑与安装了LaTeX,。 99 | 100 | -------------------------------------------------------------------------------- /test/test.tex: -------------------------------------------------------------------------------- 1 | \documentclass[UTF-8,hyperref]{book} 2 | \usepackage{graphicx} 3 | \usepackage{fontspec} 4 | \setmainfont{Adobe Fangsong Std R} 5 | \renewcommand{\thepage}{\Roman{page}} 6 | \title{Test} 7 | \author{yunxinyi} 8 | \date{2012 10 26} 9 | \begin{document} 10 | \clearpage 11 | \newcommand\nbvspace[1][3]{\vspace*{\stretch{#1}}} 12 | \newcommand\nbstretchyspace{\spaceskip0.5em plus 0.25em minus 0.25em} 13 | \newcommand{\nbtitlestretch}{\spaceskip0.6em} 14 | \pagestyle{empty} 15 | \begin{center} 16 | \bfseries 17 | \nbvspace[1] 18 | \Huge 19 | {\nbtitlestretch\huge AWK ONE LINERS EXPLAINED} 20 | 21 | 22 | \nbvspace[1] 23 | \normalsize 24 | 25 | 26 | TO WHICH IS ADDED MANY USEFUL ONE\\ 27 | LINES AND CODE SO THAT\\ 28 | YOU CAN AWK LIKE A HAWK 29 | \nbvspace[1] 30 | \small BY\\ 31 | \Large PETERIS KRUMINS\\[0.5em] 32 | \footnotesize AUTHOR OF ''A WORKING ALGEBRA,'' ``WIRELESS TELEGGRAPHY,\\ 33 | ITS HISTORY, THEORY AND PRACTICE,'' ETC., ETC. 34 | 35 | 36 | \nbvspace[2] 37 | 38 | 39 | \includegraphics[width=1.5in]{./icon.png} 40 | \nbvspace[3] 41 | \normalsize 42 | 43 | DOHA\\ 44 | \Large 45 | PUBLISHED IN THE WILD 46 | \nbvspace[1] 47 | \end{center} 48 | \maketitle 49 | \tableofcontents 50 | \markboth{LER}{RR} 51 | \part{第一部分} 52 | \chapter{测试} 53 | \section{hello, world} 54 | \subsection{hell.....} 55 | \paragraph{This is the para title} 56 | this is the content 57 | this is the content 58 | this is the content 59 | this is the content 60 | this is the content 61 | this is the content 62 | Hello 63 | Hello 64 | Hello 65 | Hello 66 | Hello 67 | Hello 68 | Hello 69 | Hello 70 | 71 | 72 | \paragraph{HHelloHelloHelloHelloHelloHelloHelloH} 73 | elloHelloHelloHelloHelloHello 74 | HelloHelloHelloHelloHelloHelloHelloHell 75 | oHelloHelloHelloHelloHelloH 76 | elloHelloHelloHelloHelloHelloHelloHell 77 | oHelloHelloHelloHelloHelloHe 78 | 79 | 80 | \paragraph{HHelloHelloHelloHelloHelloHelloHelloH} 81 | lloHelloHello 82 | HHelloHelloHelloHelloHelloHelloHelloH 83 | elloHelloHelloHelloHelloHello 84 | HelloHelloHelloHelloHelloHelloHelloHell 85 | oHelloHelloHelloHelloHelloH 86 | elloHelloHelloHelloHelloHelloHelloHell 87 | oHelloHelloHelloHelloHelloHe 88 | HelloHelloHelloHelloello 89 | HHelloHelloHelloHelloHelloHelloHelloH 90 | 91 | 92 | elloHelloHelloHelloHelloHello 93 | HelloHelloHelloHelloHelloHelloHelloHell 94 | oHelloHelloHelloHelloHelloH 95 | elloHelloHelloHelloHelloHelloHelloHell 96 | oHelloHelloHelloHelloHelloHe 97 | 98 | 99 | elloHelloHelloHelloHelloHello 100 | HelloHelloHelloHelloHelloHelloHelloHell 101 | oHelloHelloHelloHelloHelloH 102 | elloHelloHelloHelloHelloHelloHelloHell 103 | oHelloHelloHelloHelloHelloHe 104 | 105 | 106 | elloHelloHelloHelloHelloHello 107 | HelloHelloHelloHelloHelloHelloHelloHell 108 | oHelloHelloHelloHelloHelloH 109 | elloHelloHelloHelloHelloHelloHelloHell 110 | oHelloHelloHelloHelloHelloHe 111 | 112 | 113 | elloHelloHelloHelloHelloHello 114 | HelloHelloHelloHelloHelloHelloHelloHell 115 | oHelloHelloHelloHelloHelloH 116 | elloHelloHelloHelloHelloHelloHelloHell 117 | oHelloHelloHelloHelloHelloHe 118 | \part{第2部分} 119 | \chapter{2} 120 | \appendix 121 | \chapter{hello A} 122 | \footnote{This is my first footnote?} 123 | This is appendix A. 124 | \chapter{B} 125 | This is appendix B. 126 | \end{document} 127 | -------------------------------------------------------------------------------- /book.out: -------------------------------------------------------------------------------- 1 | \BOOKMARK [0][]{chapter.1}{1 LaTeX入门}{} 2 | \BOOKMARK [1][]{section.1.1}{1.1 LaTeX是什么?}{chapter.1} 3 | \BOOKMARK [2][]{subsection.1.1.1}{1.1.1 我们如何受益}{section.1.1} 4 | \BOOKMARK [2][]{subsection.1.1.2}{1.1.2 开源的好处}{section.1.1} 5 | \BOOKMARK [2][]{subsection.1.1.3}{1.1.3 形式与内容的分离}{section.1.1} 6 | \BOOKMARK [2][]{subsection.1.1.4}{1.1.4 可移植性}{section.1.1} 7 | \BOOKMARK [2][]{subsection.1.1.5}{1.1.5 成果的保护}{section.1.1} 8 | \BOOKMARK [2][]{subsection.1.1.6}{1.1.6 对比LaTeX并及其相比传统字处理软件的优缺点}{section.1.1} 9 | \BOOKMARK [2][]{subsection.1.1.7}{1.1.7 挑战是什么?}{section.1.1} 10 | \BOOKMARK [1][]{section.1.2}{1.2 安装LaTeX}{chapter.1} 11 | \BOOKMARK [2][]{subsection.1.2.1}{1.2.1 使用网络安装向导安装TeX}{section.1.2} 12 | \BOOKMARK [2][]{subsection.1.2.2}{1.2.2 离线安装TeX Live}{section.1.2} 13 | \BOOKMARK [2][]{subsection.1.2.3}{1.2.3 在其他系统上安装}{section.1.2} 14 | \BOOKMARK [1][]{section.1.3}{1.3 写第一份LaTeX文档}{chapter.1} 15 | \BOOKMARK [2][]{subsection.1.3.1}{1.3.1 Time for action-使用TeXworks写我们的第一份文档}{section.1.3} 16 | \BOOKMARK [1][]{section.1.4}{1.4 总结}{chapter.1} 17 | \BOOKMARK [0][]{chapter.2}{2 字,句,段的格式化}{} 18 | \BOOKMARK [1][]{section.2.1}{2.1 节省事件和精力 自定义命令}{chapter.2} 19 | \BOOKMARK [2][]{subsection.2.1.1}{2.1.1 Time for action-craeting our first command using it as an abbrevitaion}{section.2.1} 20 | \BOOKMARK [2][]{subsection.2.1.2}{2.1.2 Gentle spacing after commands}{section.2.1} 21 | \BOOKMARK [2][]{subsection.2.1.3}{2.1.3 Time for action-adding intellingent spacing to command ouput}{section.2.1} 22 | \BOOKMARK [2][]{subsection.2.1.4}{2.1.4 creating more universal commands-using arguments}{section.2.1} 23 | \BOOKMARK [2][]{subsection.2.1.5}{2.1.5 Time for action-creating a macro for formating keywords}{section.2.1} 24 | \BOOKMARK [2][]{subsection.2.1.6}{2.1.6 Using optional arguments}{section.2.1} 25 | \BOOKMARK [2][]{subsection.2.1.7}{2.1.7 Time for action-marking keywords with optional formating}{section.2.1} 26 | \BOOKMARK [1][]{section.2.2}{2.2 使用box来限制文字的宽度}{chapter.2} 27 | \BOOKMARK [1][]{section.2.3}{2.3 Breaking lines and paragraphs}{chapter.2} 28 | \BOOKMARK [2][]{subsection.2.3.1}{2.3.1 提高断字\(Imporving hyphenation\)}{section.2.3} 29 | \BOOKMARK [2][]{subsection.2.3.2}{2.3.2 Improving the justification further}{section.2.3} 30 | \BOOKMARK [2][]{subsection.2.3.3}{2.3.3 Breaking lines manually}{section.2.3} 31 | \BOOKMARK [2][]{subsection.2.3.4}{2.3.4 Preventing line breaks}{section.2.3} 32 | \BOOKMARK [2][]{subsection.2.3.5}{2.3.5 Managing line breaks wisely}{section.2.3} 33 | \BOOKMARK [2][]{subsection.2.3.6}{2.3.6 Exploring the fine details}{section.2.3} 34 | \BOOKMARK [2][]{subsection.2.3.7}{2.3.7 Understanding ligatures}{section.2.3} 35 | \BOOKMARK [2][]{subsection.2.3.8}{2.3.8 Choosing the rightdash}{section.2.3} 36 | \BOOKMARK [2][]{subsection.2.3.9}{2.3.9 Setting dots}{section.2.3} 37 | \BOOKMARK [2][]{subsection.2.3.10}{2.3.10 Time for action-using differently spaced dots}{section.2.3} 38 | \BOOKMARK [2][]{subsection.2.3.11}{2.3.11 Time for action-comparing dots to ellipsis}{section.2.3} 39 | \BOOKMARK [2][]{subsection.2.3.12}{2.3.12 Setting accents}{section.2.3} 40 | \BOOKMARK [2][]{subsection.2.3.13}{2.3.13 Time for action-experimenting with accents}{section.2.3} 41 | \BOOKMARK [2][]{subsection.2.3.14}{2.3.14 Using special characters directly in the editor}{section.2.3} 42 | \BOOKMARK [2][]{subsection.2.3.15}{2.3.15 Time for action-using accents directly}{section.2.3} 43 | \BOOKMARK [1][]{section.2.4}{2.4 Truning off full justification}{chapter.2} 44 | \BOOKMARK [2][]{subsection.2.4.1}{2.4.1 Time for action-justifying a paragraph to the left}{section.2.4} 45 | \BOOKMARK [2][]{subsection.2.4.2}{2.4.2 Creating ragged-left text}{section.2.4} 46 | \BOOKMARK [2][]{subsection.2.4.3}{2.4.3 Time for action-centering a title}{section.2.4} 47 | \BOOKMARK [2][]{subsection.2.4.4}{2.4.4 Using environments for justification}{section.2.4} 48 | \BOOKMARK [2][]{subsection.2.4.5}{2.4.5 Time for action-centering verses}{section.2.4} 49 | \BOOKMARK [1][]{section.2.5}{2.5 显示引用}{chapter.2} 50 | \BOOKMARK [2][]{subsection.2.5.1}{2.5.1 Time for action-quoting a scientist}{section.2.5} 51 | \BOOKMARK [2][]{subsection.2.5.2}{2.5.2 引用更长的文本}{section.2.5} 52 | \BOOKMARK [2][]{subsection.2.5.3}{2.5.3 Time for action-quioting TeX's benefits}{section.2.5} 53 | \BOOKMARK [0][]{chapter.3}{3 页面设计}{} 54 | \BOOKMARK [1][]{section.3.1}{3.1 定义全局布局}{chapter.3} 55 | \BOOKMARK [2][]{subsection.3.1.1}{3.1.1 Time for action-写个包含章节的书}{section.3.1} 56 | \BOOKMARK [0][]{chapter.4}{4 创建列表}{} 57 | \BOOKMARK [1][]{section.4.1}{4.1 项目符号列表}{chapter.4} 58 | \BOOKMARK [1][]{section.4.2}{4.2 数字列表}{chapter.4} 59 | \BOOKMARK [1][]{section.4.3}{4.3 定义列表}{chapter.4} 60 | \BOOKMARK [0][]{chapter.5}{5 创建表格和插入图片}{} 61 | \BOOKMARK [1][]{section.5.1}{5.1 以列的方式排列文本和数据}{chapter.5} 62 | \BOOKMARK [1][]{section.5.2}{5.2 排版复杂的表格}{chapter.5} 63 | \BOOKMARK [1][]{section.5.3}{5.3 在文档中插入图片}{chapter.5} 64 | \BOOKMARK [1][]{section.5.4}{5.4 给表格和图片添加标题}{chapter.5} 65 | \BOOKMARK [1][]{section.5.5}{5.5 控制图表和表格的布局}{chapter.5} 66 | \BOOKMARK [0][]{chapter.6}{6 交叉引用}{} 67 | \BOOKMARK [1][]{section.6.1}{6.1 设置引用标签}{chapter.6} 68 | \BOOKMARK [1][]{section.6.2}{6.2 区间,脚注,列表条目,表格和其他的引用}{chapter.6} 69 | \BOOKMARK [1][]{section.6.3}{6.3 页码的引用及ranges}{chapter.6} 70 | \BOOKMARK [1][]{section.6.4}{6.4 使LaTeX对长页面的冗余引用}{chapter.6} 71 | \BOOKMARK [1][]{section.6.5}{6.5 引用的自动命名}{chapter.6} 72 | \BOOKMARK [1][]{section.6.6}{6.6 创建到外部文档的引用}{chapter.6} 73 | \BOOKMARK [0][]{chapter.7}{7 内容和引用的列表}{} 74 | \BOOKMARK [1][]{section.7.1}{7.1 决定要插入TOC的标题的级别}{chapter.7} 75 | \BOOKMARK [1][]{section.7.2}{7.2 创建并个性化图列表\(LOF\)和表格列表\(LOT\)}{chapter.7} 76 | \BOOKMARK [1][]{section.7.3}{7.3 将随意的文本和命令插入到TOC和其他列表}{chapter.7} 77 | \BOOKMARK [1][]{section.7.4}{7.4 引用和参考书目}{chapter.7} 78 | \BOOKMARK [1][]{section.7.5}{7.5 创建目录}{chapter.7} 79 | \BOOKMARK [1][]{section.7.6}{7.6 修改所有这些列表的标题}{chapter.7} 80 | \BOOKMARK [0][]{chapter.8}{8 编辑数学公式}{} 81 | \BOOKMARK [1][]{section.8.1}{8.1 编辑基本公式}{chapter.8} 82 | \BOOKMARK [1][]{section.8.2}{8.2 文本中插入公式和公式间插入文本}{chapter.8} 83 | \BOOKMARK [1][]{section.8.3}{8.3 等式的中间对齐并编号}{chapter.8} 84 | \BOOKMARK [1][]{section.8.4}{8.4 多列等式的对齐}{chapter.8} 85 | \BOOKMARK [1][]{section.8.5}{8.5 插入数学符号例如:根号,操作符,希腊字母和箭头}{chapter.8} 86 | \BOOKMARK [1][]{section.8.6}{8.6 分数}{chapter.8} 87 | \BOOKMARK [1][]{section.8.7}{8.7 表达式的堆叠}{chapter.8} 88 | \BOOKMARK [1][]{section.8.8}{8.8 矩阵}{chapter.8} 89 | \BOOKMARK [0][]{chapter.9}{9 字体使用}{} 90 | \BOOKMARK [1][]{section.9.1}{9.1 为整个文档选择其他字体集}{chapter.9} 91 | \BOOKMARK [1][]{section.9.2}{9.2 为特定的形状加载字体包}{chapter.9} 92 | \BOOKMARK [1][]{section.9.3}{9.3 如何安装附加字体}{chapter.9} 93 | \BOOKMARK [1][]{section.9.4}{9.4 多种字体的使用}{chapter.9} 94 | \BOOKMARK [1][]{section.9.5}{9.5 输入文本的编码和输出的字体}{chapter.9} 95 | \BOOKMARK [0][]{chapter.10}{10 创作大型文档}{} 96 | \BOOKMARK [1][]{section.10.1}{10.1 一个文档分为几个文件}{chapter.10} 97 | \BOOKMARK [1][]{section.10.2}{10.2 代码的输入和重用}{chapter.10} 98 | \BOOKMARK [1][]{section.10.3}{10.3 swap out document 设置}{chapter.10} 99 | \BOOKMARK [1][]{section.10.4}{10.4 编译文档的一部分}{chapter.10} 100 | \BOOKMARK [1][]{section.10.5}{10.5 创建一个基于其他sub-files的主文档}{chapter.10} 101 | \BOOKMARK [1][]{section.10.6}{10.6 设计标题页}{chapter.10} 102 | \BOOKMARK [1][]{section.10.7}{10.7 在标题页使用罗马数字页码}{chapter.10} 103 | \BOOKMARK [1][]{section.10.8}{10.8 add a back matter without sectioning numbers}{chapter.10} 104 | \BOOKMARK [0][]{chapter.11}{11 进一步美化文档}{} 105 | \BOOKMARK [1][]{section.11.1}{11.1 为目录,图标列表和其他的交叉引用加上超链接}{chapter.11} 106 | \BOOKMARK [1][]{section.11.2}{11.2 创建书签的导航条}{chapter.11} 107 | \BOOKMARK [1][]{section.11.3}{11.3 设置标题}{chapter.11} 108 | \BOOKMARK [1][]{section.11.4}{11.4 使用LaTeX的颜色}{chapter.11} 109 | \BOOKMARK [0][]{chapter.12}{12 故障排除}{} 110 | \BOOKMARK [1][]{section.12.1}{12.1 理解错去信息并修复}{chapter.12} 111 | \BOOKMARK [1][]{section.12.2}{12.2 处理警告}{chapter.12} 112 | \BOOKMARK [1][]{section.12.3}{12.3 使用LaTeX在编译期间产生的所有信息}{chapter.12} 113 | \BOOKMARK [0][]{chapter.13}{13 使用在线资源}{} 114 | \BOOKMARK [1][]{section..1}{.1 列表}{chapter.13} 115 | \BOOKMARK [0][]{appendix.A}{A 后记}{} 116 | \BOOKMARK [0][]{appendix.B}{B 参考书目}{} 117 | -------------------------------------------------------------------------------- /book.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \ifx\hyper@anchor\@undefined 3 | \global \let \oldcontentsline\contentsline 4 | \gdef \contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} 5 | \global \let \oldnewlabel\newlabel 6 | \gdef \newlabel#1#2{\newlabelxx{#1}#2} 7 | \gdef \newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} 8 | \AtEndDocument{\let \contentsline\oldcontentsline 9 | \let \newlabel\oldnewlabel} 10 | \else 11 | \global \let \hyper@last\relax 12 | \fi 13 | 14 | \providecommand*\HyPL@Entry[1]{} 15 | \bibstyle{unsrt} 16 | \HyPL@Entry{0<>} 17 | \@writefile{toc}{\contentsline {chapter}{\numberline {1}LaTeX入门}{7}{chapter.1}} 18 | \@writefile{lof}{\addvspace {10\p@ }} 19 | \@writefile{lot}{\addvspace {10\p@ }} 20 | \@input{chapter1/preamble.aux} 21 | \@input{chapter1/section1.aux} 22 | \@input{chapter1/section2.aux} 23 | \@input{chapter1/section3.aux} 24 | \@input{chapter1/summary.aux} 25 | \@writefile{toc}{\contentsline {chapter}{\numberline {2}字,句,段的格式化}{15}{chapter.2}} 26 | \@writefile{lof}{\addvspace {10\p@ }} 27 | \@writefile{lot}{\addvspace {10\p@ }} 28 | \@input{chapter2/preamble.aux} 29 | \@input{chapter2/section4.aux} 30 | \@input{chapter2/section5.aux} 31 | \@input{chapter2/section6.aux} 32 | \@input{chapter2/section7.aux} 33 | \@input{chapter2/section8.aux} 34 | \@input{chapter2/section9.aux} 35 | \@input{chapter2/summary.aux} 36 | \@writefile{toc}{\contentsline {chapter}{\numberline {3}页面设计}{23}{chapter.3}} 37 | \@writefile{lof}{\addvspace {10\p@ }} 38 | \@writefile{lot}{\addvspace {10\p@ }} 39 | \@input{chapter3/preamble.aux} 40 | \@input{chapter3/section1.aux} 41 | \@input{chapter3/summary.aux} 42 | \@writefile{toc}{\contentsline {chapter}{\numberline {4}创建列表}{27}{chapter.4}} 43 | \@writefile{lof}{\addvspace {10\p@ }} 44 | \@writefile{lot}{\addvspace {10\p@ }} 45 | \@writefile{toc}{\contentsline {section}{\numberline {4.1}项目符号列表}{27}{section.4.1}} 46 | \@writefile{toc}{\contentsline {section}{\numberline {4.2}数字列表}{27}{section.4.2}} 47 | \@writefile{toc}{\contentsline {section}{\numberline {4.3}定义列表}{27}{section.4.3}} 48 | \@writefile{toc}{\contentsline {chapter}{\numberline {5}创建表格和插入图片}{29}{chapter.5}} 49 | \@writefile{lof}{\addvspace {10\p@ }} 50 | \@writefile{lot}{\addvspace {10\p@ }} 51 | \@writefile{toc}{\contentsline {section}{\numberline {5.1}以列的方式排列文本和数据}{29}{section.5.1}} 52 | \@writefile{toc}{\contentsline {section}{\numberline {5.2}排版复杂的表格}{29}{section.5.2}} 53 | \@writefile{toc}{\contentsline {section}{\numberline {5.3}在文档中插入图片}{29}{section.5.3}} 54 | \@writefile{toc}{\contentsline {section}{\numberline {5.4}给表格和图片添加标题}{29}{section.5.4}} 55 | \@writefile{toc}{\contentsline {section}{\numberline {5.5}控制图表和表格的布局}{29}{section.5.5}} 56 | \@writefile{toc}{\contentsline {chapter}{\numberline {6}交叉引用}{31}{chapter.6}} 57 | \@writefile{lof}{\addvspace {10\p@ }} 58 | \@writefile{lot}{\addvspace {10\p@ }} 59 | \@writefile{toc}{\contentsline {section}{\numberline {6.1}设置引用标签}{31}{section.6.1}} 60 | \@writefile{toc}{\contentsline {section}{\numberline {6.2}区间,脚注,列表条目,表格和其他的引用}{31}{section.6.2}} 61 | \@writefile{toc}{\contentsline {section}{\numberline {6.3}页码的引用及ranges}{31}{section.6.3}} 62 | \@writefile{toc}{\contentsline {section}{\numberline {6.4}使LaTeX对长页面的冗余引用}{31}{section.6.4}} 63 | \@writefile{toc}{\contentsline {section}{\numberline {6.5}引用的自动命名}{31}{section.6.5}} 64 | \@writefile{toc}{\contentsline {section}{\numberline {6.6}创建到外部文档的引用}{31}{section.6.6}} 65 | \@writefile{toc}{\contentsline {chapter}{\numberline {7}内容和引用的列表}{33}{chapter.7}} 66 | \@writefile{lof}{\addvspace {10\p@ }} 67 | \@writefile{lot}{\addvspace {10\p@ }} 68 | \@writefile{toc}{\contentsline {section}{\numberline {7.1}决定要插入TOC的标题的级别}{33}{section.7.1}} 69 | \@writefile{toc}{\contentsline {section}{\numberline {7.2}创建并个性化图列表(LOF)和表格列表(LOT)}{33}{section.7.2}} 70 | \@writefile{toc}{\contentsline {section}{\numberline {7.3}将随意的文本和命令插入到TOC和其他列表}{33}{section.7.3}} 71 | \@writefile{toc}{\contentsline {section}{\numberline {7.4}引用和参考书目}{33}{section.7.4}} 72 | \@writefile{toc}{\contentsline {section}{\numberline {7.5}创建目录}{33}{section.7.5}} 73 | \@writefile{toc}{\contentsline {section}{\numberline {7.6}修改所有这些列表的标题}{33}{section.7.6}} 74 | \@writefile{toc}{\contentsline {chapter}{\numberline {8}编辑数学公式}{35}{chapter.8}} 75 | \@writefile{lof}{\addvspace {10\p@ }} 76 | \@writefile{lot}{\addvspace {10\p@ }} 77 | \@writefile{toc}{\contentsline {section}{\numberline {8.1}编辑基本公式}{35}{section.8.1}} 78 | \@writefile{toc}{\contentsline {section}{\numberline {8.2}文本中插入公式和公式间插入文本}{35}{section.8.2}} 79 | \@writefile{toc}{\contentsline {section}{\numberline {8.3}等式的中间对齐并编号}{35}{section.8.3}} 80 | \@writefile{toc}{\contentsline {section}{\numberline {8.4}多列等式的对齐}{35}{section.8.4}} 81 | \@writefile{toc}{\contentsline {section}{\numberline {8.5}插入数学符号例如:根号,操作符,希腊字母和箭头}{35}{section.8.5}} 82 | \@writefile{toc}{\contentsline {section}{\numberline {8.6}分数}{35}{section.8.6}} 83 | \@writefile{toc}{\contentsline {section}{\numberline {8.7}表达式的堆叠}{35}{section.8.7}} 84 | \@writefile{toc}{\contentsline {section}{\numberline {8.8}矩阵}{35}{section.8.8}} 85 | \@writefile{toc}{\contentsline {chapter}{\numberline {9}字体使用}{37}{chapter.9}} 86 | \@writefile{lof}{\addvspace {10\p@ }} 87 | \@writefile{lot}{\addvspace {10\p@ }} 88 | \@writefile{toc}{\contentsline {section}{\numberline {9.1}为整个文档选择其他字体集}{37}{section.9.1}} 89 | \@writefile{toc}{\contentsline {section}{\numberline {9.2}为特定的形状加载字体包}{37}{section.9.2}} 90 | \@writefile{toc}{\contentsline {section}{\numberline {9.3}如何安装附加字体}{37}{section.9.3}} 91 | \@writefile{toc}{\contentsline {section}{\numberline {9.4}多种字体的使用}{37}{section.9.4}} 92 | \@writefile{toc}{\contentsline {section}{\numberline {9.5}输入文本的编码和输出的字体}{37}{section.9.5}} 93 | \@writefile{toc}{\contentsline {chapter}{\numberline {10}创作大型文档}{39}{chapter.10}} 94 | \@writefile{lof}{\addvspace {10\p@ }} 95 | \@writefile{lot}{\addvspace {10\p@ }} 96 | \@writefile{toc}{\contentsline {section}{\numberline {10.1}一个文档分为几个文件}{39}{section.10.1}} 97 | \@writefile{toc}{\contentsline {section}{\numberline {10.2}代码的输入和重用}{39}{section.10.2}} 98 | \@writefile{toc}{\contentsline {section}{\numberline {10.3}swap out document 设置}{39}{section.10.3}} 99 | \@writefile{toc}{\contentsline {section}{\numberline {10.4}编译文档的一部分}{39}{section.10.4}} 100 | \@writefile{toc}{\contentsline {section}{\numberline {10.5}创建一个基于其他sub-files的主文档}{39}{section.10.5}} 101 | \@writefile{toc}{\contentsline {section}{\numberline {10.6}设计标题页}{39}{section.10.6}} 102 | \@writefile{toc}{\contentsline {section}{\numberline {10.7}在标题页使用罗马数字页码}{39}{section.10.7}} 103 | \@writefile{toc}{\contentsline {section}{\numberline {10.8}add a back matter without sectioning numbers}{39}{section.10.8}} 104 | \@writefile{toc}{\contentsline {chapter}{\numberline {11}进一步美化文档}{41}{chapter.11}} 105 | \@writefile{lof}{\addvspace {10\p@ }} 106 | \@writefile{lot}{\addvspace {10\p@ }} 107 | \@writefile{toc}{\contentsline {section}{\numberline {11.1}为目录,图标列表和其他的交叉引用加上超链接}{41}{section.11.1}} 108 | \@writefile{toc}{\contentsline {section}{\numberline {11.2}创建书签的导航条}{41}{section.11.2}} 109 | \@writefile{toc}{\contentsline {section}{\numberline {11.3}设置标题}{41}{section.11.3}} 110 | \@writefile{toc}{\contentsline {section}{\numberline {11.4}使用LaTeX的颜色}{41}{section.11.4}} 111 | \@writefile{toc}{\contentsline {chapter}{\numberline {12}故障排除}{43}{chapter.12}} 112 | \@writefile{lof}{\addvspace {10\p@ }} 113 | \@writefile{lot}{\addvspace {10\p@ }} 114 | \@writefile{toc}{\contentsline {section}{\numberline {12.1}理解错去信息并修复}{43}{section.12.1}} 115 | \@writefile{toc}{\contentsline {section}{\numberline {12.2}处理警告}{43}{section.12.2}} 116 | \@writefile{toc}{\contentsline {section}{\numberline {12.3}使用LaTeX在编译期间产生的所有信息}{43}{section.12.3}} 117 | \@writefile{toc}{\contentsline {chapter}{\numberline {13}使用在线资源}{45}{chapter.13}} 118 | \@writefile{lof}{\addvspace {10\p@ }} 119 | \@writefile{lot}{\addvspace {10\p@ }} 120 | \@input{appendix/preamble.aux} 121 | \@input{appendix/section1.aux} 122 | \@writefile{toc}{\contentsline {chapter}{\numberline {A}后记}{49}{appendix.A}} 123 | \@writefile{lof}{\addvspace {10\p@ }} 124 | \@writefile{lot}{\addvspace {10\p@ }} 125 | \@writefile{toc}{\contentsline {chapter}{\numberline {B}参考书目}{51}{appendix.B}} 126 | \@writefile{lof}{\addvspace {10\p@ }} 127 | \@writefile{lot}{\addvspace {10\p@ }} 128 | -------------------------------------------------------------------------------- /book.toc: -------------------------------------------------------------------------------- 1 | \contentsline {chapter}{\numberline {1}LaTeX入门}{7}{chapter.1} 2 | \contentsline {section}{\numberline {1.1}LaTeX是什么?}{9}{section.1.1} 3 | \contentsline {subsection}{\numberline {1.1.1}我们如何受益}{9}{subsection.1.1.1} 4 | \contentsline {subsection}{\numberline {1.1.2}开源的好处}{9}{subsection.1.1.2} 5 | \contentsline {subsection}{\numberline {1.1.3}形式与内容的分离}{9}{subsection.1.1.3} 6 | \contentsline {subsection}{\numberline {1.1.4}可移植性}{9}{subsection.1.1.4} 7 | \contentsline {subsection}{\numberline {1.1.5}成果的保护}{10}{subsection.1.1.5} 8 | \contentsline {subsection}{\numberline {1.1.6}对比LaTeX并及其相比传统字处理软件的优缺点}{10}{subsection.1.1.6} 9 | \contentsline {subsection}{\numberline {1.1.7}挑战是什么?}{10}{subsection.1.1.7} 10 | \contentsline {section}{\numberline {1.2}安装LaTeX}{11}{section.1.2} 11 | \contentsline {subsection}{\numberline {1.2.1}使用网络安装向导安装TeX}{11}{subsection.1.2.1} 12 | \contentsline {subsection}{\numberline {1.2.2}离线安装TeX Live}{11}{subsection.1.2.2} 13 | \contentsline {subsection}{\numberline {1.2.3}在其他系统上安装}{11}{subsection.1.2.3} 14 | \contentsline {section}{\numberline {1.3}写第一份LaTeX文档}{12}{section.1.3} 15 | \contentsline {subsection}{\numberline {1.3.1}Time for action-使用TeXworks写我们的第一份文档}{12}{subsection.1.3.1} 16 | \contentsline {subsubsection}{一展身手 - 检查先进的LaTeX的编辑器}{12}{section*.2} 17 | \contentsline {section}{\numberline {1.4}总结}{13}{section.1.4} 18 | \contentsline {chapter}{\numberline {2}字,句,段的格式化}{15}{chapter.2} 19 | \contentsline {section}{\numberline {2.1}节省事件和精力 自定义命令}{17}{section.2.1} 20 | \contentsline {subsection}{\numberline {2.1.1}Time for action-craeting our first command using it as an abbrevitaion}{17}{subsection.2.1.1} 21 | \contentsline {subsection}{\numberline {2.1.2}Gentle spacing after commands}{17}{subsection.2.1.2} 22 | \contentsline {subsection}{\numberline {2.1.3}Time for action-adding intellingent spacing to command ouput}{17}{subsection.2.1.3} 23 | \contentsline {subsection}{\numberline {2.1.4}creating more universal commands-using arguments}{17}{subsection.2.1.4} 24 | \contentsline {subsection}{\numberline {2.1.5}Time for action-creating a macro for formating keywords}{17}{subsection.2.1.5} 25 | \contentsline {subsection}{\numberline {2.1.6}Using optional arguments}{17}{subsection.2.1.6} 26 | \contentsline {subsection}{\numberline {2.1.7}Time for action-marking keywords with optional formating}{17}{subsection.2.1.7} 27 | \contentsline {section}{\numberline {2.2}使用box来限制文字的宽度}{18}{section.2.2} 28 | \contentsline {section}{\numberline {2.3}Breaking lines and paragraphs}{19}{section.2.3} 29 | \contentsline {subsection}{\numberline {2.3.1}提高断字(Imporving hyphenation)}{19}{subsection.2.3.1} 30 | \contentsline {subsection}{\numberline {2.3.2}Improving the justification further}{19}{subsection.2.3.2} 31 | \contentsline {subsection}{\numberline {2.3.3}Breaking lines manually}{19}{subsection.2.3.3} 32 | \contentsline {subsection}{\numberline {2.3.4}Preventing line breaks}{19}{subsection.2.3.4} 33 | \contentsline {subsection}{\numberline {2.3.5}Managing line breaks wisely}{19}{subsection.2.3.5} 34 | \contentsline {subsection}{\numberline {2.3.6}Exploring the fine details}{20}{subsection.2.3.6} 35 | \contentsline {subsection}{\numberline {2.3.7}Understanding ligatures}{20}{subsection.2.3.7} 36 | \contentsline {subsection}{\numberline {2.3.8}Choosing the rightdash}{20}{subsection.2.3.8} 37 | \contentsline {subsection}{\numberline {2.3.9}Setting dots}{20}{subsection.2.3.9} 38 | \contentsline {subsection}{\numberline {2.3.10}Time for action-using differently spaced dots}{20}{subsection.2.3.10} 39 | \contentsline {subsection}{\numberline {2.3.11}Time for action-comparing dots to ellipsis}{20}{subsection.2.3.11} 40 | \contentsline {subsection}{\numberline {2.3.12}Setting accents}{20}{subsection.2.3.12} 41 | \contentsline {subsection}{\numberline {2.3.13}Time for action-experimenting with accents}{20}{subsection.2.3.13} 42 | \contentsline {subsection}{\numberline {2.3.14}Using special characters directly in the editor}{20}{subsection.2.3.14} 43 | \contentsline {subsection}{\numberline {2.3.15}Time for action-using accents directly}{20}{subsection.2.3.15} 44 | \contentsline {section}{\numberline {2.4}Truning off full justification}{21}{section.2.4} 45 | \contentsline {subsection}{\numberline {2.4.1}Time for action-justifying a paragraph to the left}{21}{subsection.2.4.1} 46 | \contentsline {subsection}{\numberline {2.4.2}Creating ragged-left text}{21}{subsection.2.4.2} 47 | \contentsline {subsection}{\numberline {2.4.3}Time for action-centering a title}{21}{subsection.2.4.3} 48 | \contentsline {subsection}{\numberline {2.4.4}Using environments for justification}{21}{subsection.2.4.4} 49 | \contentsline {subsection}{\numberline {2.4.5}Time for action-centering verses}{21}{subsection.2.4.5} 50 | \contentsline {section}{\numberline {2.5}显示引用}{22}{section.2.5} 51 | \contentsline {subsection}{\numberline {2.5.1}Time for action-quoting a scientist}{22}{subsection.2.5.1} 52 | \contentsline {subsection}{\numberline {2.5.2}引用更长的文本}{22}{subsection.2.5.2} 53 | \contentsline {subsection}{\numberline {2.5.3}Time for action-quioting TeX's benefits}{22}{subsection.2.5.3} 54 | \contentsline {chapter}{\numberline {3}页面设计}{23}{chapter.3} 55 | \contentsline {section}{\numberline {3.1}定义全局布局}{25}{section.3.1} 56 | \contentsline {subsection}{\numberline {3.1.1}Time for action-写个包含章节的书}{25}{subsection.3.1.1} 57 | \contentsline {chapter}{\numberline {4}创建列表}{27}{chapter.4} 58 | \contentsline {section}{\numberline {4.1}项目符号列表}{27}{section.4.1} 59 | \contentsline {section}{\numberline {4.2}数字列表}{27}{section.4.2} 60 | \contentsline {section}{\numberline {4.3}定义列表}{27}{section.4.3} 61 | \contentsline {chapter}{\numberline {5}创建表格和插入图片}{29}{chapter.5} 62 | \contentsline {section}{\numberline {5.1}以列的方式排列文本和数据}{29}{section.5.1} 63 | \contentsline {section}{\numberline {5.2}排版复杂的表格}{29}{section.5.2} 64 | \contentsline {section}{\numberline {5.3}在文档中插入图片}{29}{section.5.3} 65 | \contentsline {section}{\numberline {5.4}给表格和图片添加标题}{29}{section.5.4} 66 | \contentsline {section}{\numberline {5.5}控制图表和表格的布局}{29}{section.5.5} 67 | \contentsline {chapter}{\numberline {6}交叉引用}{31}{chapter.6} 68 | \contentsline {section}{\numberline {6.1}设置引用标签}{31}{section.6.1} 69 | \contentsline {section}{\numberline {6.2}区间,脚注,列表条目,表格和其他的引用}{31}{section.6.2} 70 | \contentsline {section}{\numberline {6.3}页码的引用及ranges}{31}{section.6.3} 71 | \contentsline {section}{\numberline {6.4}使LaTeX对长页面的冗余引用}{31}{section.6.4} 72 | \contentsline {section}{\numberline {6.5}引用的自动命名}{31}{section.6.5} 73 | \contentsline {section}{\numberline {6.6}创建到外部文档的引用}{31}{section.6.6} 74 | \contentsline {chapter}{\numberline {7}内容和引用的列表}{33}{chapter.7} 75 | \contentsline {section}{\numberline {7.1}决定要插入TOC的标题的级别}{33}{section.7.1} 76 | \contentsline {section}{\numberline {7.2}创建并个性化图列表(LOF)和表格列表(LOT)}{33}{section.7.2} 77 | \contentsline {section}{\numberline {7.3}将随意的文本和命令插入到TOC和其他列表}{33}{section.7.3} 78 | \contentsline {section}{\numberline {7.4}引用和参考书目}{33}{section.7.4} 79 | \contentsline {section}{\numberline {7.5}创建目录}{33}{section.7.5} 80 | \contentsline {section}{\numberline {7.6}修改所有这些列表的标题}{33}{section.7.6} 81 | \contentsline {chapter}{\numberline {8}编辑数学公式}{35}{chapter.8} 82 | \contentsline {section}{\numberline {8.1}编辑基本公式}{35}{section.8.1} 83 | \contentsline {section}{\numberline {8.2}文本中插入公式和公式间插入文本}{35}{section.8.2} 84 | \contentsline {section}{\numberline {8.3}等式的中间对齐并编号}{35}{section.8.3} 85 | \contentsline {section}{\numberline {8.4}多列等式的对齐}{35}{section.8.4} 86 | \contentsline {section}{\numberline {8.5}插入数学符号例如:根号,操作符,希腊字母和箭头}{35}{section.8.5} 87 | \contentsline {section}{\numberline {8.6}分数}{35}{section.8.6} 88 | \contentsline {section}{\numberline {8.7}表达式的堆叠}{35}{section.8.7} 89 | \contentsline {section}{\numberline {8.8}矩阵}{35}{section.8.8} 90 | \contentsline {chapter}{\numberline {9}字体使用}{37}{chapter.9} 91 | \contentsline {section}{\numberline {9.1}为整个文档选择其他字体集}{37}{section.9.1} 92 | \contentsline {section}{\numberline {9.2}为特定的形状加载字体包}{37}{section.9.2} 93 | \contentsline {section}{\numberline {9.3}如何安装附加字体}{37}{section.9.3} 94 | \contentsline {section}{\numberline {9.4}多种字体的使用}{37}{section.9.4} 95 | \contentsline {section}{\numberline {9.5}输入文本的编码和输出的字体}{37}{section.9.5} 96 | \contentsline {chapter}{\numberline {10}创作大型文档}{39}{chapter.10} 97 | \contentsline {section}{\numberline {10.1}一个文档分为几个文件}{39}{section.10.1} 98 | \contentsline {section}{\numberline {10.2}代码的输入和重用}{39}{section.10.2} 99 | \contentsline {section}{\numberline {10.3}swap out document 设置}{39}{section.10.3} 100 | \contentsline {section}{\numberline {10.4}编译文档的一部分}{39}{section.10.4} 101 | \contentsline {section}{\numberline {10.5}创建一个基于其他sub-files的主文档}{39}{section.10.5} 102 | \contentsline {section}{\numberline {10.6}设计标题页}{39}{section.10.6} 103 | \contentsline {section}{\numberline {10.7}在标题页使用罗马数字页码}{39}{section.10.7} 104 | \contentsline {section}{\numberline {10.8}add a back matter without sectioning numbers}{39}{section.10.8} 105 | \contentsline {chapter}{\numberline {11}进一步美化文档}{41}{chapter.11} 106 | \contentsline {section}{\numberline {11.1}为目录,图标列表和其他的交叉引用加上超链接}{41}{section.11.1} 107 | \contentsline {section}{\numberline {11.2}创建书签的导航条}{41}{section.11.2} 108 | \contentsline {section}{\numberline {11.3}设置标题}{41}{section.11.3} 109 | \contentsline {section}{\numberline {11.4}使用LaTeX的颜色}{41}{section.11.4} 110 | \contentsline {chapter}{\numberline {12}故障排除}{43}{chapter.12} 111 | \contentsline {section}{\numberline {12.1}理解错去信息并修复}{43}{section.12.1} 112 | \contentsline {section}{\numberline {12.2}处理警告}{43}{section.12.2} 113 | \contentsline {section}{\numberline {12.3}使用LaTeX在编译期间产生的所有信息}{43}{section.12.3} 114 | \contentsline {chapter}{\numberline {13}使用在线资源}{45}{chapter.13} 115 | \contentsline {section}{\numberline {.1}列表}{47}{section..1} 116 | \contentsline {chapter}{\numberline {A}后记}{49}{appendix.A} 117 | \contentsline {chapter}{\numberline {B}参考书目}{51}{appendix.B} 118 | -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- 1 | % xecjk_preamble.tex 2 | %%%%%%%%------------------------------------------------------------------------ 3 | %%%% xeCJK相关宏包 4 | 5 | \usepackage{xltxtra,fontspec,xunicode} 6 | 7 | %% \CJKsetecglue{\hskip 0.15em plus 0.05em minus 0.05em} 8 | %% slanfont: 允许斜体 9 | %% boldfont: 允许粗体 10 | %% CJKnormalspaces: 仅忽略汉字之间的空白,但保留中英文之间的空白。 11 | %% CJKchecksingle: 避免单个汉字单独占一行。 12 | \usepackage[slantfont, boldfont]{xeCJK} 13 | 14 | %% 针对中文进行断行 15 | \XeTeXlinebreaklocale "zh" 16 | 17 | %% 给予TeX断行一定自由度 18 | \XeTeXlinebreakskip = 0pt plus 1pt minus 0.1pt 19 | 20 | %%%% xeCJK设置结束 21 | %%%%%%%%------------------------------------------------------------------------ 22 | 23 | %%%%%%%%------------------------------------------------------------------------ 24 | %%%% xeCJK字体设置 25 | 26 | %% 设置中文标点样式,支持quanjiao、banjiao、kaiming等多种方式 27 | \punctstyle{kaiming} 28 | 29 | %% 设置缺省中文字体 30 | \setCJKmainfont[BoldFont={Adobe Heiti Std},ItalicFont={Adobe Kaiti Std}]{Adobe Song Std} 31 | %% 设置中文无衬线字体 32 | \setCJKsansfont[BoldFont={Adobe Heiti Std}]{Adobe Kaiti Std} 33 | %% 设置等宽字体 34 | \setCJKmonofont{Adobe Heiti Std} 35 | 36 | %% 英文衬线字体 37 | \setmainfont{DejaVu Serif} 38 | %% 英文等宽字体 39 | \setmonofont{DejaVu Sans Mono} 40 | %% 英文无衬线字体 41 | \setsansfont{DejaVu Sans} 42 | 43 | %% 定义新字体 44 | \setCJKfamilyfont{song}{Adobe Song Std} 45 | \setCJKfamilyfont{kai}{Adobe Kaiti Std} 46 | \setCJKfamilyfont{hei}{Adobe Heiti Std} 47 | \setCJKfamilyfont{fangsong}{Adobe Fangsong Std} 48 | \setCJKfamilyfont{lisu}{LiSu} 49 | \setCJKfamilyfont{youyuan}{YouYuan} 50 | 51 | %% 自定义宋体 52 | \newcommand{\song}{\CJKfamily{song}} 53 | %% 自定义楷体 54 | \newcommand{\kai}{\CJKfamily{kai}} 55 | %% 自定义黑体 56 | \newcommand{\hei}{\CJKfamily{hei}} 57 | %% 自定义仿宋体 58 | \newcommand{\fangsong}{\CJKfamily{fangsong}} 59 | %% 自定义隶书 60 | \newcommand{\lisu}{\CJKfamily{lisu}} 61 | %% 自定义幼圆 62 | \newcommand{\youyuan}{\CJKfamily{youyuan}} 63 | 64 | %%%% xeCJK字体设置结束 65 | %%%%%%%%------------------------------------------------------------------------ 66 | 67 | %%%%%%%%------------------------------------------------------------------------ 68 | %%%% 一些关于中文文档的重定义 69 | 70 | %% 数学公式定理的重定义 71 | 72 | \newtheorem{example}{例} 73 | \newtheorem{algorithm}{算法} 74 | %% 按section编号 75 | \newtheorem{theorem}{定理}[section] 76 | \newtheorem{definition}{定义} 77 | \newtheorem{axiom}{公理} 78 | \newtheorem{property}{性质} 79 | \newtheorem{proposition}{命题} 80 | \newtheorem{lemma}{引理} 81 | \newtheorem{corollary}{推论} 82 | \newtheorem{remark}{注解} 83 | \newtheorem{condition}{条件} 84 | \newtheorem{conclusion}{结论} 85 | \newtheorem{assumption}{假设} 86 | 87 | %% 章节等名称重定义 88 | \renewcommand{\contentsname}{目录} 89 | %\renewcommand{\abstractname}{摘要} 90 | \renewcommand{\indexname}{索引} 91 | \renewcommand{\listfigurename}{插图目录} 92 | \renewcommand{\listtablename}{表格目录} 93 | \renewcommand{\figurename}{图} 94 | \renewcommand{\tablename}{表} 95 | %\renewcommand{\appendixname}{附录} 96 | %\renewcommand{\appendixpagename}{附录} 97 | %\renewcommand{\appendixtocname}{附录} 98 | %\renewcommand\refname{参考文献} 99 | 100 | %% 设置chapter、section与subsection的格式 101 | %\titleformat{\chapter}{\centering\huge}{第\thechapter{}章}{1em}{\textbf} 102 | %\titleformat{\section}{\centering\sihao}{\thesection}{1em}{\textbf} 103 | %\titleformat{\subsection}{\xiaosi}{\thesubsection}{1em}{\textbf} 104 | %\titleformat{\subsubsection}{\xiaosi}{\thesubsubsection}{1em}{\textbf} 105 | 106 | %%%% 中文重定义结束 107 | %%%%%%%%------------------------------------------------------------------------ 108 | 109 | % en_preamble.tex 110 | %%%%%%%%------------------------------------------------------------------------ 111 | %%%% 日常所用宏包 112 | 113 | %% 控制页边距 114 | \usepackage[top=2.5cm, bottom=2.5cm, left=2.5cm, right=2.5cm]{geometry} 115 | 116 | %% 控制项目列表 117 | \usepackage{enumerate} 118 | 119 | %% 多栏显示 120 | \usepackage{multicol} 121 | 122 | %% hyperref宏包,生成可定位点击的超链接,并且会生成pdf书签 123 | \usepackage[% 124 | pdfstartview=FitH,% 125 | CJKbookmarks=true,% 126 | bookmarks=true,% 127 | bookmarksnumbered=true,% 128 | bookmarksopen=true,% 129 | colorlinks=true,% 130 | citecolor=blue,% 131 | linkcolor=blue,% 132 | anchorcolor=green,% 133 | urlcolor=blue% 134 | ]{hyperref} 135 | 136 | %% 控制标题 137 | %\usepackage{titlesec} 138 | 139 | %% 控制表格样式 140 | \usepackage{booktabs} 141 | 142 | %% 控制目录 143 | %\usepackage{titletoc} 144 | 145 | %% 控制字体大小 146 | %\usepackage{type1cm} 147 | 148 | %% 首行缩进,用\noindent取消某段缩进 149 | \usepackage{indentfirst} 150 | 151 | %% 支持彩色文本、底色、文本框等 152 | \usepackage{color,xcolor} 153 | 154 | %% AMS LaTeX宏包 155 | \usepackage{amsmath} 156 | 157 | %% 一些特殊符号 158 | % \usepackage{bbding} 159 | 160 | %% 支持引用 161 | % \usepackage{cite} 162 | 163 | %% LaTeX一些特殊符号宏包 164 | % \usepackage{latexsym} 165 | 166 | %% 数学公式中的黑斜体 167 | % \usepackage{bm} 168 | 169 | %% 调整公式字体大小:\mathsmaller, \mathlarger 170 | % \usepackage{relsize} 171 | 172 | %% 生成索引 173 | % \makeindex 174 | 175 | %%%% 基本插图方法 176 | %% 图形宏包 177 | \usepackage{graphicx} 178 | 179 | %% 多个图形并排,参加lnotes.pdf 180 | \usepackage{subfig} 181 | 182 | % \begin{figure}[htbp] %% 控制插图位置 183 | % \setlength{\abovecaptionskip}{0pt} 184 | % \setlength{\belowcaptionskip}{10pt} 185 | %% 控制图形和上下文的距离 186 | % \centering %% 使图形居中显示 187 | % \includegraphics[width=0.8\textwidth]{CTeXLive2008.jpg} 188 | %% 控制图形显示宽度为0.8\textwidth 189 | % \caption{CTeXLive2008安装过程} \label{fig:CTeXLive2008} 190 | %% 图形题目和交叉引用标签 191 | % \end{figure} 192 | %%%% 基本插图方法结束 193 | 194 | %%%% pgf/tikz绘图宏包设置 195 | \usepackage{pgf,tikz} 196 | \usetikzlibrary{shapes,automata,snakes,backgrounds,arrows} 197 | \usetikzlibrary{mindmap} 198 | %% 可以直接在latex文档中使用graphviz/dot语言, 199 | %% 也可以用dot2tex工具将dot文件转换成tex文件再include进来 200 | %% \usepackage[shell,pgf,outputdir={docgraphs/}]{dot2texi} 201 | %%%% pgf/tikz设置结束 202 | 203 | 204 | %%%% fancyhdr设置页眉页脚 205 | %% 页眉页脚宏包 206 | \usepackage{fancyhdr} 207 | 208 | %% 页眉页脚风格 209 | \pagestyle{plain} 210 | 211 | %% 有时会出现\headheight too small的warning 212 | \setlength{\headheight}{15pt} 213 | 214 | %% 清空当前页眉页脚的默认设置 215 | %\fancyhf{} 216 | %%%% fancyhdr设置结束 217 | 218 | 219 | %%%% 设置listings宏包用来粘贴源代码 220 | %% 方便粘贴源代码,部分代码高亮功能 221 | \usepackage{listings} 222 | 223 | %% 所要粘贴代码的编程语言 224 | \lstloadlanguages{} 225 | 226 | %% 设置listings宏包的一些全局样式 227 | %% 参考http://hi.baidu.com/shawpinlee/blog/item/9ec431cbae28e41cbe09e6e4.html 228 | \lstset{ 229 | showstringspaces=false, %% 设定是否显示代码之间的空格符号 230 | numbers=left, %% 在左边显示行号 231 | numberstyle=\tiny, %% 设定行号字体的大小 232 | basicstyle=\footnotesize, %% 设定字体大小\tiny, \small, \Large等等 233 | keywordstyle=\color{blue!70}, commentstyle=\color{red!50!green!50!blue!50}, 234 | %% 关键字高亮 235 | frame=shadowbox, %% 给代码加框 236 | rulesepcolor=\color{red!20!green!20!blue!20}, 237 | escapechar=`, %% 中文逃逸字符,用于中英混排 238 | xleftmargin=2em,xrightmargin=2em, aboveskip=1em, 239 | breaklines, %% 这条命令可以让LaTeX自动将长的代码行换行排版 240 | extendedchars=false %% 这一条命令可以解决代码跨页时,章节标题,页眉等汉字不显示的问题 241 | } 242 | %%%% listings宏包设置结束 243 | 244 | 245 | %%%% 附录设置 246 | %\usepackage[title,titletoc,header]{appendix} 247 | %%%% 附录设置结束 248 | 249 | 250 | %%%% 日常宏包设置结束 251 | %%%%%%%%------------------------------------------------------------------------ 252 | 253 | %%%%%%%%------------------------------------------------------------------------ 254 | %%%% 英文字体设置结束 255 | %% 这里可以加入自己的英文字体设置 256 | %%%%%%%%------------------------------------------------------------------------ 257 | 258 | %%%%%%%%------------------------------------------------------------------------ 259 | %%%% 设置常用字体字号,与MS Word相对应 260 | 261 | %% 一号, 1.4倍行距 262 | \newcommand{\yihao}{\fontsize{26pt}{36pt}\selectfont} 263 | %% 二号, 1.25倍行距 264 | \newcommand{\erhao}{\fontsize{22pt}{28pt}\selectfont} 265 | %% 小二, 单倍行距 266 | \newcommand{\xiaoer}{\fontsize{18pt}{18pt}\selectfont} 267 | %% 三号, 1.5倍行距 268 | \newcommand{\sanhao}{\fontsize{16pt}{24pt}\selectfont} 269 | %% 小三, 1.5倍行距 270 | \newcommand{\xiaosan}{\fontsize{15pt}{22pt}\selectfont} 271 | %% 四号, 1.5倍行距 272 | \newcommand{\sihao}{\fontsize{14pt}{21pt}\selectfont} 273 | %% 半四, 1.5倍行距 274 | \newcommand{\bansi}{\fontsize{13pt}{19.5pt}\selectfont} 275 | %% 小四, 1.5倍行距 276 | \newcommand{\xiaosi}{\fontsize{12pt}{18pt}\selectfont} 277 | %% 大五, 单倍行距 278 | \newcommand{\dawu}{\fontsize{11pt}{11pt}\selectfont} 279 | %% 五号, 单倍行距 280 | \newcommand{\wuhao}{\fontsize{10.5pt}{10.5pt}\selectfont} 281 | %%%%%%%%------------------------------------------------------------------------ 282 | 283 | 284 | %%%%%%%%------------------------------------------------------------------------ 285 | %%%% 一些个性设置 286 | 287 | %% 设定页码方式,包括arabic、roman等方式 288 | %% \pagenumbering{arabic} 289 | 290 | %% 有时LaTeX无从断行,产生overfull的错误,这条命令降低LaTeX断行标准 291 | %% \sloppy 292 | 293 | %% 设定目录显示深度\tableofcontents 294 | %% \setcounter{tocdepth}{2} 295 | %% 设定\listoftables显示深度 296 | %% \setcounter{lotdepth}{2} 297 | %% 设定\listoffigures显示深度 298 | %% \setcounter{lofdepth}{2} 299 | 300 | %% 设定段间距 301 | \setlength{\parskip}{0.5\baselineskip} 302 | 303 | %% 设定行距 304 | \linespread{1} 305 | 306 | %% 中文破折号,据说来自清华模板 307 | \newcommand{\pozhehao}{\kern0.3ex\rule[0.8ex]{2em}{0.1ex}\kern0.3ex} 308 | 309 | %% 设定itemize环境item的符号 310 | \renewcommand{\labelitemi}{$\bullet$} 311 | 312 | %% 设定正文字体大小 313 | % \renewcommand{\normalsize}{\sihao} 314 | 315 | %%%% 个性设置结束 316 | %%%%%%%%------------------------------------------------------------------------ 317 | 318 | 319 | %%%%%%%%------------------------------------------------------------------------ 320 | %%%% bibtex设置 321 | 322 | %% 设定参考文献显示风格 323 | \bibliographystyle{unsrt} 324 | 325 | %%%% bibtex设置结束 326 | %%%%%%%%------------------------------------------------------------------------ 327 | 328 | % appendix.tex 329 | %%%%%%%%------------------------------------------------------------------------ 330 | %%%% 附录 331 | 332 | % \appendix 333 | % \appendixpage 334 | %% 将附录条目添加到contents 335 | % \addappheadtotoc 336 | 337 | %%%% 附录结束 338 | %%%%%%%%------------------------------------------------------------------------ 339 | 340 | 341 | % content.tex 342 | -------------------------------------------------------------------------------- /chapter2.tex: -------------------------------------------------------------------------------- 1 | \chapter{字,行,段的格式化} 2 | 在上一章中,我们安装了LaTeX和TEXworks的编辑器来编写我们的 3 | 第一个文档。现在,我们将谈论的文档结构,我们 4 | 将重点放在文本的细节和它的格式。 5 | 6 | 在这一章中,我们将: 7 | \begin{itemize} 8 | \item 探讨关于逻辑格式化 9 | \item 学习如何更改字体,文本的形状和风格 10 | \item 使用box来限制文档的宽度 11 | \item 学习如何断行和提高断字 12 | \item 探索对齐和格式化段落 13 | \end{itemize} 14 | 15 | 过工作的例子,并尝试新的功能,我们将学习一些基本概念 16 | 乳胶。通过本章的结束,我们将命令和环境的熟悉。 17 | 你甚至可以定义自己的命令。 18 | \section{理解逻辑格式化} 19 | 在前面的章节中,我们写了一个小例子文件。让我们扩展它使得它变成一个具有 20 | 说明性的例子,以了解典型的文档结构。 21 | \subsection{Time for action-titling your document} 22 | 我们将使用第一个例子,插入一些命令使其产生一个漂亮的title。 23 | \begin{lstlisting}[language={[LaTeX]TeX}] 24 | \documentclass[a4paper,11pt]{article} 25 | \begin{document} 26 | \title{Example 2} 27 | \author{My name} 28 | \date{January 5, 2011} 29 | \maketitle 30 | \section{What's this?} 31 | This is our second document. It contains a title and a section 32 | with text. 33 | \end{document} 34 | \end{lstlisting} 35 | \begin{itemize} 36 | \item 我们的文档使用article类。它将使用a4纸和11号基本字体。 37 | \item 标题是"Example 2". 38 | \item 你是作者。 39 | \item 时间是January 5, 2011 40 | \item concerning the content of the document: 41 | \begin{itemize} 42 | \item 开始与标题。 43 | \item 第一section具有标题"What's this?" 44 | \item 接下来的文本是"This is our second document." 45 | \end{itemize} 46 | \end{itemize} 47 | 注意,我们并没有设置标题的字体大小;页眉有设置加粗和居中。这类的格式化是LaTeX 48 | 做的,但是你可以告诉LaTeX具体看起来效果如何。 49 | \subsection{探索文档结构} 50 | 让我们看看细节。一个LaTeX文档中并不是孤立的-通常是基于一个 51 | 多功能的模板。这类基本的模板被称为类(class)。它提供了可定制的 52 | 功能,通常是具有特定的目的性。有些类中有书(book),期刊文章 53 | (journal articles);信件(letter),演示文档(presentation),海报 54 | (poster)和其他很多;还有更多的数百个可靠的类可以在互联网存档, 55 | 在你已经安装了TeX Live之后,在您的计算机上也有很多,在这里,我们 56 | 选择了适用于小型文档的文章(article)类别。 57 | 58 | 第一行用\textbackslash documentclass开始。这个单词之前有反斜杠;这样的单词称为 59 | 命令(command)。我们使用命令制定类(class)和文档属性(document properties): 60 | title,author和date. 61 | 62 | 文档的第一布冯称为文档的前言(preamble)。我们在这里选择类,指定属性, 63 | 一般地,在这里制作整个文档范围的定义。 64 | 65 | \textbackslash begin\{document\}标记了前言的结束和真正文档的开始.\textbackslash end\{document\}标记了文档的结束。所有之后的东西都将被LaTeX忽略。在\textbackslash begin...\textbackslash end之间的这样一段代码,被称作环境(environment)。 66 | 67 | 在实际的文档中间,我们使用了\textbackslash maketitle来以一种美观的格式输出标题,作者和日期。 68 | 使用\textbackslash section命令,我们制作了一个比正常文字大且粗的标题。接着是一些文字, 69 | 在文档环境中的将被输出。相反的,前言从来不产生任何输出。 70 | 71 | 让我们仔细看一下这些命令。 72 | 73 | \subsection{理解LaTeX命令} 74 | LaTeX命令以反斜杠开始,跟着是一串大写或小写字母。LaTeX命令通常使用一种 75 | 描述性的小写字符串命名。当然也有例外:你将会看到有些命令只有反斜杠和一个特殊 76 | 字符组成。 77 | 78 | 命令也可以有参数,含在大括号或方括号中。 79 | 80 | 调用命令格式如下: 81 | 82 | \textbackslash command 83 | 84 | 或者: 85 | 86 | \textbackslash command\{argument\} 87 | 88 | 或者: 89 | 90 | \textbackslash command\[optionan argument\]\{argument\} 91 | 92 | 参数可以有多个,每个在大括号或方括号内。在大括号中的参数是必需的。如果一个 93 | 命令被定义为需要一个参数,那么就必须提供一个。例如,如果我们没有声明一个类名, 94 | 调用\textbackslash documentclass将是徒劳的, 95 | 96 | %这些内容是大括号中的 97 | 方括号中的参数是可选的,如果不指定的话,会使用默认设置,例如\textbackslash documentclass\{article\}. 98 | 这份文档将使用10pt字体,因为这是这个类的默认值。 99 | \textbackslash documentclass\[a4paper,11pt\]\{article\}将使用指定的属性。 100 | 有些命令是产生输出的-例如\textbackslash LaTeX 而有些命令是设置属性,更改字体, 101 | 或者布局的。通常,命令是根据目的来命名的。我们将在这一章中探究其细节,但是 102 | 这里先让我们看看LaTeX是如何处理我们输入的。 103 | \section{LaTeX如何读取你的输入} 104 | 在我们继续之前,让我们来看看如何LaTeX的理解你写在编辑器中的东西。 105 | %此处有省略 106 | \section{输出特殊符号} 107 | 常见的文本大多含有大写和小写字母,数字和标点符号.这些只要简单的输入即可。 108 | 然而,一些字符是保留作为LaTeX的命令;它们不能被直接使用.我们已经遇到了 109 | 这样的字符,除了百分号,还有花括号等。有LaTeX命令来打印这样的符号。 110 | Statement \#1: 111 | 50\% of \$100 makes \$50. 112 | More special symbols are \&, \_, \{ and \}. 113 | \textbackslash textbackslash用来输出反斜杠。\textbackslash\textbackslash 114 | 作为断行的shortcut。这有点奇怪,这是由于文章中经常需要断行而很少需要 115 | 反斜杠,所以使用了缩略命令。 116 | %这里又省略了一点。。。 117 | \section{格式化文本-字体形状和风格} 118 | \subsection{调整字体形状} 119 | \textbackslash emph 斜体 120 | \textbackslash textit 意大利斜体 121 | \textbackslash textbf 粗體 122 | \textbackslash textsl slanted 123 | \textbackslash textsc small caps 124 | 这些可以组合起来使用,例如 \textbackslash textsc\{\textbackslash textbf\{nested\}\} 125 | 也可以重复使用,例如\textbackslash textbf\{\textbackslash textbf\{nested\}\} 126 | %又省略一点。。。 127 | \subsection{选择font family} 128 | \textbackslash textsf : sans-serif font 129 | \textbackslash texttt : typewriter font 130 | \textbackslash textrm : Roman text - the default font with serifs. 131 | \textbackslash textsf\{LaTeX\ resources on the internet\} 132 | \textbackslash texttt\{http://www.ctan.org\}. 133 | \textsf{LaTeX\ resources on the internet} 134 | The best place for downloading LaTeX related software is CTAN. 135 | Its address is \texttt{http://www.ctan.org}. 136 | \subsection{字体切换} 137 | \textbackslash sffamily 138 | \textbackslash rmfamily 139 | Command Declaration Meaning 140 | \textbackslash textrm\{\} \textbackslash rmfamily 141 | \textbackslash textsf\{\} 142 | \textbackslash texttt\{\} 143 | \textbackslash textbf\{\} 144 | \textbackslash textmd\{\} 145 | \textbackslash textit\{\} 146 | \textbackslash textsl\{\} 147 | \textbackslash textsc\{\} 148 | \textbackslash textup\{\} 149 | \textbackslash textnormal\{\} 150 | \subsection{Using environments} 151 | \subsection{节省事件和精力 自定义命令} 152 | \section{使用box来限制文字的宽度} 153 | \section{Breaking lines and paragraphs} 154 | 通常情况下,当你写的文字,你并不需要关心自动换行。 155 | 只要输入文本与编辑LaTeX会使其适合线和照顾 156 | 的理由。如果你想开始一个新的段落,结果得到一个换行符 157 | 在输出时,只需插入一个空行,然后再继续你的文字。 158 | 现在,我们将找出如何控制自动换行。首先,我们将看到如何提高 159 | 自动断行。然后,我们将学习指令直接插入休息。 160 | \subsection{提高断字(Imporving hyphenation)} 161 | 如果你看一下,你会发现在较长的文本,它是优秀的文字是完全有道理的 162 | LaTeX和如何单词之间的间距被均匀的分布上的线。如果有必要, 163 | LaTeX会划分的话,并把连字符的行结束时,为了打破中的行 164 | 更好的办法。 LaTeX的很好的算法已经使用连字符连接的词,但它可能发生 165 | 它不能找到一个可以接受的方式,将一个字。前面的例子指出了这一点 166 | 问题:打破了词的缩写,提高产量,但LaTex不知道 167 | 划分。我们将找出如何解决这个问题。 168 | \subsection{Improving the justification further} 169 | 如今最流行的TeX编译器是pdfTeX,它直接以PDF格式输出。当xxx写了pdfTeX,他 170 | 使用micro-typographic的兼容性扩展了TeX。当我们直接输出pdf时,我们实际上 171 | 是用的pdfLaTeX,并且我们可以使用microtype包来使用它的特性。 172 | \subsection{Breaking lines manually} 173 | 我们可能会选择结束压倒一切的全自动行。有几个命令 174 | 不同的效果。 175 | \subsection{Preventing line breaks} 176 | 命令\textbackslash linebreak有直接的对应:\textbackslash nolinebreak。此命令 177 | 在当前位置防止断行。像它的对手,它带有一个可选的的参数。如果你写\textbackslash nolinebreak[0], 178 | 则建议不断行。使用1,2,或3使得请求更强大和\textbackslash nolinebreak[4]完全禁止它。 179 | 如果你不提供一个参数,则使用的是后者。已经提到的命令,\textbackslash mbox[文字], 180 | 不仅要禁用断字,也避免了换行的完整文本。 181 | 182 | LaTeX可以在字与字之间的空间进行有意义的断行。符号〜标识词间没有空间断行: 183 | 如果你写Dr. ~Watson, 那么Rr.绝不会出现在行末。 184 | \subsection{Managing line breaks wisely} 185 | 坏断字的文件仍然可以消失的增长,说明一些明智的断字规则将不会做任何伤害, 186 | 但可能被证明是有用的。但只使用\textbackslash\textbackslash,\textbackslash newline, 187 | and \textbackslash linebreak 来调整您的文档的最终版本!当你还在编辑你的文字, 188 | 你不需要担心换行。他们仍然在写作过程中可能会改变。难看理由可能有所变动, 189 | 不干预变得更好。另一方面,如果你手动换行,但后来插入文本之前,其结果可能是 190 | 不必要的短行。 191 | 192 | 所以,不要浪费你的能量格式化而你正在写的文本。 193 | \subsection{Exploring the fine details} 194 | 印刷字体约定可能需要注意一些小细节,也有不同的破折号,且一个点周围的空间可能 195 | 会有所不同,这取决于上下文。之后的空间一些字母可能取决于以下,以至于一些字母, 196 | 甚至可能被接合到一个单一的。这种结构被称为连字。让我们来仔细看看在他们。 197 | \section{Understanding ligatures} 198 | \subsection{Choosing the rightdash} 199 | \subsection{Setting dots} 200 | \subsection{Setting accents} 201 | \section{Using special characters directly in the editor} 202 | \section{Truning off full justification} 203 | \section{Creating ragged-left text} 204 | \section{Using environments for justification} 205 | 由于具有对应每个声明都有相对应的环境,我们可以在之前的文本中使用\textbackslash 206 | begin\{centering\}...\textbackslash end\{centering\}。也可以做类似ragged-right 207 | 和ragged-left文本。这里也有一些预定义的环境做类似的事情,但是同时开始一个新的 208 | 段落。 209 | \subsection{Time for action-centering verses} 210 | 让我们重用fragment of 诗"Annabel Lee"。这次我们将居中所有erses: 211 | \begin{lstlisting}[language={[LaTeX]TeX}] 212 | \documentclass{article} 213 | \usepackage{url} 214 | \begin{document} 215 | \noindent This is the beginning of a poem 216 | by Edgar Allan Poe: 217 | \begin{center} 218 | \emph{Annabel Lee} 219 | \end{center} 220 | \begin{center} 221 | It was many and many a year ago,\\ 222 | In a kingdom by the sea,\\ 223 | That a maiden there lived whom you may know\\ 224 | By the name of Annabel Lee 225 | \end{center} 226 | The complete poem can be read on 227 | \url{http://www.online-literature.com/poe/576/}. 228 | \end{document} 229 | \end{lstlisting} 230 | 我们使用\textbackslash开始来避免段落缩进。\textbackslash\{center\}开始了 231 | 居中环境。它开始了一个新段落,留下一些空白to the preceding text。\textbackslash \{center\} 232 | 结束了环境。我们两次使用环境。第二次,我们插入了\textbackslash \textbackslash来 233 | 结束erses。 234 | 235 | 在center环境结束之后,有一些空白接着,下一个段落began at the left margin。 236 | 237 | 对应于ragged-right text的环境叫做flushleft,ragged-left的叫做flushright。 238 | \section{显示引用} 239 | 想象一下你的作品中有其他作者的引用。如果只是简单的插入到文本中的话将会使得难以 240 | 阅读。一种常用的提高可读性的方式是:设置这些文本两边缩进。 241 | \subsection{Time for action-quoting a scientist} 242 | 我们将引用著名物理学家的思想。 243 | \begin{lstlisting}[language={[LaTeX]TeX}] 244 | \documentclass{article} 245 | \begin{document} 246 | Niels Bohr said: ``An expert is a person who has made 247 | all the mistakes that can be made in a very narrow field.'' 248 | Albert Einstein said: 249 | \begin{quote} 250 | Anyone who has never made a mistake has never tried anything new. 251 | \end{quote} 252 | Errors are inevitable. So, let's be brave trying something new. 253 | \end{document} 254 | \end{lstlisting} 255 | 首先我们使用了行内引用。产生了一个左引号;这个字符也称作backtick。产生了个右 256 | 引号。我们只是键入两个这样的符号来获得双引号。 257 | 258 | 然后我们使用quote 环境来显示引用。我们并没有开始一个新的段落,因为引用已经 259 | 设置了缩进。这就是我们在环境中前后不使用空行的原因。 260 | \section{引用更长的文本} 261 | 当你写短的引用的时候,the quote environment 看起来非常好。然而,当你需要引用的 262 | 文本有好几段的时候,你可能会希望获得与环绕文字相通的缩进格式。The quotation 263 | environment将会为你解决问题。 264 | \subsection{Time for action-quioting TeX's benefits} 265 | \begin{lstlisting}[language={[LaTeX]TeX}] 266 | \documentclass{article} 267 | \usepackage{url} 268 | \begin{document} 269 | The authors of the CTAN team listed ten good reasons 270 | for using \TeX. Among them are: 271 | \begin{quotation} 272 | \TeX\ has the best output. What you end with, 273 | the symbols on the page, is as useable, and beautiful, 274 | as a non-professional can produce. 275 | \TeX\ knows typesetting. As those plain text samples 276 | show, \TeX's has more sophisticated typographical algorithms 277 | such as those for making paragraphs and for hyphenating. 278 | \TeX\ is fast. On today's machines \TeX\ is very fast. 279 | It is easy on memory and disk space, too. 280 | \TeX\ is stable. It is in wide use, with a long history. 281 | It has been tested by millions of users, on demanding input. 282 | It will never eat your document. Never. 283 | \end{quotation} 284 | The original text can be found on 285 | \url{ http://www.ctan.org/what_is_tex.html}. 286 | \end{document} 287 | \end{lstlisting} 288 | 在这里,我们使用了quotation 环境来显示一些段落。就像在正常文本中一样,使用空行 289 | 分割段落。它们使用左缩进,就像在我们的正文中一样。 290 | 291 | 但是如果我们不希望缩进呢?让我们看看解决方案。 292 | \subsection{Time for action-spacing between paragraphs instead of indentation} 293 | 我们希望避免段落缩进,相反的 ,我们使用一些垂直空白来分割段落。 294 | \begin{lstlisting}[language={[LaTeX]TeX}] 295 | \documentclass{article} 296 | \usepackage{parskip} 297 | \usepackage{url} 298 | \begin{document} 299 | The authors of the CTAN team listed ten good reasons 300 | for using \TeX. Among them are: 301 | \TeX\ has the best output. What you end with, 302 | the symbols on the page, is as useable, and beautiful, 303 | as a non-professional can produce\ldots 304 | The original text can be found on 305 | \url{ http://www.ctan.org/what_is_tex.html}. 306 | \end{document} 307 | \end{lstlisting} 308 | 第二行显示了我们加载了parskip包。它的唯一目的是完全消除段落缩进。同时,这个包 309 | 引进了段落之间的skip。但是这个包并不影响quotation 环境的定义-你仍然可以使用 310 | quote环境。 311 | 为了区别段落,有两种方法可供选择。一种是缩进每个段落的开头;这个LaTeX的默认 312 | 风格。另一种是在段落之间插入垂直空白wihle omitting the indentation,这在那些 313 | 特别窄的列缩进会话费太多width的地方是比较适合的。 314 | \section{Pop quiz-lines and paragraphs} 315 | \section{Summary} 316 | 在这一章中,我们学习了一些基本技能:编辑、排列和格式化文本。 317 | 318 | 特别地,涵盖了: 319 | 320 | 更改字体的形状和风格 321 | 断行和提高断字 322 | Controling justification of text 323 | 324 | 我们了解了基本的LaTeX概念: 325 | 命令和声明,必须参数和可选参数 326 | 定义新命令 327 | 使用环境 328 | 使用包,如何加载和包的选项 329 | 330 | 需要记住一点是,我们直接在文本中直接使用了格式化命令,你需要在在前言中命令定义 331 | 使用它们以利于将来修改。在你的学习和写作过程中,你可能会知道更多的命令和包可以 332 | 提高你之前写的命令。 333 | 我们学到了常用的技能: 334 | 经可能多地写自己的macros to archieve a logical structure. 收益将会是整个文档 335 | 都变得容易修改。 336 | Deal with line or page breaking issues at the earliest when you go for your 337 | final version. 338 | 339 | 现在既然我们学到了格式化文本的细节,我们就准备好进入下一章处理格式化和布局整个 340 | 页面和文档。 341 | -------------------------------------------------------------------------------- /test/test.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.1415926-2.2-0.9995.2 (TeX Live 2009/Debian) (format=xelatex 2012.10.23) 27 OCT 2012 16:56 2 | entering extended mode 3 | %&-line parsing enabled. 4 | **test.tex 5 | (./test.tex 6 | LaTeX2e <2009/09/24> 7 | Babel and hyphenation patterns for english, usenglishmax, dumylang, noh 8 | yphenation, pinyin, loaded. 9 | (/usr/share/texmf-texlive/tex/latex/base/book.cls 10 | Document Class: book 2007/10/19 v1.4h Standard LaTeX document class 11 | (/usr/share/texmf-texlive/tex/latex/base/bk10.clo 12 | File: bk10.clo 2007/10/19 v1.4h Standard LaTeX file (size option) 13 | ) 14 | \c@part=\count80 15 | \c@chapter=\count81 16 | \c@section=\count82 17 | \c@subsection=\count83 18 | \c@subsubsection=\count84 19 | \c@paragraph=\count85 20 | \c@subparagraph=\count86 21 | \c@figure=\count87 22 | \c@table=\count88 23 | \abovecaptionskip=\skip41 24 | \belowcaptionskip=\skip42 25 | \bibindent=\dimen102 26 | ) 27 | (/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty 28 | Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR) 29 | 30 | (/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty 31 | Package: keyval 1999/03/16 v1.13 key=value parser (DPC) 32 | \KV@toks@=\toks14 33 | ) 34 | (/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty 35 | Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR) 36 | 37 | (/usr/share/texmf-texlive/tex/latex/graphics/trig.sty 38 | Package: trig 1999/03/16 v1.09 sin cos tan (DPC) 39 | ) 40 | (/etc/texmf/tex/latex/config/graphics.cfg 41 | File: graphics.cfg 2009/08/28 v1.8 graphics configuration of TeX Live 42 | ) 43 | Package graphics Info: Driver file: xetex.def on input line 91. 44 | 45 | (/usr/share/texmf-texlive/tex/xelatex/xetex-def/xetex.def 46 | File: xetex.def 2009/11/22 v0.94 LaTeX color/graphics driver for XeTeX (RRM/JK) 47 | 48 | )) 49 | \Gin@req@height=\dimen103 50 | \Gin@req@width=\dimen104 51 | ) 52 | (/usr/share/texmf-texlive/tex/xelatex/fontspec/fontspec.sty 53 | Package: fontspec 2008/08/09 v1.18 Advanced font selection for XeLaTeX 54 | 55 | (/usr/share/texmf-texlive/tex/generic/ifxetex/ifxetex.sty 56 | Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional 57 | ) 58 | \c@zf@newff=\count89 59 | \c@zf@index=\count90 60 | \c@zf@script=\count91 61 | \c@zf@language=\count92 62 | 63 | (/usr/share/texmf-texlive/tex/latex/tools/calc.sty 64 | Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ) 65 | \calc@Acount=\count93 66 | \calc@Bcount=\count94 67 | \calc@Adimen=\dimen105 68 | \calc@Bdimen=\dimen106 69 | \calc@Askip=\skip43 70 | \calc@Bskip=\skip44 71 | LaTeX Info: Redefining \setlength on input line 76. 72 | LaTeX Info: Redefining \addtolength on input line 77. 73 | \calc@Ccount=\count95 74 | \calc@Cskip=\skip45 75 | ) 76 | (/usr/share/texmf-texlive/tex/latex/xkeyval/xkeyval.sty 77 | Package: xkeyval 2008/08/13 v2.6a package option processing (HA) 78 | 79 | (/usr/share/texmf-texlive/tex/generic/xkeyval/xkeyval.tex 80 | \XKV@toks=\toks15 81 | \XKV@tempa@toks=\toks16 82 | \XKV@depth=\count96 83 | File: xkeyval.tex 2008/08/13 v2.6a key=value parser (HA) 84 | )) 85 | (/usr/share/texmf-texlive/tex/latex/base/fontenc.sty 86 | Package: fontenc 2005/09/27 v1.99g Standard LaTeX package 87 | 88 | (/usr/share/texmf-texlive/tex/xelatex/euenc/eu1enc.def 89 | File: eu1enc.def 2008/03/08 v0.1d Experimental unicode font encoding 90 | ) 91 | LaTeX Font Info: Try loading font information for EU1+lmr on input line 100. 92 | 93 | 94 | (/usr/share/texmf-texlive/tex/xelatex/euenc/eu1lmr.fd 95 | File: eu1lmr.fd 2007/01/14 v1.3 Font defs for Latin Modern 96 | )) 97 | LaTeX Info: Redefining \itshape on input line 1163. 98 | LaTeX Info: Redefining \slshape on input line 1166. 99 | LaTeX Info: Redefining \scshape on input line 1169. 100 | LaTeX Info: Redefining \upshape on input line 1172. 101 | 102 | fontspec.cfg loaded. 103 | (/usr/share/texmf-texlive/tex/xelatex/fontspec/fontspec.cfg)) 104 | \c@zf@famc@Adobe Fangsong Std R=\count97 105 | Package fontspec Info: Defining font family for 'Adobe Fangsong Std R' with opt 106 | ions [] on input line 4. 107 | Package fontspec Info: Could not resolve font Adobe Fangsong Std R/B (it might 108 | not exist) on input line 4. 109 | Package fontspec Info: Could not resolve font Adobe Fangsong Std R/I (it might 110 | not exist) on input line 4. 111 | Package fontspec Info: Could not resolve font Adobe Fangsong Std R/BI (it might 112 | not exist) on input line 4. 113 | 114 | 115 | LaTeX Warning: Unused global option(s): 116 | [UTF-8,hyperref]. 117 | 118 | (./test.aux) 119 | \openout1 = `test.aux'. 120 | 121 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 9. 122 | LaTeX Font Info: ... okay on input line 9. 123 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 9. 124 | LaTeX Font Info: ... okay on input line 9. 125 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 9. 126 | LaTeX Font Info: ... okay on input line 9. 127 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 9. 128 | LaTeX Font Info: ... okay on input line 9. 129 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 9. 130 | LaTeX Font Info: ... okay on input line 9. 131 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 9. 132 | LaTeX Font Info: ... okay on input line 9. 133 | LaTeX Font Info: Checking defaults for EU1/lmr/m/n on input line 9. 134 | LaTeX Font Info: ... okay on input line 9. 135 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid this). 136 | on input line 9. 137 | \symlegacymaths=\mathgroup4 138 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 139 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 9. 140 | LaTeX Font Info: Redeclaring math accent \acute on input line 9. 141 | LaTeX Font Info: Redeclaring math accent \grave on input line 9. 142 | LaTeX Font Info: Redeclaring math accent \ddot on input line 9. 143 | LaTeX Font Info: Redeclaring math accent \tilde on input line 9. 144 | LaTeX Font Info: Redeclaring math accent \bar on input line 9. 145 | LaTeX Font Info: Redeclaring math accent \breve on input line 9. 146 | LaTeX Font Info: Redeclaring math accent \check on input line 9. 147 | LaTeX Font Info: Redeclaring math accent \hat on input line 9. 148 | LaTeX Font Info: Redeclaring math accent \dot on input line 9. 149 | LaTeX Font Info: Redeclaring math accent \mathring on input line 9. 150 | LaTeX Font Info: Redeclaring math symbol \colon on input line 9. 151 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 9. 152 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 9. 153 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 9. 154 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 9. 155 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 9. 156 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 9. 157 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 9. 158 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 9. 159 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 9. 160 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 9. 161 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 9. 162 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 9. 163 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 9. 164 | LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font 165 | (Font) `operators' in the math version `normal' on input line 9. 166 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 167 | (Font) OT1/cmr/m/n --> EU1/AdobeFangsongStdR(0)/m/n on input l 168 | ine 9. 169 | LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font 170 | (Font) `operators' in the math version `bold' on input line 9. 171 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 172 | (Font) OT1/cmr/bx/n --> EU1/AdobeFangsongStdR(0)/m/n on input 173 | line 9. 174 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 175 | (Font) EU1/AdobeFangsongStdR(0)/m/n --> EU1/AdobeFangsongStdR( 176 | 0)/m/n on input line 9. 177 | LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal' 178 | (Font) EU1/AdobeFangsongStdR(0)/m/n --> EU1/AdobeFangsongStdR( 179 | 0)/m/n on input line 9. 180 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 181 | (Font) OT1/cmr/m/it --> EU1/AdobeFangsongStdR(0)/m/it on input 182 | line 9. 183 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 184 | (Font) OT1/cmr/bx/n --> EU1/AdobeFangsongStdR(0)/bx/n on input 185 | line 9. 186 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 187 | (Font) OT1/cmss/m/n --> EU1/lmss/m/n on input line 9. 188 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 189 | (Font) OT1/cmtt/m/n --> EU1/lmtt/m/n on input line 9. 190 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 191 | (Font) EU1/AdobeFangsongStdR(0)/m/n --> EU1/AdobeFangsongStdR( 192 | 0)/bx/n on input line 9. 193 | LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold' 194 | (Font) EU1/AdobeFangsongStdR(0)/m/n --> EU1/AdobeFangsongStdR( 195 | 0)/bx/n on input line 9. 196 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 197 | (Font) OT1/cmr/bx/it --> EU1/AdobeFangsongStdR(0)/bx/it on inp 198 | ut line 9. 199 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 200 | (Font) OT1/cmss/bx/n --> EU1/lmss/bx/n on input line 9. 201 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 202 | (Font) OT1/cmtt/m/n --> EU1/lmtt/bx/n on input line 9. 203 | LaTeX Font Info: Font shape `EU1/AdobeFangsongStdR(0)/bx/n' undefined 204 | (Font) using `EU1/AdobeFangsongStdR(0)/m/n' instead on input line 205 | 16. 206 | File: ./icon.png Graphic file (type QTm) 207 | [1 208 | 209 | 210 | ] [2 211 | 212 | ] 213 | LaTeX Font Info: External font `cmex10' loaded for size 214 | (Font) <12> on input line 48. 215 | LaTeX Font Info: External font `cmex10' loaded for size 216 | (Font) <8> on input line 48. 217 | LaTeX Font Info: External font `cmex10' loaded for size 218 | (Font) <6> on input line 48. 219 | [1] [2 220 | 221 | ] (./test.toc 222 | LaTeX Font Info: External font `cmex10' loaded for size 223 | (Font) <7> on input line 3. 224 | LaTeX Font Info: External font `cmex10' loaded for size 225 | (Font) <5> on input line 3. 226 | ) 227 | \tf@toc=\write3 228 | \openout3 = `test.toc'. 229 | 230 | [3] [4 231 | 232 | ] [5] 233 | [6] 234 | Chapter 1. 235 | 236 | Overfull \hbox (16.38663pt too wide) in paragraph at lines 73--78 237 | \EU1/AdobeFangsongStdR(0)/bx/n/10 HHelloHelloHelloHelloHelloHelloHelloH[] ello 238 | HelloHelloHelloHelloHello HelloHel- 239 | [] 240 | 241 | 242 | Overfull \hbox (9.08238pt too wide) in paragraph at lines 73--78 243 | \EU1/AdobeFangsongStdR(0)/bx/n/10 loHelloHelloHelloHelloHelloHell oHelloHelloHe 244 | lloHelloHelloH elloHelloHelloHel- 245 | [] 246 | 247 | 248 | Overfull \hbox (18.72662pt too wide) in paragraph at lines 81--90 249 | \EU1/AdobeFangsongStdR(0)/bx/n/10 HHelloHelloHelloHelloHelloHelloHelloH[] lloH 250 | elloHello HHelloHelloHelloHelloHel- 251 | [] 252 | 253 | 254 | Overfull \hbox (9.08238pt too wide) in paragraph at lines 81--90 255 | \EU1/AdobeFangsongStdR(0)/bx/n/10 loHelloHelloH elloHelloHelloHelloHelloHello H 256 | elloHelloHelloHelloHelloHelloHel- 257 | [] 258 | 259 | 260 | Overfull \hbox (10.94905pt too wide) in paragraph at lines 81--90 261 | \EU1/AdobeFangsongStdR(0)/bx/n/10 loHell oHelloHelloHelloHelloHelloH elloHelloH 262 | elloHelloHelloHelloHelloHell oHel- 263 | [] 264 | 265 | 266 | Overfull \hbox (8.6133pt too wide) in paragraph at lines 92--97 267 | []\EU1/AdobeFangsongStdR(0)/bx/n/10 elloHelloHelloHelloHelloHello HelloHelloHel 268 | loHelloHelloHelloHelloHell oHel- 269 | [] 270 | 271 | 272 | Overfull \hbox (9.08238pt too wide) in paragraph at lines 92--97 273 | \EU1/AdobeFangsongStdR(0)/bx/n/10 loHelloHelloHelloHelloH elloHelloHelloHelloHe 274 | lloHelloHelloHell oHelloHelloHel- 275 | [] 276 | 277 | 278 | Overfull \hbox (8.6133pt too wide) in paragraph at lines 99--104 279 | []\EU1/AdobeFangsongStdR(0)/bx/n/10 elloHelloHelloHelloHelloHello HelloHelloHel 280 | loHelloHelloHelloHelloHell oHel- 281 | [] 282 | 283 | 284 | Overfull \hbox (9.08238pt too wide) in paragraph at lines 99--104 285 | \EU1/AdobeFangsongStdR(0)/bx/n/10 loHelloHelloHelloHelloH elloHelloHelloHelloHe 286 | lloHelloHelloHell oHelloHelloHel- 287 | [] 288 | 289 | 290 | Overfull \hbox (8.6133pt too wide) in paragraph at lines 106--111 291 | []\EU1/AdobeFangsongStdR(0)/bx/n/10 elloHelloHelloHelloHelloHello HelloHelloHel 292 | loHelloHelloHelloHelloHell oHel- 293 | [] 294 | 295 | 296 | Overfull \hbox (9.08238pt too wide) in paragraph at lines 106--111 297 | \EU1/AdobeFangsongStdR(0)/bx/n/10 loHelloHelloHelloHelloH elloHelloHelloHelloHe 298 | lloHelloHelloHell oHelloHelloHel- 299 | [] 300 | 301 | 302 | Overfull \hbox (8.6133pt too wide) in paragraph at lines 113--118 303 | []\EU1/AdobeFangsongStdR(0)/bx/n/10 elloHelloHelloHelloHelloHello HelloHelloHel 304 | loHelloHelloHelloHelloHell oHel- 305 | [] 306 | 307 | 308 | Overfull \hbox (9.08238pt too wide) in paragraph at lines 113--118 309 | \EU1/AdobeFangsongStdR(0)/bx/n/10 loHelloHelloHelloHelloH elloHelloHelloHelloHe 310 | lloHelloHelloHell oHelloHelloHel- 311 | [] 312 | 313 | [7 314 | 315 | ] [8 316 | 317 | ] [9] [10] 318 | Chapter 2. 319 | [11 320 | 321 | ] [12 322 | 323 | ] 324 | Appendix A. 325 | [13] [14 326 | 327 | ] 328 | Appendix B. 329 | [15] (./test.aux) 330 | LaTeX Font Info: Some font shapes were not available, defaults substituted. 331 | ) 332 | Here is how much of TeX's memory you used: 333 | 2600 strings out of 495713 334 | 49810 string characters out of 1188882 335 | 127915 words of memory out of 3000000 336 | 5736 multiletter control sequences out of 15000+50000 337 | 6480 words of font info for 36 fonts, out of 3000000 for 9000 338 | 28 hyphenation exceptions out of 8191 339 | 27i,8n,32p,464b,265s stack positions out of 5000i,500n,10000p,200000b,50000s 340 | 341 | Output written on test.pdf (17 pages). 342 | -------------------------------------------------------------------------------- /book.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.1415926-2.2-0.9995.2 (TeX Live 2009/Debian) (format=xelatex 2012.10.23) 30 OCT 2012 00:16 2 | entering extended mode 3 | %&-line parsing enabled. 4 | **book.tex 5 | (./book.tex 6 | LaTeX2e <2009/09/24> 7 | Babel and hyphenation patterns for english, usenglishmax, dumylang, noh 8 | yphenation, pinyin, loaded. 9 | (/usr/share/texmf-texlive/tex/latex/base/book.cls 10 | Document Class: book 2007/10/19 v1.4h Standard LaTeX document class 11 | (/usr/share/texmf-texlive/tex/latex/base/bk10.clo 12 | File: bk10.clo 2007/10/19 v1.4h Standard LaTeX file (size option) 13 | ) 14 | \c@part=\count80 15 | \c@chapter=\count81 16 | \c@section=\count82 17 | \c@subsection=\count83 18 | \c@subsubsection=\count84 19 | \c@paragraph=\count85 20 | \c@subparagraph=\count86 21 | \c@figure=\count87 22 | \c@table=\count88 23 | \abovecaptionskip=\skip41 24 | \belowcaptionskip=\skip42 25 | \bibindent=\dimen102 26 | ) 27 | \@input{preamble.aux} 28 | \openout2 = `preamble.aux'. 29 | 30 | (./preamble.tex (/usr/share/texmf-texlive/tex/xelatex/xltxtra/xltxtra.sty 31 | Package: xltxtra 2009/09/02 v0.5 Improvements for the "XeLaTeX" format 32 | 33 | (/usr/share/texmf-texlive/tex/generic/ifxetex/ifxetex.sty 34 | Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional 35 | ) 36 | (/usr/share/texmf-texlive/tex/xelatex/fontspec/fontspec.sty 37 | Package: fontspec 2008/08/09 v1.18 Advanced font selection for XeLaTeX 38 | \c@zf@newff=\count89 39 | \c@zf@index=\count90 40 | \c@zf@script=\count91 41 | \c@zf@language=\count92 42 | 43 | (/usr/share/texmf-texlive/tex/latex/tools/calc.sty 44 | Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ) 45 | \calc@Acount=\count93 46 | \calc@Bcount=\count94 47 | \calc@Adimen=\dimen103 48 | \calc@Bdimen=\dimen104 49 | \calc@Askip=\skip43 50 | \calc@Bskip=\skip44 51 | LaTeX Info: Redefining \setlength on input line 76. 52 | LaTeX Info: Redefining \addtolength on input line 77. 53 | \calc@Ccount=\count95 54 | \calc@Cskip=\skip45 55 | ) 56 | (/usr/share/texmf-texlive/tex/latex/xkeyval/xkeyval.sty 57 | Package: xkeyval 2008/08/13 v2.6a package option processing (HA) 58 | 59 | (/usr/share/texmf-texlive/tex/generic/xkeyval/xkeyval.tex 60 | \XKV@toks=\toks14 61 | \XKV@tempa@toks=\toks15 62 | \XKV@depth=\count96 63 | File: xkeyval.tex 2008/08/13 v2.6a key=value parser (HA) 64 | 65 | (/usr/share/texmf-texlive/tex/generic/xkeyval/keyval.tex))) 66 | (/usr/share/texmf-texlive/tex/latex/base/fontenc.sty 67 | Package: fontenc 2005/09/27 v1.99g Standard LaTeX package 68 | 69 | (/usr/share/texmf-texlive/tex/xelatex/euenc/eu1enc.def 70 | File: eu1enc.def 2008/03/08 v0.1d Experimental unicode font encoding 71 | ) 72 | LaTeX Font Info: Try loading font information for EU1+lmr on input line 100. 73 | 74 | 75 | (/usr/share/texmf-texlive/tex/xelatex/euenc/eu1lmr.fd 76 | File: eu1lmr.fd 2007/01/14 v1.3 Font defs for Latin Modern 77 | )) 78 | LaTeX Info: Redefining \itshape on input line 1163. 79 | LaTeX Info: Redefining \slshape on input line 1166. 80 | LaTeX Info: Redefining \scshape on input line 1169. 81 | LaTeX Info: Redefining \upshape on input line 1172. 82 | 83 | fontspec.cfg loaded. 84 | (/usr/share/texmf-texlive/tex/xelatex/fontspec/fontspec.cfg)) 85 | (/usr/share/texmf-texlive/tex/xelatex/xunicode/xunicode.sty 86 | File: xunicode.sty 2008/02/08 v0.91 provides access to latin accents and many o 87 | ther characters in Unicode lower plane 88 | ) 89 | (/usr/share/texmf-texlive/tex/latex/metalogo/metalogo.sty 90 | Package: metalogo 2009/09/04 v0.11 Extended TeX logo macros 91 | 92 | (/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty 93 | Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR) 94 | 95 | (/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty 96 | Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR) 97 | 98 | (/usr/share/texmf-texlive/tex/latex/graphics/trig.sty 99 | Package: trig 1999/03/16 v1.09 sin cos tan (DPC) 100 | ) 101 | (/etc/texmf/tex/latex/config/graphics.cfg 102 | File: graphics.cfg 2009/08/28 v1.8 graphics configuration of TeX Live 103 | ) 104 | Package graphics Info: Driver file: xetex.def on input line 91. 105 | 106 | (/usr/share/texmf-texlive/tex/xelatex/xetex-def/xetex.def 107 | File: xetex.def 2009/11/22 v0.94 LaTeX color/graphics driver for XeTeX (RRM/JK) 108 | 109 | )) 110 | \Gin@req@height=\dimen105 111 | \Gin@req@width=\dimen106 112 | ) 113 | \xl@everylogo=\toks16 114 | \xl@@everylogo=\toks17 115 | LaTeX Info: Redefining \TeX on input line 193. 116 | LaTeX Info: Redefining \LaTeX on input line 202. 117 | LaTeX Info: Redefining \LaTeXe on input line 219. 118 | ) 119 | (/usr/share/texmf-texlive/tex/latex/etex-pkg/etex.sty 120 | Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB) 121 | \et@xins=\count97 122 | ) 123 | (/usr/share/texmf-texlive/tex/latex/base/fixltx2e.sty 124 | Package: fixltx2e 2006/09/13 v1.1m fixes to LaTeX 125 | LaTeX Info: Redefining \em on input line 420. 126 | ) 127 | LaTeX Info: Redefining \em on input line 72. 128 | LaTeX Info: Redefining \emph on input line 81. 129 | LaTeX Info: Redefining \- on input line 86. 130 | LaTeX Info: Redefining \textsubscript on input line 105. 131 | LaTeX Info: Redefining \textsuperscript on input line 107. 132 | \xxt@tempbox=\box26 133 | ) 134 | (/usr/share/texmf-texlive/tex/xelatex/xecjk/xeCJK.sty 135 | Package: xeCJK 2009/09/30 2.3.10 136 | \xeCJK@cnta=\count98 137 | \xeCJK@cntb=\count99 138 | \xeCJK@cntc=\count100 139 | \xeCJK@cntd=\count101 140 | \xeCJK@cnte=\count102 141 | \xeCJK@dima=\dimen107 142 | LaTeX Info: Redefining \rmfamily on input line 762. 143 | LaTeX Info: Redefining \sffamily on input line 766. 144 | LaTeX Info: Redefining \ttfamily on input line 770. 145 | \xeCJK@featureadded=\count103 146 | ) 147 | \c@zf@famc@Adobe Song Std=\count104 148 | Package fontspec Info: Defining font family for 'Adobe Song Std'with options [, 149 | BoldItalicFont={Adobe Heiti Std},BoldItalicFeatures={RawFeature={slant=0.17}},B 150 | oldFont={Adobe Heiti Std},ItalicFont={Adobe Kaiti Std}] on input line 30. 151 | LaTeX Info: Redefining \xeCJK@font@rm on input line 30. 152 | \c@zf@famc@Adobe Kaiti Std=\count105 153 | Package fontspec Info: Defining font family for 'Adobe Kaiti Std'with options [ 154 | ItalicFont={Adobe Kaiti Std},ItalicFeatures={RawFeature={slant=0.17}},BoldItali 155 | cFont={Adobe Heiti Std},BoldItalicFeatures={RawFeature={slant=0.17}},BoldFont={ 156 | Adobe Heiti Std}] on input line 32. 157 | \c@zf@famc@Adobe Heiti Std=\count106 158 | Package fontspec Info: Defining font family for 'Adobe Heiti Std'with options [ 159 | BoldFont={Adobe Heiti Std},BoldFeatures={RawFeature={embolden=4}},ItalicFont={A 160 | dobe Heiti Std},ItalicFeatures={RawFeature={slant=0.17}},BoldItalicFont={Adobe 161 | Heiti Std},BoldItalicFeatures={RawFeature={embolden=4,slant=0.17}}] on input li 162 | ne 34. 163 | \c@zf@famc@DejaVu Serif=\count107 164 | Package fontspec Info: Defining font family for 'DejaVu Serif'with options [] o 165 | n input line 37. 166 | \c@zf@famc@DejaVu Sans Mono=\count108 167 | Package fontspec Info: Defining font family for 'DejaVu Sans Mono'with options 168 | [] on input line 39. 169 | \c@zf@famc@DejaVu Sans=\count109 170 | Package fontspec Info: Defining font family for 'DejaVu Sans'with options [] on 171 | input line 41. 172 | Package fontspec Info: Defining font family for 'Adobe Song Std'with options [B 173 | oldFont={Adobe Song Std},BoldFeatures={RawFeature={embolden=4}},ItalicFont={Ado 174 | be Song Std},ItalicFeatures={RawFeature={slant=0.17}},BoldItalicFont={Adobe Son 175 | g Std},BoldItalicFeatures={RawFeature={embolden=4,slant=0.17}}] on input line 4 176 | 4. 177 | Package fontspec Info: Defining font family for 'Adobe Kaiti Std'with options [ 178 | BoldFont={Adobe Kaiti Std},BoldFeatures={RawFeature={embolden=4}},ItalicFont={A 179 | dobe Kaiti Std},ItalicFeatures={RawFeature={slant=0.17}},BoldItalicFont={Adobe 180 | Kaiti Std},BoldItalicFeatures={RawFeature={embolden=4,slant=0.17}}] on input li 181 | ne 45. 182 | \c@zf@famc@Adobe Fangsong Std=\count110 183 | Package fontspec Info: Defining font family for 'Adobe Fangsong Std'with option 184 | s [BoldFont={Adobe Fangsong Std},BoldFeatures={RawFeature={embolden=4}},ItalicF 185 | ont={Adobe Fangsong Std},ItalicFeatures={RawFeature={slant=0.17}},BoldItalicFon 186 | t={Adobe Fangsong Std},BoldItalicFeatures={RawFeature={embolden=4,slant=0.17}}] 187 | on input line 47. 188 | \c@zf@famc@LiSu=\count111 189 | Package fontspec Info: Defining font family for 'LiSu'with options [BoldFont={L 190 | iSu},BoldFeatures={RawFeature={embolden=4}},ItalicFont={LiSu},ItalicFeatures={R 191 | awFeature={slant=0.17}},BoldItalicFont={LiSu},BoldItalicFeatures={RawFeature={e 192 | mbolden=4,slant=0.17}}] on input line 48. 193 | \c@zf@famc@YouYuan=\count112 194 | Package fontspec Info: Defining font family for 'YouYuan'with options [BoldFont 195 | ={YouYuan},BoldFeatures={RawFeature={embolden=4}},ItalicFont={YouYuan},ItalicFe 196 | atures={RawFeature={slant=0.17}},BoldItalicFont={YouYuan},BoldItalicFeatures={R 197 | awFeature={embolden=4,slant=0.17}}] on input line 49. 198 | \c@example=\count113 199 | \c@algorithm=\count114 200 | \c@theorem=\count115 201 | \c@definition=\count116 202 | \c@axiom=\count117 203 | \c@property=\count118 204 | \c@proposition=\count119 205 | \c@lemma=\count120 206 | \c@corollary=\count121 207 | \c@remark=\count122 208 | \c@condition=\count123 209 | \c@conclusion=\count124 210 | \c@assumption=\count125 211 | 212 | (/usr/share/texmf-texlive/tex/latex/geometry/geometry.sty 213 | Package: geometry 2008/12/21 v4.2 Page Geometry 214 | 215 | (/usr/share/texmf-texlive/tex/generic/oberdiek/ifpdf.sty 216 | Package: ifpdf 2009/04/10 v2.0 Provides the ifpdf switch (HO) 217 | Package ifpdf Info: pdfTeX in pdf mode not detected. 218 | ) 219 | (/usr/share/texmf-texlive/tex/generic/oberdiek/ifvtex.sty 220 | Package: ifvtex 2008/11/04 v1.4 Switches for detecting VTeX and its modes (HO) 221 | Package ifvtex Info: VTeX not detected. 222 | ) 223 | \Gm@cnth=\count126 224 | \Gm@cntv=\count127 225 | \c@Gm@tempcnt=\count128 226 | \Gm@bindingoffset=\dimen108 227 | \Gm@wd@mp=\dimen109 228 | \Gm@odd@mp=\dimen110 229 | \Gm@even@mp=\dimen111 230 | \Gm@dimlist=\toks18 231 | 232 | (/usr/share/texmf-texlive/tex/xelatex/xetexconfig/geometry.cfg)) 233 | (/usr/share/texmf-texlive/tex/latex/tools/enumerate.sty 234 | Package: enumerate 1999/03/05 v3.00 enumerate extensions (DPC) 235 | \@enLab=\toks19 236 | ) 237 | (/usr/share/texmf-texlive/tex/latex/tools/multicol.sty 238 | Package: multicol 2008/12/05 v1.6h multicolumn formatting (FMi) 239 | \c@tracingmulticols=\count129 240 | \mult@box=\box27 241 | \multicol@leftmargin=\dimen112 242 | \c@unbalance=\count130 243 | \c@collectmore=\count131 244 | \doublecol@number=\count132 245 | \multicoltolerance=\count133 246 | \multicolpretolerance=\count134 247 | \full@width=\dimen113 248 | \page@free=\dimen114 249 | \premulticols=\dimen115 250 | \postmulticols=\dimen116 251 | \multicolsep=\skip46 252 | \multicolbaselineskip=\skip47 253 | \partial@page=\box28 254 | \last@line=\box29 255 | \mult@rightbox=\box30 256 | \mult@grightbox=\box31 257 | \mult@gfirstbox=\box32 258 | \mult@firstbox=\box33 259 | \@tempa=\box34 260 | \@tempa=\box35 261 | \@tempa=\box36 262 | \@tempa=\box37 263 | \@tempa=\box38 264 | \@tempa=\box39 265 | \@tempa=\box40 266 | \@tempa=\box41 267 | \@tempa=\box42 268 | \@tempa=\box43 269 | \@tempa=\box44 270 | \@tempa=\box45 271 | \@tempa=\box46 272 | \@tempa=\box47 273 | \@tempa=\box48 274 | \@tempa=\box49 275 | \@tempa=\box50 276 | \c@columnbadness=\count135 277 | \c@finalcolumnbadness=\count136 278 | \last@try=\dimen117 279 | \multicolovershoot=\dimen118 280 | \multicolundershoot=\dimen119 281 | \mult@nat@firstbox=\box51 282 | \colbreak@box=\box52 283 | ) 284 | (/usr/share/texmf-texlive/tex/latex/hyperref/hyperref.sty 285 | Package: hyperref 2009/10/09 v6.79a Hypertext links for LaTeX 286 | 287 | (/usr/share/texmf-texlive/tex/latex/oberdiek/hycolor.sty 288 | Package: hycolor 2009/10/02 v1.5 Code for color options of hyperref/bookmark (H 289 | O) 290 | 291 | (/usr/share/texmf-texlive/tex/latex/oberdiek/xcolor-patch.sty 292 | Package: xcolor-patch 2009/10/02 xcolor patch 293 | )) 294 | \@linkdim=\dimen120 295 | \Hy@linkcounter=\count137 296 | \Hy@pagecounter=\count138 297 | 298 | (/usr/share/texmf-texlive/tex/latex/hyperref/pd1enc.def 299 | File: pd1enc.def 2009/10/09 v6.79a Hyperref: PDFDocEncoding definition (HO) 300 | ) 301 | (/usr/share/texmf-texlive/tex/generic/oberdiek/etexcmds.sty 302 | Package: etexcmds 2007/12/12 v1.2 Prefix for e-TeX command names (HO) 303 | 304 | (/usr/share/texmf-texlive/tex/generic/oberdiek/infwarerr.sty 305 | Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (HO) 306 | ) 307 | Package etexcmds Info: Could not find \expanded. 308 | (etexcmds) That can mean that you are not using pdfTeX 1.50 or 309 | (etexcmds) that some package has redefined \expanded. 310 | (etexcmds) In the latter case, load this package earlier. 311 | ) 312 | (/usr/share/texmf-texlive/tex/xelatex/xetexconfig/hyperref.cfg 313 | File: hyperref.cfg 2008/07/11 v1.2 hyperref configuration for XeLaTeX 314 | ) 315 | (/usr/share/texmf-texlive/tex/latex/oberdiek/kvoptions.sty 316 | Package: kvoptions 2009/08/13 v3.4 Keyval support for LaTeX options (HO) 317 | 318 | (/usr/share/texmf-texlive/tex/generic/oberdiek/kvsetkeys.sty 319 | Package: kvsetkeys 2009/07/30 v1.5 Key value parser with default handler suppor 320 | t (HO) 321 | )) 322 | Package hyperref Info: Option `CJKbookmarks' set `true' on input line 2864. 323 | Package hyperref Info: Option `bookmarks' set `true' on input line 2864. 324 | Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 2864 325 | . 326 | Package hyperref Info: Option `bookmarksopen' set `true' on input line 2864. 327 | Package hyperref Info: Option `colorlinks' set `true' on input line 2864. 328 | Package hyperref Info: Hyper figures OFF on input line 2975. 329 | Package hyperref Info: Link nesting OFF on input line 2980. 330 | Package hyperref Info: Hyper index ON on input line 2983. 331 | Package hyperref Info: Plain pages OFF on input line 2990. 332 | Package hyperref Info: Backreferencing OFF on input line 2995. 333 | 334 | Implicit mode ON; LaTeX internals redefined 335 | Package hyperref Info: Bookmarks ON on input line 3191. 336 | (/usr/share/texmf-texlive/tex/latex/ltxmisc/url.sty 337 | \Urlmuskip=\muskip10 338 | Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc. 339 | ) 340 | LaTeX Info: Redefining \url on input line 3428. 341 | 342 | (/usr/share/texmf-texlive/tex/generic/oberdiek/bitset.sty 343 | Package: bitset 2007/09/28 v1.0 Data type bit set (HO) 344 | 345 | (/usr/share/texmf-texlive/tex/generic/oberdiek/intcalc.sty 346 | Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO) 347 | ) 348 | (/usr/share/texmf-texlive/tex/generic/oberdiek/bigintcalc.sty 349 | Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO) 350 | 351 | (/usr/share/texmf-texlive/tex/generic/oberdiek/pdftexcmds.sty 352 | Package: pdftexcmds 2009/09/23 v0.6 LuaTeX support for pdfTeX utility functions 353 | (HO) 354 | 355 | (/usr/share/texmf-texlive/tex/generic/oberdiek/ifluatex.sty 356 | Package: ifluatex 2009/04/17 v1.2 Provides the ifluatex switch (HO) 357 | Package ifluatex Info: LuaTeX not detected. 358 | ) 359 | (/usr/share/texmf-texlive/tex/generic/oberdiek/ltxcmds.sty 360 | Package: ltxcmds 2009/08/05 v1.0 Some LaTeX kernel commands for general use (HO 361 | ) 362 | ) 363 | Package pdftexcmds Info: LuaTeX not detected. 364 | Package pdftexcmds Info: pdfTeX >= 1.30 not detected. 365 | Package pdftexcmds Info: \pdf@primitive is available. 366 | Package pdftexcmds Info: \pdf@ifprimitive is available. 367 | ))) 368 | \Fld@menulength=\count139 369 | \Field@Width=\dimen121 370 | \Fld@charsize=\dimen122 371 | \Field@toks=\toks20 372 | Package hyperref Info: Hyper figures OFF on input line 4377. 373 | Package hyperref Info: Link nesting OFF on input line 4382. 374 | Package hyperref Info: Hyper index ON on input line 4385. 375 | Package hyperref Info: backreferencing OFF on input line 4392. 376 | Package hyperref Info: Link coloring ON on input line 4395. 377 | Package hyperref Info: Link coloring with OCG OFF on input line 4402. 378 | Package hyperref Info: PDF/A mode OFF on input line 4407. 379 | 380 | (/usr/share/texmf-texlive/tex/generic/oberdiek/atbegshi.sty 381 | Package: atbegshi 2008/07/31 v1.9 At begin shipout hook (HO) 382 | ) 383 | \Hy@abspage=\count140 384 | \c@Item=\count141 385 | \c@Hfootnote=\count142 386 | ) 387 | *hyperref using default driver hdvipdfm* 388 | (/usr/share/texmf-texlive/tex/latex/hyperref/hdvipdfm.def 389 | File: hdvipdfm.def 2009/10/09 v6.79a Hyperref driver for dvipdfm 390 | \pdfm@box=\box53 391 | \c@Hy@AnnotLevel=\count143 392 | \HyField@AnnotCount=\count144 393 | \Fld@listcount=\count145 394 | ) 395 | (/usr/share/texmf-texlive/tex/latex/booktabs/booktabs.sty 396 | Package: booktabs 2005/04/14 v1.61803 publication quality tables 397 | \heavyrulewidth=\dimen123 398 | \lightrulewidth=\dimen124 399 | \cmidrulewidth=\dimen125 400 | \belowrulesep=\dimen126 401 | \belowbottomsep=\dimen127 402 | \aboverulesep=\dimen128 403 | \abovetopsep=\dimen129 404 | \cmidrulesep=\dimen130 405 | \cmidrulekern=\dimen131 406 | \defaultaddspace=\dimen132 407 | \@cmidla=\count146 408 | \@cmidlb=\count147 409 | \@aboverulesep=\dimen133 410 | \@belowrulesep=\dimen134 411 | \@thisruleclass=\count148 412 | \@lastruleclass=\count149 413 | \@thisrulewidth=\dimen135 414 | ) 415 | (/usr/share/texmf-texlive/tex/latex/tools/indentfirst.sty 416 | Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC) 417 | ) 418 | (/usr/share/texmf-texlive/tex/latex/graphics/color.sty 419 | Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC) 420 | 421 | (/etc/texmf/tex/latex/config/color.cfg 422 | File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive 423 | ) 424 | Package color Info: Driver file: xetex.def on input line 130. 425 | ) 426 | (/usr/share/texmf/tex/latex/xcolor/xcolor.sty 427 | Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK) 428 | 429 | (/etc/texmf/tex/latex/config/color.cfg 430 | File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive 431 | ) 432 | Package xcolor Info: Driver file: xetex.def on input line 225. 433 | LaTeX Info: Redefining \color on input line 702. 434 | Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337. 435 | Package xcolor Info: Model `RGB' extended on input line 1353. 436 | Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355. 437 | Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356. 438 | Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357. 439 | Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358. 440 | Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359. 441 | Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360. 442 | ) 443 | (/usr/share/texmf-texlive/tex/latex/amsmath/amsmath.sty 444 | Package: amsmath 2000/07/18 v2.13 AMS math features 445 | \@mathmargin=\skip48 446 | 447 | For additional information on amsmath, use the `?' option. 448 | (/usr/share/texmf-texlive/tex/latex/amsmath/amstext.sty 449 | Package: amstext 2000/06/29 v2.01 450 | 451 | (/usr/share/texmf-texlive/tex/latex/amsmath/amsgen.sty 452 | File: amsgen.sty 1999/11/30 v2.0 453 | \@emptytoks=\toks21 454 | \ex@=\dimen136 455 | )) 456 | (/usr/share/texmf-texlive/tex/latex/amsmath/amsbsy.sty 457 | Package: amsbsy 1999/11/29 v1.2d 458 | \pmbraise@=\dimen137 459 | ) 460 | (/usr/share/texmf-texlive/tex/latex/amsmath/amsopn.sty 461 | Package: amsopn 1999/12/14 v2.01 operator names 462 | ) 463 | \inf@bad=\count150 464 | LaTeX Info: Redefining \frac on input line 211. 465 | \uproot@=\count151 466 | \leftroot@=\count152 467 | LaTeX Info: Redefining \overline on input line 307. 468 | \classnum@=\count153 469 | \DOTSCASE@=\count154 470 | LaTeX Info: Redefining \ldots on input line 379. 471 | LaTeX Info: Redefining \dots on input line 382. 472 | LaTeX Info: Redefining \cdots on input line 467. 473 | \Mathstrutbox@=\box54 474 | \strutbox@=\box55 475 | \big@size=\dimen138 476 | LaTeX Font Info: Redeclaring font encoding OML on input line 567. 477 | LaTeX Font Info: Redeclaring font encoding OMS on input line 568. 478 | \macc@depth=\count155 479 | \c@MaxMatrixCols=\count156 480 | \dotsspace@=\muskip11 481 | \c@parentequation=\count157 482 | \dspbrk@lvl=\count158 483 | \tag@help=\toks22 484 | \row@=\count159 485 | \column@=\count160 486 | \maxfields@=\count161 487 | \andhelp@=\toks23 488 | \eqnshift@=\dimen139 489 | \alignsep@=\dimen140 490 | \tagshift@=\dimen141 491 | \tagwidth@=\dimen142 492 | \totwidth@=\dimen143 493 | \lineht@=\dimen144 494 | \@envbody=\toks24 495 | \multlinegap=\skip49 496 | \multlinetaggap=\skip50 497 | \mathdisplay@stack=\toks25 498 | LaTeX Info: Redefining \[ on input line 2666. 499 | LaTeX Info: Redefining \] on input line 2667. 500 | ) 501 | (/usr/share/texmf-texlive/tex/latex/subfig/subfig.sty 502 | Package: subfig 2005/06/28 ver: 1.3 subfig package 503 | 504 | (/usr/share/texmf-texlive/tex/latex/caption/caption.sty 505 | Package: caption 2009/10/09 v3.1k Customizing captions (AR) 506 | 507 | (/usr/share/texmf-texlive/tex/latex/caption/caption3.sty 508 | Package: caption3 2009/10/09 v3.1k caption3 kernel (AR) 509 | \captionmargin=\dimen145 510 | \captionmargin@=\dimen146 511 | \captionwidth=\dimen147 512 | \caption@indent=\dimen148 513 | \caption@parindent=\dimen149 514 | \caption@hangindent=\dimen150 515 | ) 516 | \c@ContinuedFloat=\count162 517 | Package caption Info: hyperref package is loaded. 518 | ) 519 | \c@KVtest=\count163 520 | \sf@farskip=\skip51 521 | \sf@captopadj=\dimen151 522 | \sf@capskip=\skip52 523 | \sf@nearskip=\skip53 524 | \c@subfigure=\count164 525 | \c@subfigure@save=\count165 526 | \c@lofdepth=\count166 527 | \c@subtable=\count167 528 | \c@subtable@save=\count168 529 | \c@lotdepth=\count169 530 | \sf@top=\skip54 531 | \sf@bottom=\skip55 532 | ) 533 | (/usr/share/texmf/tex/latex/pgf/basiclayer/pgf.sty 534 | (/usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty 535 | (/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-common.tex 536 | \pgfutil@everybye=\toks26 537 | ) 538 | (/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-latex.def 539 | \pgfutil@abb=\box56 540 | 541 | (/usr/share/texmf-texlive/tex/latex/ms/everyshi.sty 542 | Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) 543 | )) 544 | (/usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex 545 | Package: pgfrcs 2010/10/25 v2.10 (rcs-revision 1.24) 546 | )) 547 | Package: pgf 2008/01/15 v2.10 (rcs-revision 1.12) 548 | 549 | (/usr/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty 550 | (/usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty 551 | (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex 552 | Package: pgfsys 2010/06/30 v2.10 (rcs-revision 1.37) 553 | 554 | (/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex 555 | \pgfkeys@pathtoks=\toks27 556 | \pgfkeys@temptoks=\toks28 557 | 558 | (/usr/share/texmf/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex 559 | \pgfkeys@tmptoks=\toks29 560 | )) 561 | \pgf@x=\dimen152 562 | \pgf@y=\dimen153 563 | \pgf@xa=\dimen154 564 | \pgf@ya=\dimen155 565 | \pgf@xb=\dimen156 566 | \pgf@yb=\dimen157 567 | \pgf@xc=\dimen158 568 | \pgf@yc=\dimen159 569 | \w@pgf@writea=\write3 570 | \r@pgf@reada=\read1 571 | \c@pgf@counta=\count170 572 | \c@pgf@countb=\count171 573 | \c@pgf@countc=\count172 574 | \c@pgf@countd=\count173 575 | 576 | (/usr/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg 577 | File: pgf.cfg 2008/05/14 (rcs-revision 1.7) 578 | ) 579 | Package pgfsys Info: Driver file for pgf: pgfsys-xetex.def on input line 900. 580 | 581 | (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-xetex.def 582 | File: pgfsys-xetex.def 2010/02/16 (rcs-revision 1.3) 583 | 584 | (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def 585 | File: pgfsys-common-pdf.def 2008/05/19 (rcs-revision 1.10) 586 | ) 587 | (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf-via-dvi.def 588 | File: pgfsys-common-pdf-via-dvi.def 2008/05/19 (rcs-revision 1.7) 589 | ))) 590 | (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex 591 | File: pgfsyssoftpath.code.tex 2008/07/18 (rcs-revision 1.7) 592 | \pgfsyssoftpath@smallbuffer@items=\count174 593 | \pgfsyssoftpath@bigbuffer@items=\count175 594 | ) 595 | (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex 596 | File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4) 597 | )) 598 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex 599 | Package: pgfcore 2010/04/11 v2.10 (rcs-revision 1.7) 600 | 601 | (/usr/share/texmf/tex/generic/pgf/math/pgfmath.code.tex 602 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex 603 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathutil.code.tex) 604 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathparser.code.tex 605 | \pgfmath@dimen=\dimen160 606 | \pgfmath@count=\count176 607 | \pgfmath@box=\box57 608 | \pgfmath@toks=\toks30 609 | \pgfmath@stack@operand=\toks31 610 | \pgfmath@stack@operation=\toks32 611 | ) 612 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.code.tex 613 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) 614 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) 615 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) 616 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) 617 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) 618 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) 619 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex))) 620 | (/usr/share/texmf/tex/generic/pgf/math/pgfmathfloat.code.tex 621 | \c@pgfmathroundto@lastzeros=\count177 622 | )) 623 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex 624 | File: pgfcorepoints.code.tex 2010/04/09 (rcs-revision 1.20) 625 | \pgf@picminx=\dimen161 626 | \pgf@picmaxx=\dimen162 627 | \pgf@picminy=\dimen163 628 | \pgf@picmaxy=\dimen164 629 | \pgf@pathminx=\dimen165 630 | \pgf@pathmaxx=\dimen166 631 | \pgf@pathminy=\dimen167 632 | \pgf@pathmaxy=\dimen168 633 | \pgf@xx=\dimen169 634 | \pgf@xy=\dimen170 635 | \pgf@yx=\dimen171 636 | \pgf@yy=\dimen172 637 | \pgf@zx=\dimen173 638 | \pgf@zy=\dimen174 639 | ) 640 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex 641 | File: pgfcorepathconstruct.code.tex 2010/08/03 (rcs-revision 1.24) 642 | \pgf@path@lastx=\dimen175 643 | \pgf@path@lasty=\dimen176 644 | ) 645 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex 646 | File: pgfcorepathusage.code.tex 2008/04/22 (rcs-revision 1.12) 647 | \pgf@shorten@end@additional=\dimen177 648 | \pgf@shorten@start@additional=\dimen178 649 | ) 650 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex 651 | File: pgfcorescopes.code.tex 2010/09/08 (rcs-revision 1.34) 652 | \pgfpic=\box58 653 | \pgf@hbox=\box59 654 | \pgf@layerbox@main=\box60 655 | \pgf@picture@serial@count=\count178 656 | ) 657 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex 658 | File: pgfcoregraphicstate.code.tex 2008/04/22 (rcs-revision 1.9) 659 | \pgflinewidth=\dimen179 660 | ) 661 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex 662 | File: pgfcoretransformations.code.tex 2009/06/10 (rcs-revision 1.11) 663 | \pgf@pt@x=\dimen180 664 | \pgf@pt@y=\dimen181 665 | \pgf@pt@temp=\dimen182 666 | ) 667 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex 668 | File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3) 669 | ) 670 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex 671 | File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2) 672 | ) 673 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex 674 | File: pgfcorepathprocessing.code.tex 2008/10/09 (rcs-revision 1.8) 675 | ) 676 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex 677 | File: pgfcorearrows.code.tex 2008/04/23 (rcs-revision 1.11) 678 | ) 679 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex 680 | File: pgfcoreshade.code.tex 2008/11/23 (rcs-revision 1.13) 681 | \pgf@max=\dimen183 682 | \pgf@sys@shading@range@num=\count179 683 | ) 684 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex 685 | File: pgfcoreimage.code.tex 2010/03/25 (rcs-revision 1.16) 686 | 687 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex 688 | File: pgfcoreexternal.code.tex 2010/09/01 (rcs-revision 1.17) 689 | \pgfexternal@startupbox=\box61 690 | )) 691 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex 692 | File: pgfcorelayers.code.tex 2010/08/27 (rcs-revision 1.2) 693 | ) 694 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex 695 | File: pgfcoretransparency.code.tex 2008/01/17 (rcs-revision 1.2) 696 | ) 697 | (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex 698 | File: pgfcorepatterns.code.tex 2009/07/02 (rcs-revision 1.3) 699 | ))) 700 | (/usr/share/texmf/tex/generic/pgf/modules/pgfmoduleshapes.code.tex 701 | File: pgfmoduleshapes.code.tex 2010/09/09 (rcs-revision 1.13) 702 | \pgfnodeparttextbox=\box62 703 | ) 704 | (/usr/share/texmf/tex/generic/pgf/modules/pgfmoduleplot.code.tex 705 | File: pgfmoduleplot.code.tex 2010/10/22 (rcs-revision 1.8) 706 | ) 707 | (/usr/share/texmf/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty 708 | Package: pgfcomp-version-0-65 2007/07/03 v2.10 (rcs-revision 1.7) 709 | \pgf@nodesepstart=\dimen184 710 | \pgf@nodesepend=\dimen185 711 | ) 712 | (/usr/share/texmf/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty 713 | Package: pgfcomp-version-1-18 2007/07/23 v2.10 (rcs-revision 1.1) 714 | )) 715 | (/usr/share/texmf/tex/latex/pgf/frontendlayer/tikz.sty 716 | (/usr/share/texmf/tex/latex/pgf/utilities/pgffor.sty 717 | (/usr/share/texmf/tex/latex/pgf/utilities/pgfkeys.sty 718 | (/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex)) 719 | (/usr/share/texmf/tex/generic/pgf/utilities/pgffor.code.tex 720 | Package: pgffor 2010/03/23 v2.10 (rcs-revision 1.18) 721 | \pgffor@iter=\dimen186 722 | \pgffor@skip=\dimen187 723 | \pgffor@stack=\toks33 724 | \pgffor@toks=\toks34 725 | )) 726 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex 727 | Package: tikz 2010/10/13 v2.10 (rcs-revision 1.76) 728 | 729 | (/usr/share/texmf/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex 730 | File: pgflibraryplothandlers.code.tex 2010/05/31 v2.10 (rcs-revision 1.15) 731 | \pgf@plot@mark@count=\count180 732 | \pgfplotmarksize=\dimen188 733 | ) 734 | \tikz@lastx=\dimen189 735 | \tikz@lasty=\dimen190 736 | \tikz@lastxsaved=\dimen191 737 | \tikz@lastysaved=\dimen192 738 | \tikzleveldistance=\dimen193 739 | \tikzsiblingdistance=\dimen194 740 | \tikz@figbox=\box63 741 | \tikz@tempbox=\box64 742 | \tikztreelevel=\count181 743 | \tikznumberofchildren=\count182 744 | \tikznumberofcurrentchild=\count183 745 | \tikz@fig@count=\count184 746 | 747 | (/usr/share/texmf/tex/generic/pgf/modules/pgfmodulematrix.code.tex 748 | File: pgfmodulematrix.code.tex 2010/08/24 (rcs-revision 1.4) 749 | \pgfmatrixcurrentrow=\count185 750 | \pgfmatrixcurrentcolumn=\count186 751 | \pgf@matrix@numberofcolumns=\count187 752 | ) 753 | \tikz@expandcount=\count188 754 | 755 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopat 756 | hs.code.tex 757 | File: tikzlibrarytopaths.code.tex 2008/06/17 v2.10 (rcs-revision 1.2) 758 | ))) 759 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshape 760 | s.code.tex 761 | File: tikzlibraryshapes.code.tex 2008/01/09 v2.10 (rcs-revision 1.1) 762 | 763 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshape 764 | s.geometric.code.tex 765 | File: tikzlibraryshapes.geometric.code.tex 2008/01/09 v2.10 (rcs-revision 1.1) 766 | 767 | (/usr/share/texmf/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.c 768 | ode.tex 769 | File: pgflibraryshapes.geometric.code.tex 2008/06/26 v2.10 (rcs-revision 1.1) 770 | )) 771 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshape 772 | s.misc.code.tex 773 | File: tikzlibraryshapes.misc.code.tex 2008/01/09 v2.10 (rcs-revision 1.1) 774 | 775 | (/usr/share/texmf/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.t 776 | ex 777 | File: pgflibraryshapes.misc.code.tex 2008/10/07 v2.10 (rcs-revision 1.3) 778 | )) 779 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshape 780 | s.symbols.code.tex 781 | File: tikzlibraryshapes.symbols.code.tex 2008/01/09 v2.10 (rcs-revision 1.1) 782 | 783 | (/usr/share/texmf/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.cod 784 | e.tex 785 | File: pgflibraryshapes.symbols.code.tex 2009/10/27 v2.10 (rcs-revision 1.3) 786 | )) 787 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshape 788 | s.arrows.code.tex 789 | File: tikzlibraryshapes.arrows.code.tex 2008/01/09 v2.10 (rcs-revision 1.1) 790 | 791 | (/usr/share/texmf/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code 792 | .tex 793 | File: pgflibraryshapes.arrows.code.tex 2008/06/26 v2.10 (rcs-revision 1.1) 794 | )) 795 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshape 796 | s.callouts.code.tex 797 | (/usr/share/texmf/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.co 798 | de.tex)) 799 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshape 800 | s.multipart.code.tex 801 | File: tikzlibraryshapes.multipart.code.tex 2008/01/09 v2.10 (rcs-revision 1.1) 802 | 803 | (/usr/share/texmf/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.c 804 | ode.tex 805 | File: pgflibraryshapes.multipart.code.tex 2010/01/07 v2.10 (rcs-revision 1.2) 806 | \pgfnodepartlowerbox=\box65 807 | \pgfnodeparttwobox=\box66 808 | \pgfnodepartthreebox=\box67 809 | \pgfnodepartfourbox=\box68 810 | \pgfnodeparttwentybox=\box69 811 | \pgfnodepartnineteenbox=\box70 812 | \pgfnodeparteighteenbox=\box71 813 | \pgfnodepartseventeenbox=\box72 814 | \pgfnodepartsixteenbox=\box73 815 | \pgfnodepartfifteenbox=\box74 816 | \pgfnodepartfourteenbox=\box75 817 | \pgfnodepartthirteenbox=\box76 818 | \pgfnodeparttwelvebox=\box77 819 | \pgfnodepartelevenbox=\box78 820 | \pgfnodeparttenbox=\box79 821 | \pgfnodepartninebox=\box80 822 | \pgfnodeparteightbox=\box81 823 | \pgfnodepartsevenbox=\box82 824 | \pgfnodepartsixbox=\box83 825 | \pgfnodepartfivebox=\box84 826 | ))) 827 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryautom 828 | ata.code.tex 829 | File: tikzlibraryautomata.code.tex 2008/07/14 v2.10 (rcs-revision 1.3) 830 | ) 831 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarysnake 832 | s.code.tex 833 | File: tikzlibrarysnakes.code.tex 2008/02/05 v2.10 (rcs-revision 1.6) 834 | 835 | 836 | Package tikz Warning: Snakes have been superseded by decorations. Please use th 837 | e decoration libraries instead of the snakes library on input line 14. 838 | 839 | 840 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecor 841 | ations.pathmorphing.code.tex 842 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecor 843 | ations.code.tex 844 | (/usr/share/texmf/tex/generic/pgf/modules/pgfmoduledecorations.code.tex 845 | \pgfdecoratedcompleteddistance=\dimen195 846 | \pgfdecoratedremainingdistance=\dimen196 847 | \pgfdecoratedinputsegmentcompleteddistance=\dimen197 848 | \pgfdecoratedinputsegmentremainingdistance=\dimen198 849 | \pgf@decorate@distancetomove=\dimen199 850 | \pgf@decorate@repeatstate=\count189 851 | \pgfdecorationsegmentamplitude=\dimen200 852 | \pgfdecorationsegmentlength=\dimen201 853 | ) 854 | \tikz@lib@dec@box=\box85 855 | ) 856 | (/usr/share/texmf/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.p 857 | athmorphing.code.tex)) 858 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecor 859 | ations.pathreplacing.code.tex 860 | (/usr/share/texmf/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.p 861 | athreplacing.code.tex)) 862 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecor 863 | ations.shapes.code.tex 864 | (/usr/share/texmf/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.s 865 | hapes.code.tex))) 866 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackg 867 | rounds.code.tex 868 | File: tikzlibrarybackgrounds.code.tex 2010/02/08 v2.10 (rcs-revision 1.2) 869 | \pgf@layerbox@background=\box86 870 | \pgf@layerboxsaved@background=\box87 871 | ) 872 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrow 873 | s.code.tex 874 | File: tikzlibraryarrows.code.tex 2008/01/09 v2.10 (rcs-revision 1.1) 875 | 876 | (/usr/share/texmf/tex/generic/pgf/libraries/pgflibraryarrows.code.tex 877 | File: pgflibraryarrows.code.tex 2008/10/27 v2.10 (rcs-revision 1.9) 878 | \arrowsize=\dimen202 879 | )) 880 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymindm 881 | ap.code.tex 882 | File: tikzlibrarymindmap.code.tex 2009/11/12 v2.10 (rcs-revision 1.9) 883 | 884 | (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytrees 885 | .code.tex 886 | File: tikzlibrarytrees.code.tex 2008/02/24 v2.10 (rcs-revision 1.2) 887 | )) (/usr/share/texmf-texlive/tex/latex/fancyhdr/fancyhdr.sty 888 | \fancy@headwidth=\skip56 889 | \f@ncyO@elh=\skip57 890 | \f@ncyO@erh=\skip58 891 | \f@ncyO@olh=\skip59 892 | \f@ncyO@orh=\skip60 893 | \f@ncyO@elf=\skip61 894 | \f@ncyO@erf=\skip62 895 | \f@ncyO@olf=\skip63 896 | \f@ncyO@orf=\skip64 897 | ) 898 | (/usr/share/texmf-texlive/tex/latex/listings/listings.sty 899 | \lst@mode=\count190 900 | \lst@gtempboxa=\box88 901 | \lst@token=\toks35 902 | \lst@length=\count191 903 | \lst@currlwidth=\dimen203 904 | \lst@column=\count192 905 | \lst@pos=\count193 906 | \lst@lostspace=\dimen204 907 | \lst@width=\dimen205 908 | \lst@newlines=\count194 909 | \lst@lineno=\count195 910 | \lst@maxwidth=\dimen206 911 | 912 | (/usr/share/texmf-texlive/tex/latex/listings/lstmisc.sty 913 | File: lstmisc.sty 2007/02/22 1.4 (Carsten Heinz) 914 | \c@lstnumber=\count196 915 | \lst@skipnumbers=\count197 916 | \lst@framebox=\box89 917 | ) 918 | (/usr/share/texmf-texlive/tex/latex/listings/listings.cfg 919 | File: listings.cfg 2007/02/22 1.4 listings configuration 920 | )) 921 | Package: listings 2007/02/22 1.4 (Carsten Heinz) 922 | ) (./book.aux 923 | (./chapter1/preamble.aux) (./chapter1/section1.aux) (./chapter1/section2.aux) 924 | (./chapter1/section3.aux) (./chapter1/summary.aux) (./chapter2/preamble.aux) 925 | (./chapter2/section4.aux) (./chapter2/section5.aux) (./chapter2/section6.aux) 926 | (./chapter2/section7.aux) (./chapter2/section8.aux) (./chapter2/section9.aux) 927 | (./chapter2/summary.aux) (./chapter3/preamble.aux) (./chapter3/section1.aux) 928 | (./chapter3/summary.aux) (./appendix/preamble.aux) (./appendix/section1.aux)) 929 | \openout1 = `book.aux'. 930 | 931 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6. 932 | LaTeX Font Info: ... okay on input line 6. 933 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6. 934 | LaTeX Font Info: ... okay on input line 6. 935 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6. 936 | LaTeX Font Info: ... okay on input line 6. 937 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6. 938 | LaTeX Font Info: ... okay on input line 6. 939 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6. 940 | LaTeX Font Info: ... okay on input line 6. 941 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6. 942 | LaTeX Font Info: ... okay on input line 6. 943 | LaTeX Font Info: Checking defaults for EU1/lmr/m/n on input line 6. 944 | LaTeX Font Info: ... okay on input line 6. 945 | LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 6. 946 | LaTeX Font Info: ... okay on input line 6. 947 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid this). 948 | on input line 6. 949 | \symlegacymaths=\mathgroup4 950 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 951 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 6. 952 | LaTeX Font Info: Redeclaring math accent \acute on input line 6. 953 | LaTeX Font Info: Redeclaring math accent \grave on input line 6. 954 | LaTeX Font Info: Redeclaring math accent \ddot on input line 6. 955 | LaTeX Font Info: Redeclaring math accent \tilde on input line 6. 956 | LaTeX Font Info: Redeclaring math accent \bar on input line 6. 957 | LaTeX Font Info: Redeclaring math accent \breve on input line 6. 958 | LaTeX Font Info: Redeclaring math accent \check on input line 6. 959 | LaTeX Font Info: Redeclaring math accent \hat on input line 6. 960 | LaTeX Font Info: Redeclaring math accent \dot on input line 6. 961 | LaTeX Font Info: Redeclaring math accent \mathring on input line 6. 962 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 6. 963 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 6. 964 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 6. 965 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 6. 966 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 6. 967 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 6. 968 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 6. 969 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 6. 970 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 6. 971 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 6. 972 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 6. 973 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 6. 974 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 6. 975 | LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font 976 | (Font) `operators' in the math version `normal' on input line 6. 977 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 978 | (Font) OT1/cmr/m/n --> EU1/DejaVuSerif(0)/m/n on input line 6. 979 | 980 | LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font 981 | (Font) `operators' in the math version `bold' on input line 6. 982 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 983 | (Font) OT1/cmr/bx/n --> EU1/DejaVuSerif(0)/m/n on input line 6 984 | . 985 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 986 | (Font) EU1/DejaVuSerif(0)/m/n --> EU1/DejaVuSerif(0)/m/n on in 987 | put line 6. 988 | LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal' 989 | (Font) EU1/DejaVuSerif(0)/m/n --> EU1/DejaVuSerif(0)/m/n on in 990 | put line 6. 991 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 992 | (Font) OT1/cmr/m/it --> EU1/DejaVuSerif(0)/m/it on input line 993 | 6. 994 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 995 | (Font) OT1/cmr/bx/n --> EU1/DejaVuSerif(0)/bx/n on input line 996 | 6. 997 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 998 | (Font) OT1/cmss/m/n --> EU1/DejaVuSans(0)/m/n on input line 6. 999 | 1000 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 1001 | (Font) OT1/cmtt/m/n --> EU1/DejaVuSansMono(0)/m/n on input lin 1002 | e 6. 1003 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 1004 | (Font) EU1/DejaVuSerif(0)/m/n --> EU1/DejaVuSerif(0)/bx/n on i 1005 | nput line 6. 1006 | LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold' 1007 | (Font) EU1/DejaVuSerif(0)/m/n --> EU1/DejaVuSerif(0)/bx/n on i 1008 | nput line 6. 1009 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 1010 | (Font) OT1/cmr/bx/it --> EU1/DejaVuSerif(0)/bx/it on input lin 1011 | e 6. 1012 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 1013 | (Font) OT1/cmss/bx/n --> EU1/DejaVuSans(0)/bx/n on input line 1014 | 6. 1015 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 1016 | (Font) OT1/cmtt/m/n --> EU1/DejaVuSansMono(0)/bx/n on input li 1017 | ne 6. 1018 | 1019 | *geometry detected driver: pdftex* 1020 | -------------------- Geometry parameters 1021 | paper: class default 1022 | landscape: -- 1023 | twocolumn: -- 1024 | twoside: true 1025 | asymmetric: -- 1026 | h-parts: 71.13188pt, 472.03123pt, 71.13188pt 1027 | v-parts: 71.13188pt, 652.70622pt, 71.13188pt 1028 | hmarginratio: -- 1029 | vmarginratio: -- 1030 | lines: -- 1031 | heightrounded: -- 1032 | bindingoffset: 0.0pt 1033 | truedimen: -- 1034 | includehead: -- 1035 | includefoot: -- 1036 | includemp: -- 1037 | driver: pdftex 1038 | -------------------- Page layout dimensions and switches 1039 | \paperwidth 614.295pt 1040 | \paperheight 794.96999pt 1041 | \textwidth 472.03123pt 1042 | \textheight 652.70622pt 1043 | \oddsidemargin -1.1381pt 1044 | \evensidemargin -1.1381pt 1045 | \topmargin -31.2056pt 1046 | \headheight 15.0pt 1047 | \headsep 18.06749pt 1048 | \footskip 25.29494pt 1049 | \marginparwidth 125.0pt 1050 | \marginparsep 7.0pt 1051 | \columnsep 10.0pt 1052 | \skip\footins 9.0pt plus 4.0pt minus 2.0pt 1053 | \hoffset 0.0pt 1054 | \voffset 0.0pt 1055 | \mag 1000 1056 | \@twosidetrue \@mparswitchtrue 1057 | (1in=72.27pt, 1cm=28.45pt) 1058 | ----------------------- 1059 | Package hyperref Info: Link coloring ON on input line 6. 1060 | (/usr/share/texmf-texlive/tex/latex/hyperref/nameref.sty 1061 | Package: nameref 2007/05/29 v2.31 Cross-referencing by name of section 1062 | 1063 | (/usr/share/texmf-texlive/tex/latex/oberdiek/refcount.sty 1064 | Package: refcount 2008/08/11 v3.1 Data extraction from references (HO) 1065 | ) 1066 | \c@section@level=\count198 1067 | ) 1068 | LaTeX Info: Redefining \ref on input line 6. 1069 | LaTeX Info: Redefining \pageref on input line 6. 1070 | (./book.out) 1071 | (./book.out) 1072 | \@outlinefile=\write4 1073 | \openout4 = `book.out'. 1074 | 1075 | \AtBeginShipoutBox=\box90 1076 | Package caption Info: Begin \AtBeginDocument code. 1077 | Package caption3 Info: subfig package 1.2 or 1.3 is loaded. 1078 | LaTeX Info: Redefining \subref on input line 6. 1079 | Package caption Info: listings package is loaded. 1080 | Package caption Info: End \AtBeginDocument code. 1081 | ABD: EveryShipout initializing macros 1082 | \c@lstlisting=\count199 1083 | [1 1084 | 1085 | 1086 | 1087 | 1088 | ] [2 1089 | 1090 | ] (./book.toc [3] 1091 | [4] [5]) 1092 | \tf@toc=\write5 1093 | \openout5 = `book.toc'. 1094 | 1095 | [6] 1096 | Chapter 1. 1097 | [7 1098 | 1099 | ] 1100 | \openout2 = `chapter1/preamble.aux'. 1101 | 1102 | (./chapter1/preamble.tex) [8 1103 | 1104 | ] 1105 | \openout2 = `chapter1/section1.aux'. 1106 | 1107 | (./chapter1/section1.tex 1108 | Missing character: There is no ​ in font Adobe Song Std L/ICU! 1109 | Missing character: There is no ​ in font Adobe Song Std L/ICU! 1110 | [9 1111 | 1112 | 1113 | ] 1114 | Missing character: There is no ​ in font Adobe Song Std L/ICU! 1115 | Missing character: There is no ​ in font Adobe Song Std L/ICU! 1116 | ) [10] 1117 | \openout2 = `chapter1/section2.aux'. 1118 | 1119 | 1120 | (./chapter1/section2.tex) [11 1121 | 1122 | 1123 | ] 1124 | \openout2 = `chapter1/section3.aux'. 1125 | 1126 | (./chapter1/section3.tex 1127 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang1.sty 1128 | File: lstlang1.sty 2004/09/05 1.3 listings language file 1129 | ) 1130 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang2.sty 1131 | File: lstlang2.sty 2004/09/05 1.3 listings language file 1132 | ) 1133 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang3.sty 1134 | File: lstlang3.sty 2004/09/05 1.3 listings language file 1135 | ) 1136 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang1.sty 1137 | File: lstlang1.sty 2004/09/05 1.3 listings language file 1138 | ) 1139 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang2.sty 1140 | File: lstlang2.sty 2004/09/05 1.3 listings language file 1141 | ) 1142 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang3.sty 1143 | File: lstlang3.sty 2004/09/05 1.3 listings language file 1144 | ) 1145 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang1.sty 1146 | File: lstlang1.sty 2004/09/05 1.3 listings language file 1147 | ) 1148 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang2.sty 1149 | File: lstlang2.sty 2004/09/05 1.3 listings language file 1150 | ) 1151 | (/usr/share/texmf-texlive/tex/latex/listings/lstlang3.sty 1152 | File: lstlang3.sty 2004/09/05 1.3 listings language file 1153 | ) 1154 | (/usr/share/texmf-texlive/tex/latex/listings/lstmisc.sty 1155 | File: lstmisc.sty 2007/02/22 1.4 (Carsten Heinz) 1156 | ) 1157 | Overfull \hbox (54.24281pt too wide) in paragraph at lines 40--43 1158 | []\EU1/DejaVuSerif(0)/m/n/10 Kile a user-friendly editor for operating systems 1159 | with KDE, such as Linux, http:// kile.sourceforge.net/ 1160 | [] 1161 | 1162 | ) [12 1163 | 1164 | 1165 | ] 1166 | \openout2 = `chapter1/summary.aux'. 1167 | 1168 | (./chapter1/summary.tex) [13 1169 | 1170 | 1171 | ] [14 1172 | 1173 | 1174 | ] 1175 | Chapter 2. 1176 | [15] 1177 | \openout2 = `chapter2/preamble.aux'. 1178 | 1179 | (./chapter2/preamble.tex) [16 1180 | 1181 | ] 1182 | \openout2 = `chapter2/section4.aux'. 1183 | 1184 | (./chapter2/section4.tex) [17 1185 | 1186 | 1187 | ] 1188 | \openout2 = `chapter2/section5.aux'. 1189 | 1190 | 1191 | (./chapter2/section5.tex) [18 1192 | 1193 | 1194 | ] 1195 | \openout2 = `chapter2/section6.aux'. 1196 | 1197 | (./chapter2/section6.tex 1198 | Missing character: There is no 〜 in font Adobe Song Std L/ICU! 1199 | ) [19 1200 | 1201 | 1202 | ] 1203 | \openout2 = `chapter2/section7.aux'. 1204 | 1205 | 1206 | (./chapter2/section7.tex) [20 1207 | 1208 | 1209 | ] 1210 | \openout2 = `chapter2/section8.aux'. 1211 | 1212 | (./chapter2/section8.tex) [21 1213 | 1214 | 1215 | ] 1216 | \openout2 = `chapter2/section9.aux'. 1217 | 1218 | 1219 | (./chapter2/section9.tex) [22 1220 | 1221 | 1222 | ] 1223 | \openout2 = `chapter2/summary.aux'. 1224 | 1225 | (./chapter2/summary.tex) 1226 | Chapter 3. 1227 | [23 1228 | 1229 | 1230 | 1231 | 1232 | ] 1233 | \openout2 = `chapter3/preamble.aux'. 1234 | 1235 | (./chapter3/preamble.tex) [24 1236 | 1237 | ] 1238 | \openout2 = `chapter3/section1.aux'. 1239 | 1240 | (./chapter3/section1.tex) [25 1241 | 1242 | 1243 | ] 1244 | \openout2 = `chapter3/summary.aux'. 1245 | 1246 | 1247 | (./chapter3/summary.tex) [26 1248 | 1249 | 1250 | 1251 | 1252 | ] 1253 | Chapter 4. 1254 | [27] [28 1255 | 1256 | ] 1257 | Chapter 5. 1258 | [29] [30 1259 | 1260 | ] 1261 | Chapter 6. 1262 | [31] [32 1263 | 1264 | ] 1265 | Chapter 7. 1266 | [33] [34 1267 | 1268 | ] 1269 | Chapter 8. 1270 | [35] [36 1271 | 1272 | ] 1273 | Chapter 9. 1274 | [37] [38 1275 | 1276 | ] 1277 | Chapter 10. 1278 | [39] [40 1279 | 1280 | ] 1281 | Chapter 11. 1282 | [41] [42 1283 | 1284 | ] 1285 | Chapter 12. 1286 | [43] [44 1287 | 1288 | ] 1289 | Chapter 13. 1290 | [45] 1291 | \openout2 = `appendix/preamble.aux'. 1292 | 1293 | (./appendix/preamble.tex) [46 1294 | 1295 | ] 1296 | \openout2 = `appendix/section1.aux'. 1297 | 1298 | (./appendix/section1.tex) [47 1299 | 1300 | 1301 | ] [48 1302 | 1303 | 1304 | ] 1305 | Appendix A. 1306 | [49] [50 1307 | 1308 | ] 1309 | Appendix B. 1310 | [51] (./book.aux (./chapter1/preamble.aux) (./chapter1/section1.aux) 1311 | (./chapter1/section2.aux) (./chapter1/section3.aux) (./chapter1/summary.aux) 1312 | (./chapter2/preamble.aux) (./chapter2/section4.aux) (./chapter2/section5.aux) 1313 | (./chapter2/section6.aux) (./chapter2/section7.aux) (./chapter2/section8.aux) 1314 | (./chapter2/section9.aux) (./chapter2/summary.aux) (./chapter3/preamble.aux) 1315 | (./chapter3/section1.aux) (./chapter3/summary.aux) (./appendix/preamble.aux) 1316 | (./appendix/section1.aux)) ) 1317 | Here is how much of TeX's memory you used: 1318 | 24927 strings out of 495713 1319 | 467477 string characters out of 1188882 1320 | 729217 words of memory out of 3000000 1321 | 27418 multiletter control sequences out of 15000+50000 1322 | 7864 words of font info for 73 fonts, out of 3000000 for 9000 1323 | 28 hyphenation exceptions out of 8191 1324 | 65i,6n,126p,475b,1916s stack positions out of 5000i,500n,10000p,200000b,50000s 1325 | 1326 | Output written on book.pdf (51 pages). 1327 | --------------------------------------------------------------------------------