网址:http://www.sharelatex.com</br>
1. 如何使用中文
\usepackage{CJK}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{CJK}{UTF8}{gbsn}
..............................
\end{CJK}
\end{document}
2.添加表格
\begin{table}[tbp]
\centering % 表居中
\begin{tabular}{lccc} % {lccc} 表示各列元素对齐方式,left-l,right-r,center-c
\hline
Player &Round 1 &Round 2 &Round 3\\ \hline % \hline 在此行下面画一横线
Dave &89 &91 &88\\ % \\ 表示重新开始一行
Don &102 &105 &99\\ % & 表示列的分隔线
Todd &153 &256 &357\\ \hline
\end{tabular}
\caption{Through three rounds at the Muni.}
\end{table}
网友评论