Latex学习

latex 写公式会遇到下面几种情况,分别如下处理:
1,正常。
就用普通的

a^3+b=c
\end{equation}
\label{eq:1}```
这时候会自动编号,且可以引用\ref{eq:1}

2,是一个需要几步化简下去的等式,且只需要在最后一步编号。这时候可以用\align 这时候可以使用\notag 命令。但注意要有\usepackage{amsmath}宏包
```\begin{align} 
A   &=  jkhkjhkhkhb  \notag  \\
  &=   b \notag\\
dsj &=  daj  
\end{align}```
也可以使用:split命令  它可以在几行公式中间加编号

\begin{equation}
\begin{split}
(a + b)^3 &= (a + b) (a + b)^2 \
&= (a + b)(a^2 + 2ab + b^2) \
&= a^3 + 3a^2b + 3ab^2 + b^3
\end{split}
\end{equation}


3.多行公式,且都编号。\eqnarry
```\begin{eqnarray}
\frac{V_1(x)}{\beta_e}=-A_1\frac{\partial q}{\partial q}\dot{q}+Q_1\\
\frac{V_2(x)}{\beta_e}=-A_2\frac{\partial q}{\partial q}\dot{q}+Q_2
\end{eqnarray}```

4,长公式断开,并只最后编号一个。
也可以使用:split命令  它可以在几行公式中间加编号
\begin{equation}
 \begin{split}
  (a + b)^3 =&a^3+3a^2b+ \\
            & 3ab^2 + b^3
 \end{split}
\end{equation}
LaTeX最强大的功能就是显示美丽的数学公式,下面我们来看这些公式是怎么实现的。


1、数学公式的前后要加上 $ 或 \( 和 \),比如:$f(x) = 3x + 7$ 和 \(f(x) = 3x + 7\) 效果是一样的;
如果用 \[ 和 \],或者使用 $$ 和 $$,则改公式独占一行;
如果用 \begin{equation} 和 \end{equation},则公式除了独占一行还会自动被添加序号, 如何公式不想编号则使用 \begin{equation*} 和 \end{equation*}.


2、字符
普通字符在数学公式中含义一样,除了
 #  $ % & ~ _ ^ \ { }
若要在数学环境中表示这些符号# $ % & _ { },需要分别表示为\# \$ \% \& \_ \{ \},即在个字符前加上\。


3、上标和下标
用 ^ 来表示上标,用 _ 来表示下标,看一简单例子:

$$\sum_{i=1}^n a_i=0$$
$$f(x)=x^{x^x}$$

效果:



这里有更多的LaTeX上标下标的设置


4、希腊字母
更多请参见这里


5、数学函数


6、在公式中插入文本可以通过 \mbox{text} 在公式中添加text,比如:

\documentclass{article}
\usepackage{CJK}
\begin{CJK*}{GBK}{song}
\begin{document}
$$\mbox{对任意的$x>0$}, \mbox{有 }f(x)>0. $$
\end{CJK*}
\end{document}

效果:




7、分数及开方
\frac{numerator}{denominator} \sqrt{expression_r_r_r}表示开平方,
\sqrt[n]{expression_r_r_r} 表示开 n 次方.


8、省略号(3个点)
\ldots 表示跟文本底线对齐的省略号;\cdots 表示跟文本中线对齐的省略号,

比如:



表示为 $$f(x_1,x_x,\ldots,x_n) = x_1^2 + x_2^2 + \cdots + x_n^2 $$


9、括号和分隔符
() 和 [ ] 和 | 对应于自己;
{} 对应于 \{ \};
|| 对应于 \|。
当要显示大号的括号或分隔符时,要对应用 \left 和 \right,如:

\[f(x,y,z) = 3y^2 z \left( 3 + \frac{7x+5}{1 + y^2} \right).\]对应于



\left. 和 \right. 只用与匹配,本身是不显示的,比如,要输出:



则用 $$\left. \frac{du}{dx} \right|_{x=0}.$$


10、多行的数学公式



可以表示为:

\begin{eqnarray*}
\cos 2\theta & = & \cos^2 \theta - \sin^2 \theta \\
& = & 2 \cos^2 \theta - 1.
\end{eqnarray*}

其中&是对其点,表示在此对齐。
*使latex不自动显示序号,如果想让latex自动标上序号,则把*去掉


11、矩阵



表示为:

The \emph{characteristic polynomial} $\chi(\lambda)$ of the
$3 \times 3$~matrix
\[ \left( \begin{array}{ccc}
a & b & c \\
d & e & f \\
g & h & i \end{array} \right)\]
is given by the formula
\[ \chi(\lambda) = \left| \begin{array}{ccc}
\lambda - a & -b & -c \\
-d & \lambda - e & -f \\
-g & -h & \lambda - i \end{array} \right|.\]

c表示向中对齐,l表示向左对齐,r表示向右对齐。


12、导数、极限、求和、积分(Derivatives, Limits, Sums and Integrals)

The expression_r_r_rs



are obtained in LaTeX by typing

\frac{du}{dt} and \frac{d^2 u}{dx^2}

respectively. The mathematical symbol  is produced using \partial. Thus the Heat Equation



is obtained in LaTeX by typing

\[ \frac{\partial u}{\partial t}
= h^2 \left( \frac{\partial^2 u}{\partial x^2}
+ \frac{\partial^2 u}{\partial y^2}
+ \frac{\partial^2 u}{\partial z^2}\right)\]

To obtain mathematical expression_r_r_rs such as



in displayed equations we type \lim_{x \to +\infty}, \inf_{x > s} and \sup_K respectively. Thus to obtain



(in LaTeX) we type

\[ \lim_{x \to 0} \frac{3x^2 +7x^3}{x^2 +5x^4} = 3.\]

To obtain a summation sign such as



we type \sum_{i=1}^{2n}. Thus



is obtained by typing

\[ \sum_{k=1}^n k^2 = \frac{1}{2} n (n+1).\]

We now discuss how to obtain integrals in mathematical documents. A typical integral is the following:



This is typeset using

\[ \int_a^b f(x)\,dx.\]

The integral sign is typeset using the control sequence \int, and the limits of integration (in this case a and b are treated as a subscript and a superscript on the integral sign.
Most integrals occurring in mathematical documents begin with an integral sign and contain one or more instances of d followed by another (Latin or Greek) letter, as in dx, dy and dt. To obtain the correct appearance one should put extra space before the d, using \,. Thus





and



are obtained by typing

\[ \int_0^{+\infty} x^n e^{-x} \,dx = n!.\]

\[ \int \cos \theta \,d\theta = \sin \theta.\]

\[ \int_{x^2 + y^2 \leq R^2} f(x,y)\,dx\,dy
= \int_{\theta=0}^{2\pi} \int_{r=0}^R
f(r\cos\theta,r\sin\theta) r\,dr\,d\theta.\]

and

\[ \int_0^R \frac{2x\,dx}{1+x^2} = \log(1+R^2).\]

respectively.

In some multiple integrals (i.e., integrals containing more than one integral sign) one finds that LaTeX puts too much space between the integral signs. The way to improve the appearance of of the integral is to use the control sequence \! to remove a thin strip of unwanted space. Thus, for example, the multiple integral



is obtained by typing

$$ \[ \int_0^1 \! \int_0^1 x^2 y^2\,dx\,dy.\] $$

Had we typed

```\[ \int_0^1 \int_0^1 x^2 y^2\,dx\,dy.\]```

we would have obtained



A particularly noteworthy example comes when we are typesetting a multiple integral such as



Here we use \! three times to obtain suitable spacing between the integral signs. We typeset this integral using

```\[ \int \!\!\! \int_D f(x,y)\,dx\,dy.\]```

Had we typed

```\[ \int \int_D f(x,y)\,dx\,dy.\]```

we would have obtained



The following (reasonably complicated) passage exhibits a number of the features which we have been discussing:



One would typeset this in LaTeX by typing In non-relativistic wave mechanics, the wave function

$\psi(\mathbf{r},t)$ of a particle satisfies the
\emph{Schr"{o}dinger Wave Equation}
[ i\hbar\frac{\partial \psi}{\partial t}
= \frac{-\hbar^2}{2m} \left(
\frac{\partial^2}{\partial x^2}

  • \frac{\partial^2}{\partial y^2}
  • \frac{\partial^2}{\partial z^2}
    \right) \psi + V \psi.]
    It is customary to normalize the wave equation by
    demanding that
    [ \int !!! \int !!! \int_{\textbf{R}^3}
    \left| \psi(\mathbf{r},0) \right|^2,dx,dy,dz = 1.]
    A simple calculation using the Schr"{o}dinger wave
    equation shows that
    [ \frac{d}{dt} \int !!! \int !!! \int_{\textbf{R}^3}
    \left| \psi(\mathbf{r},t) \right|^2,dx,dy,dz = 0,]
    and hence
    [ \int !!! \int !!! \int_{\textbf{R}^3}
    \left| \psi(\mathbf{r},t) \right|^2,dx,dy,dz = 1]
    for all times~$t$. If we normalize the wave function in this
    way then, for any (measurable) subset~$V$ of $\textbf{R}^3$
    and time~$t$,
    [ \int !!! \int !!! \int_V
    \left| \psi(\mathbf{r},t) \right|^2,dx,dy,dz]
    represents the probability that the particle is to be found
    within the region~$V$ at time~$t$.
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容