1. 程式人生 > >Latex插圖和插入表格程式碼模板

Latex插圖和插入表格程式碼模板

表格

\begin{table}[H]
\centering
\caption{}
\begin{tabular}{| c | c | c | c | c | c |}
\hline
\diagbox{Place}{subindex} & $SO_{2}$ & $NO_{2}$ & $PM_{10}$ & \textbf{API} &  \textbf{comprehensive evaluation} \\
\hline
A & 30 & 30 & 30 & 30 & 30\\
B & 30 & 15 & 15 & 30 & 20\\
\hline
\end{tabular}
\end{table}

效果如下:

圖片

\begin{figure}[H]%[!hptb] !h意思是忽略美學標準,將照片固定到此位置;不會上下浮動% 支援格式eps, pdf, png, jpg
\centering %使得插入的照片居中顯示
\includegraphics[width=0.8\textwidth, height=0.4\textheight]{./Pic/theairpollutionofxian.png}
% 圖片標題
\caption{The factors of air pollution in Xi'an}
\label{fig:5}       % 給圖片一個標籤便於交叉引用
\end{figure}