我的参考书目中有以下参考资料,网址偏离页面的一侧。我正在使用以下软件包并在页面上需要它来打印边缘指南:
\usepackage[style=authoryear]{biblatex}
这是一个令人讨厌的参考资料。我尝试了\\
,但最终在网址中以%5C
结尾。请帮忙。
@online{atlantichamburger,
author = "Libby Bawcombe",
year = "2014",
title = "The Hamburger Menu-Icon Debate",
location = "Washington",
publisher = "The Atlantic",
url = "https://www.theatlantic.com/product/archive/2014/08/the-hamburger-menu-debate/379145/"
}
答案 0 :(得分:1)
我设法使用以下链接修复此问题:
基本上,您需要添加:
\usepackage{url}
%%% --- The following two lines are what needs to be added --- %%%
\setcounter{biburllcpenalty}{7000}
\setcounter{biburlucpenalty}{8000}
答案 1 :(得分:0)
使用网址包并使用howpublished
howpublished = {\url{https://www.theatlantic.com/product/archive/2014/08/the-hamburger-menu-debate/379145/}}
未经测试 - 基于TeX SE中的this answer。
修改:修复了语法错误,并将url
项更改为howpublished
,如图here所示。