letter: 用于编写信件。 slides: 用于创建幻灯片,但这一类现在很少使用,因为有更先进的替代品如Beamer。 常见的第三方文档类 beamer: 用于创建演示文稿的类。 memoir: 为文章、报告和书籍提供了很多的配置选项,是上述基本文档类的一个强大替代品。 moderncv: 用于创建现代化的简历/CV。 scrartcl, scrreprt, scrbo...
%导言区(进行全局设置) \documentclass{article} %book,report,letter %%引入文档类型 \title{} \author{} \date{\today} %%用这些命令进行一些设置 %正文区(文稿区) 注意:一个latex源文件只能有一个文稿区(即只能有一个document环境) \begin{document} \maketitle % 显示标提的命令 Hello World! % 正文文本...
要创建标题,需要指定作者,标题和日期的文本,然后使用\maketitle命令,标题页由Latex生成。\begin {document}必须在开始时使用。用于创建标题的命令是\maketitle。创建标题的代码如下: \documentclass[12pt]{article} \begin{document} \title{This is my website Learnfk} % 定义标题 \author{ The author learnfk} ...
LaTeX letter class As with the slide document class, the letter is slightly old-fashioned. This class is used to make traditional letters, the ones that are put in an envelope and mailed, a somewhat obsolete way of communication (since the email was invented and generalized) but still used ...
“\documentclass{class}”导入的类(class)可以是“article”/“book”/“report”/"letter" 进行标题(title)/作者(author)/时间(date)的设置 导言区示例 注意:可以在文档中加入空行,使得文档的结构比较清晰。 正文区 一个LaTeX文件有且只能有一个document环境 ...
a4paper, letterpaper, . . .定义纸张的尺寸。 缺省设置为letterpaper。 此外, 还可以使用a5paper, b5paper, executivepaper 以及legalpaper。 fleqn设置行间公式为左对齐, 而不是居中对齐。 leqno设置行间公式的编号为左对齐, 而不是右对齐。 titlepage, notitlepage指定是否在文档标题(document title) 后另起一...
\documentclass[options]{class} 其中,options是一个可选参数,用于指定文档类的选项,例如11pt、a4paper等。class是您要定制的文档类,例如article、report或book等。 添加新的功能:您可以通过添加新的宏包或定义新的命令来添加新的功能。例如,您可以使用以下代码添加一个新的命令: 代码语言:txt 复制 \newcommand{\my...
指定纸张大小,默认为美式信纸 letterpaper (8.5 × 11 英寸)。 可指定选项还包括 a5paper,b5paper,executivepaper 和 legalpaper。twoside, onside 指定单面/双面排版。双面排版时,奇偶页的页眉页脚、页边距不同。article 和 report 默认为 oneside,book 默认为 twoside。
\begin{document} % 正文区 \end{document} 1. 2. 3. 4. 5. 在\documentclass[options]{doc-class}与\begin{document}之前的内容就是导言区。这个区域可以留空,也可以进行文档前的配置工作。 提醒一下%后的是注释,类似于python中的...
\documentstyle[选项1,选项2,...]{格式} 其中的[]及选项是可选的, 而{格式}是必需的. LaTeX有以下几种 格式: article(文章), report(报告), book(书), letter(信件). CCT对前面三种进行了汉化, 分别是carticle, creport和cbook. 常用的选项有 10pt/11pt/12pt: 定义基准字号, 缺省10pt. twoside...