本文主要是介绍Latex表格换页及表头换行显示,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Latex表格换页
长表格自动换页
文件头使用\usepackage{supertabular}
使用示例:
\begin{center}
\centering
\topcaption{Notations}
\label{Notations}
\begin{supertabular}{p{0.12\columnwidth}|p{0.8\columnwidth}}
\hline
σ \sigma σ& a function of sigmoid activation \
\hline
h t − 1 h_{t-1} ht−1& a hidden state output in previous time slot\
\end{supertabular}
\end{center}
表头分行显示
预期效果:TABLE 1” 单独一行,然后标题 “xxxx” 另起一行并居中
1、文章前头引用:\usepackage{caption}
2、在\begin{document}前加入\captionsetup[table]{labelformat=simple, labelsep=newline, textfont=sc}
实际效果:
这篇关于Latex表格换页及表头换行显示的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!