latex 问题汇总

插入空白页 

/clearpage

当使用 “\tableofcontents” 插入目录时,最后的“参考文献”并不能显示在目录中,这时候,需要用到“\addcontentsline{toc}{chapter}”(如下)

为了:

(1)“目录”中显示的页码正确,需要添加 \clearpage

(2)“目录”中的链接能正确跳转,需要添加 \phantomsection

\bibliographystyle{IEEEtran}
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{参考文献} %向目录中添加条目,以章的名义
\bibliography{ref.bib}

插入 pdf

\includepdf[pages=-]{cover}

去除页码

\let\thepage\relax %% 去除页码

 

latex IDEs 汇总帖:https://tex.stackexchange.com/questions/339/latex-editors-ides

创建 latex 模板:https://tex.stackexchange.com/questions/63358/how-to-create-a-template-or-document-class-for-latex

设置奇偶页:https://www.cnblogs.com/visayafan/archive/2011/09/27/2193630.html

posted @ 2019-05-28 17:47  kendi  阅读(552)  评论(0编辑  收藏  举报