LaTeX技巧10:LaTeX数学公式输入初级入门

常见数学公式问题集下载

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技巧10:LaTeX数学公式输入初级入门

这里有更多的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}

效果:

LaTeX技巧10:LaTeX数学公式输入初级入门


7、分数及开方

\frac{numerator}{denominator} \sqrt{expression_r_r_r}表示开平方,
\sqrt[n]{expression_r_r_r} 表示开 n 次方.


8、省略号(3个点)

\ldots 表示跟文本底线对齐的省略号;\cdots 表示跟文本中线对齐的省略号,

比如:

LaTeX技巧10:LaTeX数学公式输入初级入门

表示为 $$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).\]对应于

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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


10、多行的数学公式

LaTeX技巧10:LaTeX数学公式输入初级入门

可以表示为:

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

其中&是对其点,表示在此对齐。

使latex不自动显示序号,如果想让latex自动标上序号,则把去掉


11、矩阵

LaTeX技巧10:LaTeX数学公式输入初级入门

表示为:

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

LaTeX技巧10:LaTeX数学公式输入初级入门

are obtained in LaTeX by typing

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

respectively. The mathematical symbol LaTeX技巧10:LaTeX数学公式输入初级入门 is produced using \partial. Thus the Heat Equation

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

(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

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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:

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

LaTeX技巧10:LaTeX数学公式输入初级入门

LaTeX技巧10:LaTeX数学公式输入初级入门

and

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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

LaTeX技巧10:LaTeX数学公式输入初级入门

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$.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/55875.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Latex系列4---数学公式

前面几章其实已经把基础的Latex中文文本写的差不多了。这一章节针对我论文中用到的数学公式写一些心得。 数学公式 通常理工科写论文,少不了数学公式。在公式上,我个人认为相比word,latex还是有非常大的优势。 行内公式 行内公式通常用一对…

在OneNote种使用Latex命令愉快地敲出数学公式

在OneNote种使用Latex命令愉快地敲出数学公式 office中所有支持键盘输入的公式 office中默认是用的Unicodemath,相关的语法上个链接里面就有,office提供了Unicodemath与latex互转的方法。相关链接如下:LaTeX Math in Office Unicodemath …

数学公式识别神器Mathpix,零错误高效率

我们完成论文最费时间的可能就是公式了,尤其是对于工科学生,所以这里给大家带来了特别高效率几乎零错误的识别公式工具,这样可以节约很多的时间。博主测验,效率非常好。 官网 地址:https://mathpix.com/ 进入后&…

数学公式截图识别神器Mathpix无限使用教程

源链:数学公式截图识别神器Mathpix无限使用教程 - 哔哩哔哩点击进入查看全文>https://www.bilibili.com/read/cv8289444?fromsearch&spm_id_from333.337.0.0一、Mathpix软件注册教程 1.首先打开网址:https://accounts.mathpix.com/signup?refer…

ChatGPT驱动的虚拟试衣间,提升电子商务购物体验

随着电子商务的快速发展,线上购物已成为现代消费者的主要选择之一。然而,与线下购物相比,线上购物存在一个重要的挑战:消费者无法亲自试穿衣物。这一问题影响了许多消费者的购物决策,因为他们无法确定穿着的合适性和外…

AI硅基小助手——一个数字虚拟人化的ChatGPT类工具

自从ChatGPT发布以来,各种AIGC大模型类工具产品如汗牛充栋,参差不齐,大都是接上了ChatGPT的接口,功能几乎都一样,让人觉得乏味。 最近有一款新的名为“AI硅基小助手”的程序上线了,他基于自研的“硅基知识大…

提升16倍!Meta data2vec 2.0 性能爆表;ICML禁止大语言模型生成论文,LeCun:中小模型可以?...

本周AI界又有哪些新鲜事? 基础核心 高通推出将AD和ADAS整合的Snapdragon Ride Flex芯片 在新一年的国际消费电子展上,高通推出专门给汽车设计的处理器芯片Snapdragon Ride Flex。据了解,该芯片提供的解决方案可以将自动驾驶(AD&am…

第28课 叮叮当当 《小学生C++趣味编程》

#include<iostream> using namespace std; int main() {int i;for(i1;i<21;i){// 中有1个空格cout<<i<< ; if(i%20) cout<<"叮叮";if(i%30) cout<<"当当";if(i%20||i%30) cout<<endl; } return 0; }小…

网络编程05:我终于模拟出了QQ聊天——基础篇

本篇文章主要用UDP基础知识来模拟两人聊天 需求分析 设计一个程序&#xff0c;实现两人聊天&#xff0c;两人可以相互发信息&#xff0c;接收对方的信息&#xff0c;以及退出聊天 设计分析 一个人既可以发送信息也可以接收信息——多线程** 给这个人设置两个线程&#xff0…

网络编程大作业-聊天室

前言&#xff1a; 大二时候完成的网络编程大作业&#xff0c;用C\C语言写的一款简易聊天室。目前一个服务器只能连两个客户端&#xff0c;两个以上的我搞不出来。也可以在三台电脑操作&#xff0c;只要输入服务器的IP地址就行了。 使用的编译器&#xff1a;VS2010、VS2019 演…

第7课 阿布拉卡达布拉《小学生C++趣味编程》

#include<iostream> using namespace std; int main() {int a,b,t; a10;b20; cout<<"a"<<a<<" b"<<b<<endl; //输出交换前a,b的值 ta;ab;bt;cout<<"a"<<a<<" b"<<b&l…

新学期Flag已立,期待期末给自己一份满意的答卷

新的学期开始了&#xff0c;在此借助CSDN的此次征文活动&#xff0c;为自己制定新学期计划&#xff0c;立下小小的flag&#xff0c;希望在新的学期里和大家一起加油&#xff01; 一、自我介绍 研一新生一枚&#xff0c;目前正在学习神经网络以及Python&#xff0c;同时对前端…

小学生C++趣味编程 2023 01 05 测试

2023 01 05 测试题 初赛 一、单项选择题&#xff08;共20 题&#xff0c;每题 1.5 分&#xff0c;共计 30 分&#xff1b;每题有且仅有一个正确选项&#xff09; 1. 一个 32 位整型变量占用&#xff08; &#xff09;个字节。 A. 4 B. 8 C. 32 D. 128 2. 二进制数 11.…

《新学期,新Flag》乘风破浪

一、自我介绍 经常摆烂的大三学长&#xff0c;计算机专业&#xff0c;准备努力往上爬&#xff0c;一步一步的超越我前面的人&#xff0c;把他们狠狠的甩到后面。 二、新学期目标 1&#xff0c;好好学习 制定学习目标/找一个学习的榜样 熟悉各种编程软件的打开和关闭&#x1f…

小学生C++趣味编程 2023 01 08 测试

单项选择题 &#xff08;共20题&#xff0c;每题1.5分&#xff0c;共计30分。每题有且仅有一个正确答案.&#xff09;。 9. 设字符串S”Olympic”&#xff0c;S的非空子串的数目是&#xff08; &#xff09;。 A. 28 B. 29 C. 16 D. 17 10&#xff0e;W…

荣耀X40,X30,X20,X10,荣耀70,荣耀60 安装谷歌套件谷歌服务框架GMS,Google Play商店

你可能认为华为和荣耀分家之后&#xff0c;荣耀手机就可以安装Play商店,安装服务框架谷歌。但实际上即使荣耀手机和华为分家之后&#xff0c;也是不可以继续使用Play商店&#xff0c;荣耀最新发售的X40(GT,i,se,max)&#xff0c;包括以前的X30&#xff0c;X20&#xff0c;X10&a…

最新2021修复安装了谷歌框架GMS后华为/荣耀手机FCM推送服务仍不能用的问题(Microsoft Authenticator微软验证器在安装了Google服务后还是提示不可用)

简介 Firebase Cloud Messaging (FCM) 是 Google Cloud Messaging (GCM) 的升级版&#xff0c;是一种便于在移动应用和服务器应用程序之间进行消息传递的云推送服务。详细了解 目前大部分华为/荣耀手机在安装了谷歌框架GMS后&#xff0c;FCM推送服务仍然处于不可用状态&#…

支持华为荣耀HarmonyOS鸿蒙2.0系统安装谷歌服务框架play商店GMS的工具介绍,也开始支持其他安卓设备安装谷歌套件

华谷套件支持华为荣耀几乎全系列HarmonyOS鸿蒙2.0系统安装谷歌服务框架play商店GMS,主要支持华为荣耀安装华谷套件,现在也开始支持其他安卓国产手机小米,vivo,oppo,魅族,联想…,支持mate30/40 pro系列,p10,p20,p40,p50,xs2,nova5 6 7 8,9,play,荣耀30/40/50/magic系列/9x/10…解…

荣耀畅玩7x(BND-TL10移动版)刷LineageOS 19 GSI

BND-TL10刷 Lineage OS 19 引言步骤1.升级当前手机官方系统到最高支持的版本2.准备LineageOS rom3.刷入LineageOS4.结束&#xff0c;Happy 分享本文相关资源 引言 Generic System Image(GSI&#xff1a;通用系统映像)&#xff0c;相关知识请百度 本文将带领你在荣耀畅玩7x手机…

华为或者荣耀手机使用谷歌有Google弹窗该怎么办?

完成安装后。首先 进入设置 —应用管理 —搜索Google 点开右上角点击显示应用程序 这里我们只需要对Google服务框架&#xff0c;商店&#xff0c;服务这三个进行设置。 在断网的情况下&#xff0c;注意一定要在断网的情况下进行下面的操作。 Google服务框架和Googlepaly商店里…