码迷,mamicode.com
首页 > 其他好文 > 详细

Latex学习(一)

时间:2019-03-19 12:16:20      阅读:370      评论:0      收藏:0      [点我收藏+]

标签:字体   忽略   eof   包装   文档   tin   make   doc   rds   

Latex是tex的包装,它增加很多宏包,方便了设置命令,隐藏了tex复杂的排版细节,有助于文字创作。

从一个简单的latex文件开始谈起:

\documentclass[a4paper,11pt]{article} 
\usepackage{fontspec}
\setmainfont{Courier New}
% define the title 
\author{H. Partl} 
\title{Minimalism} 
\begin{document} 
% generates the title 
\maketitle 
% insert the table of contents 
\tableofcontents 
\section{Some Interesting Words} 
Well, and here begins my lovely article. 
\section{Good Bye World} 
\ldots{} and here it ends. 
\end{document}

当L ATEX2ε 处理源文件时,它希望源文件遵从一定的结构(structure)。因此,每个源文件都要以如下命令开始:

\documentclass{...}

 

这条命令指明了你所写的源文档的类型。然后,你就可以加入控制整篇文档样式的命令,或者载入一些为L ATEX 增加新特性的宏包(package)。可以用如下命令载 入一个宏包

\usepackage{...} 

当完成所有的设置工作后,你可以用下面的命令开始文档的主体

 \begin{document}

 

现在你就可以输入带有L ATEX 命令的正文了。在文章末尾使用命令 

\end{document}

 

来告诉L ATEX 文档已经结束。L ATEX 会忽略此命令后的所有内容。

关于宏包“fontspec”:fontspec 系列宏包是为 XeLaTeX 和 LuaLaTeX 设计的。借由它,用户可以直接选取系统中的字体。因此,你可以准确而直接地选择 Courier New 。这是最推荐的方法。

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Courier New}
\begin{document}
This is the typeface Times New Roman.

Enjoy!
\end{document}

 参考:https://liam.page/2017/01/10/Times-New-Roman-and-LaTeX/

Latex学习(一)

标签:字体   忽略   eof   包装   文档   tin   make   doc   rds   

原文地址:https://www.cnblogs.com/litifeng/p/10557529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!