1. 特殊符號(hào)
https://www.cnblogs.com/lihao-bupt/p/13191521.html
2. 表格
\begin{table*}[t]
\scriptsize
\centering
\caption{Distinct of top k tips, k=3,5,10.}
\label{distinct}
\begin{tabular}{cccccccccc}
\toprule
\multirow{2}{*}{Ranking strategy} & \multicolumn{2}{c}{Top 3} & \multicolumn{2}{c}{Top 5} & \multicolumn{2}{c}{Top 10} \\
\cmidrule(r){2-3} \cmidrule(r){4-5} \cmidrule(r){6-7}
& Distinct-1 & Distinct-2
& Distinct-1 & Distinct-2
& Distinct-1 & Distinct-2 \\
\midrule
Classification score & 0.780 & 0.934 & 0.753 & 0.928 & 0.720 & 0.918 \\
Like num & 0.822 & 0.962 & 0.776 & 0.949 & 0.730 & 0.926 \\
DPP rank & \textbf{0.832} & \textbf{0.967} & \textbf{0.789} & \textbf{0.953} & \textbf{0.737} & \textbf{0.932} \\
\bottomrule
\end{tabular}
\end{table*}
3.雙欄表格
雙欄表格
\begin{minipage}{\textwidth}
\begin{minipage}[t]{0.45\textwidth}
\centering
\makeatletter\def@captype{table}\makeatother\caption{title1}
\begin{tabular}{ccc}
\hline
n & L & \ \hline
0 & 1 & 1 \
1 & 3 & 4 \
2 & 5 & 7 \
3 & 7 & 10\
4 & 9 & 13 \
\hline
\end{tabular}
\end{minipage}
\begin{minipage}[t]{0.45\textwidth}
\centering
\makeatletter\def@captype{table}\makeatother\caption{title2}
\begin{tabular}{ccc}
\hline
n & L & \ \hline
0 & 1 & 1 \
1 & 3 & 4 \
2 & 5 & 7 \
3 & 7 & 10\
4 & 9 & 13 \
\hline
\end{tabular}
\end{minipage}
\end{minipage}