Closed wqb-123 closed 4 years ago
你以前问过类似问题,“想去掉目录和各章的首页页眉”,当时提供的手段是
\ctexset{
chapter/pagestyle = noheaderstyle
}
这个方法能适用于参考文献
@OsbertWang 谢谢您。添加这行代码后达到了效果。
你以前问过类似问题,“想去掉目录和各章的首页页眉”,当时提供的手段是
是在这条评论中提供的 https://github.com/CTeX-org/forum/issues/82#issuecomment-569593233
这问题为何不去 https://github.com/mohuangrui/ucasthesis/issues 问?通常模板作者是最清楚模板的
Q: 目录共2页,第1页的页眉如何去掉? A: 关于 LaTeX 的知识性问题,请前往 CTeX Forum 发问
@zepinglee 这个问题本质上并非关于 ucasthesis 的,所以让来这里问更加合适点 :)
检查
编译环境
操作系统
TeX 发行版
描述问题
我的参考文献有多页,想去掉第一页的页眉。不知道如何修改代码?
在模板 https://github.com/mohuangrui/ucasthesis 中的 /Biblio/ref.bib 中增加5篇新的参考文献,运行后可以看到参考文献由1页变成了2页。
附我新增的参考文献,共测试用。 @article{zhang2019image, title={Image de-raining using a conditional generative adversarial network}, author={Zhang, He and Sindagi, Vishwanath and Patel, Vishal M}, journal={arXiv preprint arXiv:1701.05957}, month={Jun.}, year={2019}, } @inproceedings{zhang2018density, title={Density-aware single image de-raining using a multi-stream dense network}, author={Zhang, He and Patel, Vishal M}, booktitle=CVPR, pages={695--704}, month={Jun.}, year={2018} } @article{zhang2019joint, title={Joint Transmission Map Estimation and Dehazing using Deep Networks}, author={Zhang, He and Sindagi, Vishwanath and Patel, Vishal M}, journal={arXiv preprint arXiv:1708.00581}, month={Apr.}, year={2019}, } @article{ren2019single, title={Single Image Dehazing via Multi-scale Convolutional Neural Networks with Holistic Edges}, author={Ren, Wenqi and Pan, Jinshan and Zhang, Hua and Cao, Xiaochun and Yang, Ming-Hsuan}, journal={Int. J Comput. Vis.}, pages={1--20}, year={2019}, } % @article{fattal2008single, title={Single image dehazing}, author={Fattal, Raanan}, journal=TOG, volume={27}, number={3}, pages={72}, month={Aug.}, year={2008}, }
在模板的 Thesis.tex 中,把一句新代码 \thispagestyle{noheaderstyle} 嵌入到原代码 \bibliography{Biblio/ref}的前面和后面,即
\thispagestyle{noheaderstyle} \bibliography{Biblio/ref}
和
\bibliography{Biblio/ref} \thispagestyle{noheaderstyle}
这两种尝试都不能消除参考文献第一页的页眉。我不清楚 \bibliography{} 的内部写法, 烦请高手指点迷津,非常感谢。
最小工作示例(MWE)
见复现步骤和解决问题的尝试。
链接