其他分享
首页 > 其他分享> > Latex并排两张表格 分别加入表格说明的方法

Latex并排两张表格 分别加入表格说明的方法

作者:互联网

 【若本文能给你提供帮助,我将无比荣幸,但是也请你也给我点一个赞,非常感谢!】

感谢博主的启发,使用了该博主提供的代码,的确可以实现两张表格并排,但是有个问题就是,我加入了\caption{表格注释} 总是失败,然后我进行了排查,最后发现了问题并解决了,

 

效果图

 

在排查过程中,我发现不能加入注释的原因是,原来使用的代码是\begin{minipage}包起来的,但是这个代码块是不支持\caption,所以我修改了我的代码将\begin{minipage}改成了\begin{table}[],现在将代码展示如下

代码

\begin{table}[]
	\vspace{-1.0cm} 
	\begin{minipage}[t]{0.45\textwidth}
		\centering
		
		\begin{tabular}{l}
			\hline
			\textbf{	Algorithm 1} SETCOPYRIGHT\\ \hline
			\textbf{Input:}ID, copyrigtNum, name, creator, royalty,\\ \hspace*{0.9cm} publisher, buyerAddress, date, supplement\\
			1.\textbf{if}(\textit{SetterisCopyrightOwner}) \textbf{then}\\
		    %省略   
			11.\textbf{else}\\
			12.	\hspace*{0.3cm} \textit{alert permission incorrect}\\
			13.\textbf{end  if}=0\\\hline
		\end{tabular}
		\caption{Copyright Creation Algorithm }
		\label{tab1}
	\end{minipage}
	\begin{minipage}[t]{0.45\textwidth}
		\centering
		
		\begin{tabular}{l}
			\hline
			\textbf{	Algorithm 2} SEARCHCOPYRIGHT\\ \hline
			\textbf{Input:}musicID, CopyrigtNum			\\
			1.\textbf{if}(\textit{musicIDandCopyrigtNumExists}) \textbf{then}\\
			2.	\textbf{	Output:} \\
			 %省略 
			4.\hspace*{0.5cm} \textit{alert not exists}\\
			5.\textbf{end  if}=0\\\hline
		\end{tabular}
		\caption{Copyright Search Algorithm }
		\label{tab2}
		%		\caption{Copyright Search Algorithm }
	\end{minipage}
	
\end{table}

 

 

标签:Latex,begin,end,Algorithm,表格,textbf,并排,hline,minipage
来源: https://blog.csdn.net/binbinczsohu/article/details/109899268