我是 LaTeX 的新手,如果这篇文章太幼稚,请见谅,我有一个学校项目,并决定利用这个机会学习 LaTeX。
按照 YouTube 视频中的说明操作后,我不知怎么地得到了一个默认的“参考文献”,我想改变它的颜色或删除它,并将引用放在已经是蓝色的参考书目下
我在这里没有找到任何相关问题,有什么解决办法吗?
这是 MWE
\documentclass[a4paper,16pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\hypersetup{colorlinks,linkcolor={blue},citecolor={blue},urlcolor={red}}
\begin{document}
\section*{\color{blue}Bibliography}
~\cite{enwiki:1028348687}
\bibliographystyle{plain}
\bibliography{wiki.bib}
\end{document}
答案1
在文章类中,参考书目的标题保存在 中\refname
。因此,您可以删除手册,并通过使用\section*{\color{blue}Bibliography}
重新定义来告诉 LaTeX 按照您的喜好排版标题。\refname
\renewcommand*{\refname}{\color{blue}Bibliography}
\documentclass[a4paper,16pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\hypersetup{colorlinks,linkcolor={blue},citecolor={blue},urlcolor={red}}
\renewcommand*{\refname}{\color{blue}Bibliography}
\begin{document}
\cite{enwiki:1028348687}
\bibliographystyle{plain}
\bibliography{wiki}
\end{document}
babel
请注意,当你使用像或 这样的本地化包时,可能需要额外的代码polyglossia
。请参阅如何更改“图形”、“目录”、“参考书目”、“附录”等文档元素的名称?。
请注意,基于report
- 和book
- 的类通常使用 ,\bibname
而article
基于 - 的类通常使用\refname
。