我最近在我的参考书目中发现了一个问题,但我无法解决它。它在标题太长时出现,但正如您在第二个示例中看到的那样,只要标题足够短,它就可以正常使用 URL。
似乎“[]”之类的符号是从某物生成的,并且日志在段落中给了我 2x Overfull \hbox (X pt too wide)。
设置:document.tex
和bib/literature.bib
设置:pdfLatex(使用 biber 和 texindy)
最小的例子:
\documentclass[
11pt,
a4paper
]{scrreprt}
% add bibliography
\usepackage[style=alphabetic, sorting=anyt]{biblatex}
\addbibresource{bib/literature.bib}
\usepackage[colorlinks, urlcolor=blue]{hyperref}
\begin{document}
\cite{Gaedke}
\cite{IOT}
\printbibliography
\end{document}
文献.bib
@online{Gaedke,
author = {Gaedke, Martin and Heil, Andreas},
title = {{GET /dgs HTTP/1.1 Host: www.WebComposition.net.}},
url = {http://www.mendeley.com/research/dgs-http11-host-wwwwebcompositionnet/},
urldate={2018-08-19}
}
@online{IOT,
author = {Litzel, Nico },
title = {Was ist das Internet of Things?},
url = {https://www.bigdata-insider.de/was-ist-das-internet-of-things-a-590806/},
urldate={2018-08-19}
}