latex如何居中一行字 latex表格標題內容居中( 三 )


補充1. 公式
公式就是LaTex公式,與Makedown的語法保持一致.有序公式如下所示,無序公式使用$$$$符號或者\\begin{equation*}即可 。
\\begin{equation}
1+2+3+\\dots+(n-1)+n = \\frac{n(n+1)}{2}
\\end{equation}
2. 插入圖表
\\begin{figure}[h]
\\begin{center}
\\includegraphics[scale=0.8]{圖片名字}
\\end{center}
\\caption{外部圖片標題}
\\label{fig:test_demo}
\\end{figure}
在此之前需要引入包\\usepackage{graphics}
只需要按照上述步驟,我們就可以構建完整的論文了 。

推薦閱讀