惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
J
Java Code Geeks
Martin Fowler
Martin Fowler
博客园 - Franky
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
B
Blog
The Cloudflare Blog
F
Fortinet All Blogs
量子位
腾讯CDC
博客园 - 司徒正美
D
Docker
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
D
DataBreaches.Net
小众软件
小众软件

博客园 - longbigfish

部署(https证书) https证书问题(本地) 参数更新 Ubuntu 24安装Neo4j详细教程 protect 紧急 手机 刷脏页的两种模式 python中的多线程陷阱与pytorch分布式执行机制 git之复合指令和submodule rpc编程示例 mpi编程 cifs远程挂载 使用脚本进入一个命令行控制台,并预设执行的命令列表 cifs挂载远程文件出现 No such device or address错误 matplotlib中文显示-微软雅黑 latex编译过程-关于嵌入所有字体 python做图笔记 linux启动全过程 连接并同步windows下的git仓库 反向ssh
longtable 跨越多个页面时,如何在跨页时自动断行并加上横线...
longbigfish · 2018-12-30 · via 博客园 - longbigfish

参考:

http://users.sdsc.edu/~ssmallen/latex/longtable.html

一般的,在首行后面加上 

\endfirsthead
\hline
\endhead
\hline
\endfoot
\hline
\endlastfoot

即可

-----------------------------------

去掉页眉

参考 https://tex.stackexchange.com/questions/116079/pagestyleempty-on-a-specific-number-of-pages

\thispagestyle{empty}只能去掉一个页的页眉,要去掉多个页,使用下面的

\pagestyle{empty}
\tableofcontents
\clearpage
\pagestyle{headings}

这实际上是去掉页眉和页脚,也可以使用其他参数只去掉页眉包含页脚的。