數(shù)學字符
Note: \qquad 為tab空格珠十,在$ $之間敲入數(shù)學字符乡摹,若在數(shù)學公式編輯環(huán)境下可以省略$符。
更多符號見這里
數(shù)學公式
- 數(shù)學公式居中編輯
\begin{eqnarray}
input your equation
\end{eqnarray}
- 數(shù)學公式等號對齊(帶公式編號)
\begin{eqnarray}
XXXX &=& YYYYY //
(可有可無) &=& ZZZZ
\end{eqnarray}
矩陣
$\left(
\begin{array}{cc} #這里cc是指個數(shù)
input your contents & input your contents \\
input your contents & input your contents \\
\end{array}
\right)$
表格
- 樣式一
\begin{table}
\centering
\begin{tabular}{l|r}
Item & Quantity \\\hline
Widgets & 42 \\
Gadgets & 13
\end{tabular}
\caption{\label{tab:widgets}An example table.}
\end{table}
- 樣式二
\begin{table}[!hbp]
\centering
\begin{tabular}{ccccccc}
\hline
original score & 1 & 2 & 3 & 4 & 5 & 6 \\
\hline
modified score & -4 & -2 & -1 & 1 & 2 & 4 \\
\hline
\end{tabular}
\caption{transformation of rating score}
\end{table}
圖片
\begin{figure}
\centering
\includegraphics[width=0.3\textwidth]{frog.jpg}
\caption{\label{fig:frog}This frog was uploaded via the project menu.}
\end{figure}
排版
- 圓圈分段提示符
\begin{itemize}
\item input your contents
\item input your contents
\end{itemize}
- 帶數(shù)字的分段提示符
\begin{enumerate}
\item input your contents
\item input your contents
\end{itemize}