個人LaTeX筆記(八)

2021-08-15 16:38:39 字數 1060 閱讀 8672

2月20日更

第十節:latex數學公式的多行公式   

這節課講了數學公式的多行公式,就是對前面equation的擴充套件,即講了其他幾種有關數學公式的環境,依舊提到了編號的問題。  *

\documentclass

\usepackage

\usepackage

\begin

\begin %實現多行命令

a+b=b+a \\ %實現換行,並且自動編號

a \times b=b \times a

\end

\begin

4+5=5+4=9 \\

2 \times 8=8 \times 2

\end

\begin %通過\notag阻止編號

3^2+4^2=5^2 \notag \\

5^2+12^2=13^2 \\

a^2+b^2=c^2

\end

%align環境,用&對齊,在&的右邊對齊

\begin

x &=t+\cos t+1 \\

y &=2\sin t

\end

\begin

x &=t & x &= \cos t & x &= t\\

y &=t^2 & y &= \sin t & y &= t

\end

\begin

\begin %對齊方式和align一樣,編號在中間

\cos 2x &= \cos^2 x - \sin^2 x \\ &=2\cos^2 x -1

\end

\end

\begin

d(x)= \begin %輸出分段函式,每行公式用&分隔,通常表示值和後面的條件

1, & \text x\in \mathbb;\\ %如果在數學公式中輸入中文要用\text{}命令,不然沒有反應

0, & \text x\in \mathbb\setminus \mathbb %\setminus 是/

\end %按乙個公式編號

\end

\end

個人LaTeX筆記(二)

2月12日更 第四節 latex特殊符號 多個空行等於乙個空行 latex自動產生縮排,不可以自己用空格產生 英文中單詞之間的空格多個等同於乙個 漢字與其他字元之間的會自動產生空格,中文中的空格會被忽略 禁止使用中文全形空格 不過現在windows10的輸入法我沒有找到在 區分全形半形 下面是具體的...

個人LaTeX筆記(四)

2月13日更 第六節 latex中 的製作 擴充套件cmd中輸入texdoc booktab texdoc longtab texdoc tabu 上節課比較簡單,今天學兩節 先附上 documentclass begin begin 生產 的命令,並且需要乙個指定列排版格式的必選引數,l是左對齊,...

個人LaTeX筆記(五)

2月14日更 第七節 latex浮動體 浮動體主要用於實現靈活分頁,避免無法分割的內容產生空白,也可以給圖表新增標題並且交叉引用。documentclass usepackage graphicspath begin latex 中的插圖 tex 花,見圖 ref begin htbp 通過可選引數...