Matlab中下标,斜体,及希腊字母的使用方法

Matlab中下标,斜体,及希腊字母的使用方法


下面是Matlab官方列出来的Tex代码列表,包含了绝大部分的希腊字母和数学符号 


Character Sequence

Symbol

Character Sequence

Symbol

Character Sequence

Symbol

\alpha

α

\upsilon

υ

\sim

~

\beta

β

\phi

Φ

\leq

\gamma

γ

\chi

χ

\infty

\delta

δ

\psi

ψ

\clubsuit

\epsilon

ɛ

\omega

ω

\diamondsuit

\zeta

ζ

\Gamma

Γ

\heartsuit

\eta

η

\Delta

Δ

\spadesuit

\theta

Θ

\Theta

Θ

\leftrightarrow

\vartheta

ϑ

\Lambda

Λ

\leftarrow

\iota

ι

\Xi

Ξ

\uparrow

\kappa

κ

\Pi

Π

\rightarrow

\lambda

λ

\Sigma

Σ

\downarrow

\mu

µ

\Upsilon

ϒ

\circ

º

\nu

ν

\Phi

Φ

\pm

±

\xi

ξ

\Psi

Ψ

\geq

\pi

π

\Omega

Ω

\propto

\rho

ρ

\forall

\partial

\sigma

σ

\exists

\bullet

\varsigma

ς

\ni

\div

÷

\tau

τ

\cong

\neq

\equiv

\approx

\aleph

\Im

\Re

\wp

\otimes

\oplus

\oslash

\cap

\cup

\supseteq

\supset

\subseteq

\subset

\int

\in

\o

ο

\rfloor

ë

\lceil

é

\nabla

\lfloor

û

\cdot

·

\ldots

...

\perp

\neg

¬

\prime

´

\wedge

\times

x

\0

\rceil

ù

\surd

\mid

|

\vee

\varpi

ϖ

\copyright

©

\langle

\rangle

 

 

 


下面给出Matlab中下标及希腊字母的使用方法,还有更多的使用方法可以参考matlab帮助
文档中的Text Properties:
下标用 _(下划线)
上标用^ (尖号)
斜体 \it
黑体 \bf
<< \ll
>> \gg
正负 \pm
左箭头 \leftarrow
右箭头 \rightarrow
上箭头 \uparrow
上圆圈(度数) \circ
例 text(2,3,'\alpha_2^\beta')

或者text(2,3,'\alpha_{\beta\mu}')

it\w(x):mm,要求w(x)是斜体,而:mm不要求斜体

{it\w(x)}:mm
把要设置成斜体的用大括号放在一起

注: 可用{}把须放在一起的括起来

 

特殊的数学符号 Matlab中下标,斜体,及希腊字母的使用方法

\approx   ≈     \oplus      ≡     \neq ≠     \leq  ≤     \geq ≥     \pm ±   

\times   ×    \div ÷    \int     \exists       \infty    ∞     \in      \sim     \forall       \angle       \perp        \cup     \cap ∩     \vee     \wedge        \surd    根号       \otimes    叉乘符号   \oplus

箭头

\uparrow ↑     \downarrow    ↓     \rightarrow     →    \leftarrow       ←   

 

在图形的坐标处书写文字注释Matlab中下标,斜体,及希腊字母的使用方法Matlab中下标,斜体,及希腊字母的使用方法

x=0:0.2:2*pi;
y=sin(x);
plot(x,y)
text(2,sin(2),'wacs5');
 

全文源至 :http://blog.sina.com.cn/s/blog_636a8b120100i7dk.html,  感谢作者

猜你喜欢

转载自blog.csdn.net/u010272085/article/details/22894073
今日推荐