【LaTeX应用】表格中添加注释

在表格下面添加一些注释,需要添加一个包,threeparttable

\usepackage{threeparttable}
\begin{document}
	
\begin{table}[!t]
%	\renewcommand{\arraystretch}{1.3}
	\caption{XXXXXX}
	\label{dependence}
	\centering
	\begin{threeparttable}
		\begin{tabular}{c|c|c|c}
			\hline
			SCHEME &aaa &aaa   & aaa     \\
			\hline
			CPPAscheme & aaa & bbb   & bbb \\
			\hline
			Zhangscheme & aaa  &   &   \\
			\hline
			Bayatscheme  & aaa  &   &    \\
			\hline
			ABAHscheme & aaa  &   &   \\
			\hline
			IBVscheme  &  aaa &   &    \\
			\hline
			 scheme & bbb  & aaa  & aaa \\
			\hline
		\end{tabular}
		\begin{tablenotes}
			\footnotesize
			\item aaa: The requirement is satisfied.
			\item bbb: The requirement is not satisfied.
		\end{tablenotes}
		
	\end{threeparttable}
	
\end{table}
\end{document}

与上面的不同点就是注释的项目标识,只要稍微修改一下下标就可以实现

		\begin{tablenotes}
			\footnotesize
			\item[aaa]: The requirement is satisfied.
			\item[bbb]: The requirement is not satisfied.
		\end{tablenotes}

 


版权声明:本文为m0_50984266原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。