LaTex学习笔记(一)
1. 语法
- 命令
- 普通命令
- 环境
- 数据
- 注释
2. 物理结构
- 导言
指定文档类型,引入宏包,定义命令,环境等
\documentclass[options]{class} \usepackage[options]{package}
常见的documentclass有三种:article、report、book - 正文
逻辑结构
开头通常有标题、作者、摘要等信息 ,之后是章节等层次结构,文档较长时还可以使用目录
\title{...}
\author{...}
\date{...}
\maketitle
摘要
\begin{abstract}
...
\end{abstract}
LATEX 提供了七中层次结构
\part {...} %Level -1
\chapter {...} %Level 0
\section{...} %Level 1
\ subsection {...} %Level 2
\ subsubsection {...} %Level 3
\paragraph {...} %Level 4
\ subparagraph {...} %Level 5
目录
\setcounter{tocedpth}{...} \tableofcontents
类似的,也可以生成插图和表格目录
\listoffigures
\listoftables
3.文字
文档的内容分为文本模式和数学模式,文本模式是缺省模式,数学内容需要特殊命令或环境
1. 语法
- 命令
- 普通命令
- 环境
- 数据
- 注释
2. 物理结构
- 导言
指定文档类型,引入宏包,定义命令,环境等
\documentclass[options]{class} \usepackage[options]{package}
常见的documentclass有三种:article、report、book - 正文
逻辑结构
开头通常有标题、作者、摘要等信息 ,之后是章节等层次结构,文档较长时还可以使用目录
\title{...}
\author{...}
\date{...}
\maketitle
摘要
\begin{abstract}
...
\end{abstract}
LATEX 提供了七中层次结构
\part {...} %Level -1
\chapter {...} %Level 0
\section{...} %Level 1
\ subsection {...} %Level 2
\ subsubsection {...} %Level 3
\paragraph {...} %Level 4
\ subparagraph {...} %Level 5
目录
\setcounter{tocedpth}{...} \tableofcontents
类似的,也可以生成插图和表格目录
\listoffigures
\listoftables
3.文字
文档的内容分为文本模式和数学模式,文本模式是缺省模式,数学内容需要特殊命令或环境
LaTex学习笔记(一)的更多相关文章
- LaTeXの学习笔记
听说LaTeX挺有趣,决定学习一下提升自己的境(逼)界(格),借鉴了许多大神的经验与笔记,希望能坚持下去......(* ̄;( ̄ *) 1.论文写作的三种格式 eg. \documentclass{a ...
- [原创][LaTex]LaTex学习笔记入门
0. 简介 LaTEX(/ˈlɑːtɛx/,常被读作/ˈlɑːtɛk/或/ˈleɪtɛk/),文字形式写作LaTeX,是一种基于TEX的排版系统,由美国电脑学家莱斯利·兰伯特在20世纪80年代初期开发 ...
- [原创][LaTex]LaTex学习笔记之框架及宏包
0. 简介 LaTex在书写文档时的最基本单元就是首部的写作,变相的也可以说是头文件.本文章就来总结一下文档的基本格式和常用宏包. 1. 基本单元 基本单元需要对LaTex语法有一定的了解,这个很简单 ...
- Latex学习笔记-序
在写论文的过程中自学了$\LaTeX$, 想总结一下使用心得.刚开始整理了一下发现非常之乱,不知这么多零碎的知识该如何整理的有条理点,至少以后用到还能翻翻自己博客.这次写作论文图省劲用了IEEE的模板 ...
- LaTex学习笔记——LaTeX公式换行
ps. 1.“\!” 表示其前后字符之间无间隙 2.暂留 3.段落中的数学表达式应该置于( 和), $ 和$ 或者begin{math} 和end{math} 之间. ...
- LATEX学习笔记1
LATEX源文件的结构分三大部分,依次为:文档类声明.序言(可选).正文. 文档结构 \documentclass{article} \usepackage{amsmath} \usepackage{ ...
- Latex学习笔记 第一章
1.使用空行分段. 空行只起分段的作用,使用过多的空行并不起增大段间间距的作用. 2.段前不用打空格,LateX会自动完成文字的缩进. 即使打了也会被自动忽略. 3.通常汉字后面的空格会被忽略,其他符 ...
- latex学习笔记----数学公式
https://www.jianshu.com/p/d7c4cf8dc62d 1.数学公式在 \( 和 \)之间,$和$之间,或者\begin{math}和\end{math}之间 2.对于较大 ...
- LaTex学习笔记(一):review
1.百分号 \% 2.下标 b_{ij} 3.表格(excel2latex) 符号说明 \begin{table}[H] \centering \begin{tabular}{m{100pt}< ...
随机推荐
- PHP无法编译undefined reference to `libiconv_open
./configure --prefix=/usr/local/php52 make时提示:.....................................................e ...
- Android webView解析URL参数
2015年6月18日 13:56:21 星期四 又当爹又当娘啊............ public void onPageFinished(WebView view, String url) { s ...
- java web 学习 --第三天(Java三级考试)
第二天的学习内容这里:http://www.cnblogs.com/tobecrazy/p/3446646.html Jsp中的动作标签 <jsp:include> 实现动态包含,在一个文 ...
- 允许FTP用户登录并禁止Shell登录的方法
最近安装了vsftpd做FTP服务,发现系统用户的登录shell设置为/sbin/nologin,就无法使用FTP服务.网上资料说,vsftpd会为每个FTP登录用户去在/etc/shells中检查对 ...
- Effective C++ -----条款02:尽量以const, enum, inline替换 #define
class GamePlayer{private: static const int NumTurns = 5; int scores[NumTurns]; ...}; 万一你的编译器(错误地)不允许 ...
- backup daily
#!/bin/bash # #This is a test in book.thanks for Richard Blum. #Please put this file to crontab,than ...
- BM算法和Sunday快速字符串匹配算法
BM算法研究了很久了,说实话BM算法的资料还是比较少的,之前找了个资料看了,还是觉得有点生涩难懂,找了篇更好的和算法更好的,总算是把BM算法搞懂了. 1977年,Robert S.Boyer和J St ...
- 【leetcode】Minimum Size Subarray Sum(middle)
Given an array of n positive integers and a positive integer s, find the minimal length of a subarra ...
- openssl/asn1.h file not found的解决方法
iOS 引入支付宝 缺少 #include <openssl/asn1.h> 报错 解决方法: 在 Building Settings -> Search Paths -& ...
- [Android Pro] Service (startservice , bindservice , unbindservice, stopService)
1: startService -------stopService (this will call onDestroy) 2: bindService -------unbindService ...