我最近在参考书目中发现了一个问题,但不知何故无法解决。当标题太长时它就会出现,但只要标题足够短,它就会正常使用 URL,正如您在第二个示例中看到的那样。
似乎像“[]”这样的符号是由某些东西生成的,并且日志在段落中给了我 2x Overfull \hbox (X pt 太宽)。

设置: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}
Run Code Online (Sandbox Code Playgroud)
文学参考书目
@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}
}
Run Code Online (Sandbox Code Playgroud)