latex 多个表格连续
时间: 2024-01-06 08:58:10 浏览: 305
FX5U-DRVTBL指令-多个表格运行指令(连续)
在LaTeX中,要实现多个连续的表格,可以使用多个table环境,并将它们放在一起。每个table环境都会生成一个单独的表格。下面是一个示例代码,展示了如何在LaTeX中实现多个连续的表格:
\begin{table}[!htbp]
\caption{Complex Illumination Between Images}
\begin{center}
\setlength{\tabcolsep}{4mm}
\begin{tabular}{|c|c|c|}
\hline
* & * & *\\
\hline
* & * & *\\
\hline
* & * & *\\
\hline
* & * & *\\
\hline
* & * & *\\
\hline
\end{tabular}
\label{tab1}
\end{center}
\end{table}
\begin{table}[!htbp]
\caption{Comparison of Rmse}
\begin{center}
\begin{tabular}{|p{30pt}|p{30pt}|p{30pt}|p{30pt}|p{30pt}|}
\hline
Image & Pouli et al. \cite{b3}(50\%) & Pouli et al. \cite{b3}(100\%) & Piti\'{e} et al. \cite{b10} & Our results\\
\hline
\includegraphics[width=0.5in]{images/13} & 11.7705 & 12.9743 & 12.9317 & 10.4320\\
\hline
\includegraphics[width=0.5in]{images/14} & 11.7705 & 12.9743 & 12.9317 & 10.4320\\
\hline
\includegraphics[width=0.5in]{images/15} & 11.7705 & 12.9743 & 12.9317 & 10.4320\\
\hline
\end{tabular}
\label{tab2}
\end{center}
\end{table}
以上代码展示了两个连续的表格。第一个表格是"Complex Illumination Between Images",第二个表格是"Comparison of Rmse"。每个表格都有自己的标题和编号。你可以根据需要修改表格的内容和格式。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [Latex表格排版(三个表格并列、单元格内容自动换行)](https://blog.csdn.net/u010682375/article/details/78704507)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* [MultiBranchTexter:多分支文本编辑器](https://download.csdn.net/download/weixin_42119281/15636766)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文