environment决定了输出是什么样子,比如是居中还是靠左。是需要在后面加上序号还是不要,
如果过两个等式,如果只要在最后一个加序号怎么办。。
1:正常的等式输入用
\begin{equation}
a+b
\end{equation}
输出结果 居中加序号
a+b (1)
2不加序号
\begin{displaymath}
a+b
\end{displaymath}
输出结果 居中不加序号
a+b
3:直接用$
用单$
如:
$
a+b
$
输出 靠左而不加序号
a+b
用双$$
如
$$
a+b
$$
居中不加序号
如果有多个等式,则用
\begin{eqnarray}
a1=a2+b2 \nonumber \\
a3=a4+b4
\end{equarray}
输出结果
居中而且只有后面等式有序号
a1=a2+b2
a3=a4+b4 (2)
还可以用
\begin{eqnarray}
a1&=&a2+b2 \nonumber \\
a3&=&a4+b4
\end{equarray}
输出结果
居中而且只有后面等式有序号 而且等式两边有一定距离
a1 = a 2+b2
a3 = a4+b4 (2)
Wednesday, April 20, 2011
latex 中添加自定义的 definition or theorem 重点 斜体输入 与字体大小+黑体
\documentclass[times, 10pt,twocolumn]{article}
....
\usepackage{amsmath,amsthm,amssymb} % 引入 AMS 數學環境g....
\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}(for 公理)
\begin{document}
...
(如果只是definition,之用引入amssymb包)
\begin{definition}[Name of the Definition]
content of the definition
\end{definition}
首先要有支持的包。。如使用amssymb.
再用 \newtheorem{xxx}{xxx}来定义你自己的类型。
最后用begin{xxx}和\end{xxx} 来表示
{\em xxx} 表示后面用重点输出
改变字体大小与粗体
{\large\bf xxxx}
要先有字体大小再粗体
....
\usepackage{amsmath,amsthm,amssymb} % 引入 AMS 數學環境g....
\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}(for 公理)
\begin{document}
...
(如果只是definition,之用引入amssymb包)
\begin{definition}[Name of the Definition]
content of the definition
\end{definition}
首先要有支持的包。。如使用amssymb.
再用 \newtheorem{xxx}{xxx}来定义你自己的类型。
最后用begin{xxx}和\end{xxx} 来表示
{\em xxx} 表示后面用重点输出
改变字体大小与粗体
{\large\bf xxxx}
要先有字体大小再粗体
Subscribe to:
Posts (Atom)