做者:凱魯嘎吉 - 博客園 http://www.cnblogs.com/kailugaji/html
這篇博客給出一個關於LaTeX論文的小范例,包含了如何插入圖片並設置圖片大小,如何插入複雜表格(包括合併單元格,橫線位置,列寬,總表格寬度,行間隔,表格一行裏面文字太多須要另起一行,表格左下角註釋等等),如何單獨插入公式與在文本中插入公式,如何插入參考文獻,如何引用文獻或公式,如何插入網址等等。(自行忽略英文語法錯誤,只是作一個關於LaTeX的小模板)。更多LaTeX知識,參考:LaTeX經常使用連接與資料post
\documentclass{article} % 插入圖須要加的包 \usepackage{graphicx} % 插入表格須要的包 \usepackage{multirow} \usepackage{threeparttable} \newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}} % 插入公式須要的包 \usepackage{amsmath} % 引用,本身定義顏色 \usepackage[colorlinks, linkcolor=blue, anchorcolor=green, citecolor=red]{hyperref} % 超連接 \usepackage{url} % Author:凱魯嘎吉 https://www.cnblogs.com/kailugaji/ % 開始正文 \begin{document} % 標題 \title{A LaTeX Example} % 做者 \author{Kailugaji} \maketitle % 章節 \section{Model} This is an equation (\ref{eq:1}) and the picture is shown in Fig. \ref{fig:1}, where $AB^2$ is xxxxx. % 公式 \begin{equation} \label{eq:1} \begin{aligned} AB^2 = BC^2 + AC^2 \end{aligned} \end{equation} \subsection{Text} This is a table, which is shown in Table \ref{tab:1}, and this is a reference \cite{ref:1}. % 表格 \begin{table} \begin{threeparttable} \centering \caption{Blogs kailugaji} \setlength{\tabcolsep}{5mm}{ \begin{tabular}{ccccp{0.1mm}ccc} \hline \noalign{\smallskip} \multirow{3}[4]{*}{Blogs} & \multirow{3}[4]{*}{Lists} & \multicolumn{2}{c}{Class1} & & \multicolumn{3}{c}{Class2} \\ \cline{3-4}\cline{6-8} & & \multirow{2}[2]{*}{\tabincell{c}{E1\\(f=0.4)}} & \multirow{2}[2]{*}{\tabincell{c}{E2\\(f=0.5)}} & & \multirow{2}[2]{*}{E3} & \multicolumn{1}{c}{\multirow{2}[2]{*}{E4}} & \multicolumn{1}{c}{\multirow{2}[2]{*}{E5}} \\ & & & & & & & \\ \noalign{\smallskip} \hline \noalign{\smallskip} \multirow{3}[1]{*}{A} & A1 & 1 & 3 & & 2 & \multirow{3}[1]{*}{--} & \multirow{3}[1]{*}{--} \\ & A2 & 2 & 4 & & 0 & & \\ & A3 & 5 & 9 & & 7 & & \\ \noalign{\smallskip} \multirow{3}[0]{*}{B} & B1 & \multirow{3}[0]{*}{--} & \multirow{3}[0]{*}{--} & & \multirow{3}[0]{*}{--} & 1 & 4 \\ & B2 & & & & & 2 & 2 \\ & B3 & & & & & 5 & 9 \\ \noalign{\smallskip} \multirow{3}[0]{*}{C} & C1 & 8 & 4 & & 8 & \multirow{3}[0]{*}{--} & \multirow{3}[0]{*}{--} \\ & C2 & 3 & 6 & & 3 & & \\ & C3 & 2 & 1 & & 5 & & \\ \noalign{\smallskip} \hline \end{tabular}} \begin{tablenotes} \item[1] xxxxxxxxx. % \item[*] xxxxxxxxx. \end{tablenotes} \label{tab:1} \end{threeparttable} \end{table} % 圖片 \begin{figure} \centering \includegraphics[width=5cm]{1.png} \caption{Kailugaji} \label{fig:1} \end{figure} % 參考文獻 \begin{thebibliography}{} \bibitem{ref:1} Kailugaji, Blog about LaTex, Journal, Volume, page numbers (2020), \url{https://www.cnblogs.com/kailugaji/} \end{thebibliography} \end{document}
源文件與PDF文件:LaTex範例-凱魯嘎吉.rarthis