LaTeX中常用代码段snippets(持续更新)

Posted chester-cs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LaTeX中常用代码段snippets(持续更新)相关的知识,希望对你有一定的参考价值。

  1.displaymath 单行数学环境,不带编号。

egin{displaymath}
  This is displaymath envirment. I don
 ‘t have a tag
end{displaymath}

  2.equation 单行数学环境,全文按序编号。

egin{equation}
	This is equation envirment. I have a tag
end{equation}

  3.itemize 条目环境,按小圆点排列。

egin{itemize}
  item This is 
  item itemize environment
end{itemize}

  4.enmerate 枚举环境,按数字序号排列。

egin{enumerate}
	item This is 
	item enumerate enviroment
end{enumerate}

  5.quotation 引用环境,将输入看作纯文本,有大缩进。

egin{quotation}
  This is quotation environment. I have big indent, and output plaintext.
end{quotation}

  6.verbatim 复读环境,字体特殊,将输入看作纯文本。

egin{verbatim}
  This is verbatim enviroment.I also output plaintext.
end{verbatim}

  7.tabular 表格环境。

egin{tabular}{l|c|c}
  Aloha&This is tabular environment & I can have many rows  hline
  I am BJ&Hello World &I love you  &I can make multiple lines & I can even enter $int$
end{tabular}

  其中{}框住的三个字母lcc表示表格有三列,l:本列左对齐,c:本列居中,r:本列右对齐。&符号分割表项,\\换行,hline添加水平线。

  8.description 描述环境,将输入看作纯文本。

egin{description}
  item[This is describe environment.]
  item[It seems cool.]
end{description}

  9.matrix 矩阵环境,使用时要加载amsmath包,并用美元括住。编译器会将matrix看作数学符号处理。

$$
egin{matrix}
  I& am& a  Matrix& I& am  seen& as& a symbol
end{matrix}
$$

  10.table 浮动表格环境,浮动体位置更灵活。

egin{table}[hbt]
  egin{tabular}{l|cc}
    & I& just    hline
   & like & tabular    & environment&but more complete
  end{tabular}
  caption{This is a floating table.}
end{table}

  11.preamble 引言环境。

	itle{This is a preamble}
author{Chester}
date{	oday}
maketitle

  12.figure 图片环境。

egin{figure}[hbt]
  centering
  includegraphics{lenna.png}
  caption{lenna}
end{figure}

技术图片

技术图片

以上是关于LaTeX中常用代码段snippets(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章

持续更新常用/易错Latex符号介绍

持续更新常用/易错Latex符号介绍

LaTex公式编辑常用语法(持续更新……)

LaTex公式编辑常用语法(持续更新……)

markdown LaTeX Snippets

LaTeX宏包参考文档 -- 持续更新中