1. 程式人生 > >makdown--LaTeX公式大總結 makdown--LaTeX公式大總結

makdown--LaTeX公式大總結 makdown--LaTeX公式大總結

makdown--LaTeX公式大總結

2017年05月04日 21:37:58 閱讀數:2774
													<span class="tags-box artic-tag-box">
							<span class="label">標籤:</span>
															<a data-track-click="{&quot;mod&quot;:&quot;popu_626&quot;,&quot;con&quot;:&quot;LaTeX公式&quot;}" class="tag-link" href="http://so.csdn.net/so/search/s.do?q=LaTeX公式&amp;t=blog" target="_blank">LaTeX公式																</a><a data-track-click="{&quot;mod&quot;:&quot;popu_626&quot;,&quot;con&quot;:&quot;Markdown&quot;}" class="tag-link" href="http://so.csdn.net/so/search/s.do?q=Markdown&amp;t=blog" target="_blank">Markdown																</a><a data-track-click="{&quot;mod&quot;:&quot;popu_626&quot;,&quot;con&quot;:&quot;希臘字母&quot;}" class="tag-link" href="http://so.csdn.net/so/search/s.do?q=希臘字母&amp;t=blog" target="_blank">希臘字母																</a><a data-track-click="{&quot;mod&quot;:&quot;popu_626&quot;,&quot;con&quot;:&quot;總結&quot;}" class="tag-link" href="http://so.csdn.net/so/search/s.do?q=總結&amp;t=blog" target="_blank">總結																</a>
						<span class="article_info_click">更多</span></span>
																				<div class="tags-box space">
							<span class="label">個人分類:</span>
															<a class="tag-link" href="https://blog.csdn.net/libing403/article/category/6178339" target="_blank">力學/ABAQUS																</a>
						</div>
																							</div>
			<div class="operating">
													</div>
		</div>
	</div>
</div>
<article class="baidu_pl">
	<div id="article_content" class="article_content clearfix csdn-tracking-statistics" data-pid="blog" data-mod="popu_307" data-dsm="post">
							<div class="article-copyright">
				版權宣告:本文為博主原創文章,轉載請註明出處					https://blog.csdn.net/libing403/article/details/71189148				</div>
							            <div id="content_views" class="markdown_views">
						<!-- flowchart 箭頭圖示 勿刪 -->
						<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><path stroke-linecap="round" d="M5,0 0,2.5 5,5z" id="raphael-marker-block" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></path></svg>
						<h1 id="makdownlatex公式大總結"><a name="t0"></a>makdown–LaTeX公式大總結</h1>

已經用Markdown編輯器一段時間了,對於其基本語法算是比較熟悉了,但是在寫數學公式時還是偶爾會有一些符號和希臘字母會記不起來,這裡做一個綜合的總結,一方面方便以後自己檢視,也分享給大家,希望對你有用!

數學公式

公式 Markdown 公式 Markdown
行間公式 $表示式$ abab \mathbf{X}

自定義命令

命令\newcommand可以用來定義自己個性的命令。
例如一般向量使用加粗的斜體表示,但是latex公式使用\mathbf{X}可以加粗,但不是斜體,那麼自定義一個命令\vect,

$\newcommand{\vect}[1]{\boldsymbol{#1}}$
  
  • 1

其中[1]表示要修飾一個表示式,{#1}表示要操作的表示式。那麼定義上述命令之後,用\vect修飾字符的結果就是加粗的斜體,
例如\mathbf{X}顯示為XX,加粗的斜體。
再定義命令\SES

$ \newcommand{\SES}[3]{ 0 \to #1 \to #2 \to #3 \to 0 } $
  
  • 1


其中[3]表示要修飾3個表示式,{#1}表示要操作的第一個表示式
那麼

$$ \SES {A}{B}{C} $$
  
  • 1

顯示為

0ABC00→A→B→C→0

矩陣

塊公式–簡單矩陣

    $$
    \begein{matrix}
    1 & 2 & 3 \\
    a & b & c \\
    4 & 5 & 6 
    \end{matrix} \tag{1}
    $$
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

結果:

1a42b53c6(1)(1)123abc456

行間公式–簡單矩陣

    行間矩陣:$ \begin{matrix} 1 & 2  \\ a & b  \end{matrix}$
  
  • 1

結果:
行間矩陣:1a2b12ab

帶{…}的矩陣

$$
\left\{
\begin{matrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{matrix}
\right\} \tag{2}
$$
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

結果:

147258369(2)(2){123456789}
帶[…]的矩陣

    $$
     \left[
     \begin{matrix}
       1 & 2 & 3 \\
       4 & 5 & 6 \\
       7 & 8 & 9
      \end{matrix}
      \right] \tag{3}
    $$
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

結果

147258369(3)(3)[123456789]
帶省略號的矩陣

    $$
    \left[
    \begin{matrix}
     1      & 2      & \cdots & 4      \\
     7      & 6      & \cdots & 5      \\
     \vdots & \vdots & \ddots & \vdots \\
     8      & 9      & \cdots & 0      \\
    \end{matrix}
    \right]
    $$
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

結果:

178269450[12⋯476⋯5⋮⋮⋱⋮89⋯0]

帶引數的矩陣,比如寫增廣矩陣

    $$ 
    \left[
        \begin{array}{cc|c}
          1 & 2 & 3 \\
          4 & 5 & 6
        \end{array}
    \right] \tag{7}
    $$
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

[142536](7)(7)[123456]

常用數學符號及希臘字母

大寫 markdown 小寫 markdown
AA \omega

數學運算子

這裡寫圖片描述

關係運算符

這裡寫圖片描述

標點符號

這裡寫圖片描述

雜項符號

這裡寫圖片描述

可變大小的符號

這裡寫圖片描述

三角函式等類log符號

這裡寫圖片描述

分隔符

這裡寫圖片描述

大分隔符

這裡寫圖片描述

數學讀音符號

這裡寫圖片描述

其他一些構造符

這裡寫圖片描述