书目格式

书目格式

全部,我有:

\documentclass[11pt]{article}
\usepackage{geometry}
\usepackage{hyperref}

\begin{document}

Now is the time.

\begin{thebibliography}{99}
\bibitem{kn:gnus} David Arnold. {\em Writing Scientific Papers in \LaTeX.} December 31, 2008.
\url{http://msemac.redwoods.edu/~darnold/math55/WritingScientificPapers/project_latex.pdf}
\end{thebibliography}

\end{document}

有几个问题。我怎样才能关闭 URL 周围的蓝色突出显示?

并且,对于更好地格式化这个参考项有什么建议吗?

谢谢。

答案1

我认为,如果你不想让 URL 在引用中被着色,那么你可能也不希望它们被着色任何地方在文档中。如果是这种情况,请确保hyperref按如下方式加载包:

\usepackage[colorlinks=true,urlcolor=black]{hyperref}

修改后的 MWE 的排版版本如下所示:

在此处输入图片描述

\documentclass[11pt]{article}
\usepackage{geometry}
\usepackage[colorlinks,urlcolor=black]{hyperref}
\begin{document}
Now is the time.
\begin{thebibliography}{99}
\bibitem{kn:gnus} David Arnold. {\em Writing Scientific Papers in \LaTeX.} December 31, 2008.
\url{http://msemac.redwoods.edu/~darnold/math55/WritingScientificPapers/project_latex.pdf}
\end{thebibliography}
\end{document}

答案2

我建议你考虑biblatex满足您的书目需求 - 它可以轻松定制您的书目条目并提供许多功能和选项。

我已将您的 MWE 转换为两个文件:mybib.bib一个包含参考书目条目,myfile.tex另一个包含您的文档。要获得完整的 MWE,pdf您需要运行

pdflatex myfile
bibtex myfile
pdflatex myfile

就我个人而言,我更愿意让arara帮我举重,然后你就可以跑了

arara myfile

在下面的代码中,您将获得一个pdf。您可以通过查阅自定义超链接的颜色hyperref文档。

myfile.tex

% arara: pdflatex
% arara: bibtex
% arara: pdflatex
\documentclass{article}

\usepackage[backend=bibtex]{biblatex}
\usepackage[colorlinks=true,linkcolor=blue]{hyperref}
\addbibresource{mybib}

\begin{document}

Now is the time. 
\nocite{*}

\printbibliography

\end{document}

mybib.bib

@online{kn:gnus,
author= {David Arnold},
title= {Writing Scientific Papers in \LaTeX},
date= {December 31, 2008},
url = {http://msemac.redwoods.edu/~darnold/math55/WritingScientificPapers/project_latex.pdf}
}

相关内容