Cannot compile bibliography with URL in it The Next CEO of Stack OverflowUsing a 'corporate author' in the “author” field of a bibliographic entry (spelling out the name in full)URLs break compilationHow to add URL access date to MLA or APANatbib package error? Bibliography not compatible with author-year citationsHow to include urldate on bibliography withou using the “note” option?customize Bibtex citation and bibliographyRemove comma after year in bibliographyWhy does changing the bibliography style to “agsm” randomly bold the journal volume numbers?Is “year” required for “@online” natbib entry?URL issues in bibliographyTruncating the number of authors in a citation call-out, using natbib citation management package and agsm bibliography styleAdd urldate to url function in .bst file
Is there a way to save my career from absolute disaster?
Does increasing your ability score affect your main stat?
Easy to read palindrome checker
What flight has the highest ratio of timezone difference to flight time?
How do I align (1) and (2)?
Do I need to write [sic] when a number is less than 10 but isn't written out?
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
Legal workarounds for testamentary trust perceived as unfair
Chain wire methods together in Lightning Web Components
Can I use the load factor to estimate the lift?
Is it okay to majorly distort historical facts while writing a fiction story?
Is it ever safe to open a suspicious HTML file (e.g. email attachment)?
Grabbing quick drinks
Can we say or write : "No, it'sn't"?
Can MTA send mail via a relay without being told so?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Is the D&D universe the same as the Forgotten Realms universe?
When you upcast Blindness/Deafness, do all targets suffer the same effect?
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
What connection does MS Office have to Netscape Navigator?
How to edit “Name” property in GCI output?
Reference request: Grassmannian and Plucker coordinates in type B, C, D
Is it possible to replace duplicates of a character with one character using tr
Is wanting to ask what to write an indication that you need to change your story?
Cannot compile bibliography with URL in it
The Next CEO of Stack OverflowUsing a 'corporate author' in the “author” field of a bibliographic entry (spelling out the name in full)URLs break compilationHow to add URL access date to MLA or APANatbib package error? Bibliography not compatible with author-year citationsHow to include urldate on bibliography withou using the “note” option?customize Bibtex citation and bibliographyRemove comma after year in bibliographyWhy does changing the bibliography style to “agsm” randomly bold the journal volume numbers?Is “year” required for “@online” natbib entry?URL issues in bibliographyTruncating the number of authors in a citation call-out, using natbib citation management package and agsm bibliography styleAdd urldate to url function in .bst file
I'm writing my first document in LaTeX and I'm using natbib for the bibliography and dcu as the style.
This is what I've written:
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus - Tensile and Yield Strength for common Materials",
URL = "urlhttps://www.engineeringtoolbox.com/young-modulus-d_417.html",
note = "[online]"
This is what I get when I try to compile it.
I've used the url
package with usepackageurl
in the .tex file, and putting the URL in url
in the .bib file. It doesn't work with or without url
and I don't know what to do.
Also I've put [online]
in note
because the actual style I'm trying to replicate requires it but I don't know if it will appear correctly as I haven't seen the file compile yet. The [online]
is supposed to come after the title.
natbib harvard-style url
New contributor
|
show 7 more comments
I'm writing my first document in LaTeX and I'm using natbib for the bibliography and dcu as the style.
This is what I've written:
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus - Tensile and Yield Strength for common Materials",
URL = "urlhttps://www.engineeringtoolbox.com/young-modulus-d_417.html",
note = "[online]"
This is what I get when I try to compile it.
I've used the url
package with usepackageurl
in the .tex file, and putting the URL in url
in the .bib file. It doesn't work with or without url
and I don't know what to do.
Also I've put [online]
in note
because the actual style I'm trying to replicate requires it but I don't know if it will appear correctly as I haven't seen the file compile yet. The [online]
is supposed to come after the title.
natbib harvard-style url
New contributor
1
You don't need to add an additionalurl...
in theurl
fieldURL = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
is enough. But you will need to tellnatbib
about usingurl
in a slightly different way: tex.stackexchange.com/q/9445/35864
– moewe
7 hours ago
I see there that they needed to tellharvardurl
to actually useurl
but I don't know how to apply that to this problem because I'm not usingharvardurl
.
– oyylumo
7 hours ago
Thedcu
style I found on CTAN (ctan.org/tex-archive/macros/latex/contrib/harvard) uses the commandharvardurl
to typeset its URL, so if you are using that style you are usingharvardurl
. Did you try the suggested answer to the linked question? Did it not help?
– moewe
7 hours ago
1
Writeauthor = "Engineering Toolbox",
(see tex.stackexchange.com/q/10808/35864). Personally I think the monotype font is not a bad idea for URLs and don't think it is weird at all, but YMMV. You could tryurlstylesame
to get the normal surrounding font. The linked answer also suggests a way to change the font for the URLs back to italics, which is roughly what you would have gotten without the code.
– moewe
6 hours ago
1
Did you run BibTeX and LaTeX again after applying the changes in the.bib
file? How did adding the curly braces not help? The bold URL: is causes by thetextbfURL:
in the redefinition ofharvardul
. Try something likerenewcommandharvardurl[1]URL:~url#1
orrenewcommandharvardurl[1]url#1
– moewe
6 hours ago
|
show 7 more comments
I'm writing my first document in LaTeX and I'm using natbib for the bibliography and dcu as the style.
This is what I've written:
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus - Tensile and Yield Strength for common Materials",
URL = "urlhttps://www.engineeringtoolbox.com/young-modulus-d_417.html",
note = "[online]"
This is what I get when I try to compile it.
I've used the url
package with usepackageurl
in the .tex file, and putting the URL in url
in the .bib file. It doesn't work with or without url
and I don't know what to do.
Also I've put [online]
in note
because the actual style I'm trying to replicate requires it but I don't know if it will appear correctly as I haven't seen the file compile yet. The [online]
is supposed to come after the title.
natbib harvard-style url
New contributor
I'm writing my first document in LaTeX and I'm using natbib for the bibliography and dcu as the style.
This is what I've written:
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus - Tensile and Yield Strength for common Materials",
URL = "urlhttps://www.engineeringtoolbox.com/young-modulus-d_417.html",
note = "[online]"
This is what I get when I try to compile it.
I've used the url
package with usepackageurl
in the .tex file, and putting the URL in url
in the .bib file. It doesn't work with or without url
and I don't know what to do.
Also I've put [online]
in note
because the actual style I'm trying to replicate requires it but I don't know if it will appear correctly as I haven't seen the file compile yet. The [online]
is supposed to come after the title.
natbib harvard-style url
natbib harvard-style url
New contributor
New contributor
edited 5 hours ago
Mico
284k31388778
284k31388778
New contributor
asked 7 hours ago
oyylumooyylumo
61
61
New contributor
New contributor
1
You don't need to add an additionalurl...
in theurl
fieldURL = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
is enough. But you will need to tellnatbib
about usingurl
in a slightly different way: tex.stackexchange.com/q/9445/35864
– moewe
7 hours ago
I see there that they needed to tellharvardurl
to actually useurl
but I don't know how to apply that to this problem because I'm not usingharvardurl
.
– oyylumo
7 hours ago
Thedcu
style I found on CTAN (ctan.org/tex-archive/macros/latex/contrib/harvard) uses the commandharvardurl
to typeset its URL, so if you are using that style you are usingharvardurl
. Did you try the suggested answer to the linked question? Did it not help?
– moewe
7 hours ago
1
Writeauthor = "Engineering Toolbox",
(see tex.stackexchange.com/q/10808/35864). Personally I think the monotype font is not a bad idea for URLs and don't think it is weird at all, but YMMV. You could tryurlstylesame
to get the normal surrounding font. The linked answer also suggests a way to change the font for the URLs back to italics, which is roughly what you would have gotten without the code.
– moewe
6 hours ago
1
Did you run BibTeX and LaTeX again after applying the changes in the.bib
file? How did adding the curly braces not help? The bold URL: is causes by thetextbfURL:
in the redefinition ofharvardul
. Try something likerenewcommandharvardurl[1]URL:~url#1
orrenewcommandharvardurl[1]url#1
– moewe
6 hours ago
|
show 7 more comments
1
You don't need to add an additionalurl...
in theurl
fieldURL = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
is enough. But you will need to tellnatbib
about usingurl
in a slightly different way: tex.stackexchange.com/q/9445/35864
– moewe
7 hours ago
I see there that they needed to tellharvardurl
to actually useurl
but I don't know how to apply that to this problem because I'm not usingharvardurl
.
– oyylumo
7 hours ago
Thedcu
style I found on CTAN (ctan.org/tex-archive/macros/latex/contrib/harvard) uses the commandharvardurl
to typeset its URL, so if you are using that style you are usingharvardurl
. Did you try the suggested answer to the linked question? Did it not help?
– moewe
7 hours ago
1
Writeauthor = "Engineering Toolbox",
(see tex.stackexchange.com/q/10808/35864). Personally I think the monotype font is not a bad idea for URLs and don't think it is weird at all, but YMMV. You could tryurlstylesame
to get the normal surrounding font. The linked answer also suggests a way to change the font for the URLs back to italics, which is roughly what you would have gotten without the code.
– moewe
6 hours ago
1
Did you run BibTeX and LaTeX again after applying the changes in the.bib
file? How did adding the curly braces not help? The bold URL: is causes by thetextbfURL:
in the redefinition ofharvardul
. Try something likerenewcommandharvardurl[1]URL:~url#1
orrenewcommandharvardurl[1]url#1
– moewe
6 hours ago
1
1
You don't need to add an additional
url...
in the url
field URL = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
is enough. But you will need to tell natbib
about using url
in a slightly different way: tex.stackexchange.com/q/9445/35864– moewe
7 hours ago
You don't need to add an additional
url...
in the url
field URL = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
is enough. But you will need to tell natbib
about using url
in a slightly different way: tex.stackexchange.com/q/9445/35864– moewe
7 hours ago
I see there that they needed to tell
harvardurl
to actually use url
but I don't know how to apply that to this problem because I'm not using harvardurl
.– oyylumo
7 hours ago
I see there that they needed to tell
harvardurl
to actually use url
but I don't know how to apply that to this problem because I'm not using harvardurl
.– oyylumo
7 hours ago
The
dcu
style I found on CTAN (ctan.org/tex-archive/macros/latex/contrib/harvard) uses the command harvardurl
to typeset its URL, so if you are using that style you are using harvardurl
. Did you try the suggested answer to the linked question? Did it not help?– moewe
7 hours ago
The
dcu
style I found on CTAN (ctan.org/tex-archive/macros/latex/contrib/harvard) uses the command harvardurl
to typeset its URL, so if you are using that style you are using harvardurl
. Did you try the suggested answer to the linked question? Did it not help?– moewe
7 hours ago
1
1
Write
author = "Engineering Toolbox",
(see tex.stackexchange.com/q/10808/35864). Personally I think the monotype font is not a bad idea for URLs and don't think it is weird at all, but YMMV. You could try urlstylesame
to get the normal surrounding font. The linked answer also suggests a way to change the font for the URLs back to italics, which is roughly what you would have gotten without the code.– moewe
6 hours ago
Write
author = "Engineering Toolbox",
(see tex.stackexchange.com/q/10808/35864). Personally I think the monotype font is not a bad idea for URLs and don't think it is weird at all, but YMMV. You could try urlstylesame
to get the normal surrounding font. The linked answer also suggests a way to change the font for the URLs back to italics, which is roughly what you would have gotten without the code.– moewe
6 hours ago
1
1
Did you run BibTeX and LaTeX again after applying the changes in the
.bib
file? How did adding the curly braces not help? The bold URL: is causes by the textbfURL:
in the redefinition of harvardul
. Try something like renewcommandharvardurl[1]URL:~url#1
or renewcommandharvardurl[1]url#1
– moewe
6 hours ago
Did you run BibTeX and LaTeX again after applying the changes in the
.bib
file? How did adding the curly braces not help? The bold URL: is causes by the textbfURL:
in the redefinition of harvardul
. Try something like renewcommandharvardurl[1]URL:~url#1
or renewcommandharvardurl[1]url#1
– moewe
6 hours ago
|
show 7 more comments
1 Answer
1
active
oldest
votes
Some suggestions and comments:
Since you're using the
dcu
bibliography style, which is part of the harvard citation management package, you should load thehar2nat
package to optimize interoperability with thenatbib
package. Doing so is especially important if you plan on using thehyperref
package as well.The
dcu
bib style recognizes a field calledurl
. Hence, no need to encase the URL string in aurl..
"wrapper".If you don't like the default behavior of
harvardurl
, just follow @moewe's advice and issue the directiverenewcommandharvardurl[1]url#1 % per @moewe's suggestion
Since the author of the piece is a "corporate" entity, be sure to encase its contents in an extra pair of curly braces. This will prevent BibTeX from parsing the name as having first-name component "Electrical" and surname component "Toolbox".
RequirePackagefilecontents
beginfilecontentsmybib.bib
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus -- Tensile and Yield Strength for common Materials",
url = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
xnote = "[online]"
endfilecontents
documentclassarticle
usepackage[T1]fontenc
usepackagehar2nat % loads 'natbib' automatically
setcitestyleaysep=,
bibliographystyledcu
renewcommandharvardurl[1]url#1 % per @moewe's suggestion
usepackagexurl
usepackage[colorlinks,allcolors=blue]hyperref % optional
begindocument
citepet
bibliographymybib
enddocument
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
oyylumo is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482337%2fcannot-compile-bibliography-with-url-in-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Some suggestions and comments:
Since you're using the
dcu
bibliography style, which is part of the harvard citation management package, you should load thehar2nat
package to optimize interoperability with thenatbib
package. Doing so is especially important if you plan on using thehyperref
package as well.The
dcu
bib style recognizes a field calledurl
. Hence, no need to encase the URL string in aurl..
"wrapper".If you don't like the default behavior of
harvardurl
, just follow @moewe's advice and issue the directiverenewcommandharvardurl[1]url#1 % per @moewe's suggestion
Since the author of the piece is a "corporate" entity, be sure to encase its contents in an extra pair of curly braces. This will prevent BibTeX from parsing the name as having first-name component "Electrical" and surname component "Toolbox".
RequirePackagefilecontents
beginfilecontentsmybib.bib
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus -- Tensile and Yield Strength for common Materials",
url = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
xnote = "[online]"
endfilecontents
documentclassarticle
usepackage[T1]fontenc
usepackagehar2nat % loads 'natbib' automatically
setcitestyleaysep=,
bibliographystyledcu
renewcommandharvardurl[1]url#1 % per @moewe's suggestion
usepackagexurl
usepackage[colorlinks,allcolors=blue]hyperref % optional
begindocument
citepet
bibliographymybib
enddocument
add a comment |
Some suggestions and comments:
Since you're using the
dcu
bibliography style, which is part of the harvard citation management package, you should load thehar2nat
package to optimize interoperability with thenatbib
package. Doing so is especially important if you plan on using thehyperref
package as well.The
dcu
bib style recognizes a field calledurl
. Hence, no need to encase the URL string in aurl..
"wrapper".If you don't like the default behavior of
harvardurl
, just follow @moewe's advice and issue the directiverenewcommandharvardurl[1]url#1 % per @moewe's suggestion
Since the author of the piece is a "corporate" entity, be sure to encase its contents in an extra pair of curly braces. This will prevent BibTeX from parsing the name as having first-name component "Electrical" and surname component "Toolbox".
RequirePackagefilecontents
beginfilecontentsmybib.bib
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus -- Tensile and Yield Strength for common Materials",
url = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
xnote = "[online]"
endfilecontents
documentclassarticle
usepackage[T1]fontenc
usepackagehar2nat % loads 'natbib' automatically
setcitestyleaysep=,
bibliographystyledcu
renewcommandharvardurl[1]url#1 % per @moewe's suggestion
usepackagexurl
usepackage[colorlinks,allcolors=blue]hyperref % optional
begindocument
citepet
bibliographymybib
enddocument
add a comment |
Some suggestions and comments:
Since you're using the
dcu
bibliography style, which is part of the harvard citation management package, you should load thehar2nat
package to optimize interoperability with thenatbib
package. Doing so is especially important if you plan on using thehyperref
package as well.The
dcu
bib style recognizes a field calledurl
. Hence, no need to encase the URL string in aurl..
"wrapper".If you don't like the default behavior of
harvardurl
, just follow @moewe's advice and issue the directiverenewcommandharvardurl[1]url#1 % per @moewe's suggestion
Since the author of the piece is a "corporate" entity, be sure to encase its contents in an extra pair of curly braces. This will prevent BibTeX from parsing the name as having first-name component "Electrical" and surname component "Toolbox".
RequirePackagefilecontents
beginfilecontentsmybib.bib
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus -- Tensile and Yield Strength for common Materials",
url = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
xnote = "[online]"
endfilecontents
documentclassarticle
usepackage[T1]fontenc
usepackagehar2nat % loads 'natbib' automatically
setcitestyleaysep=,
bibliographystyledcu
renewcommandharvardurl[1]url#1 % per @moewe's suggestion
usepackagexurl
usepackage[colorlinks,allcolors=blue]hyperref % optional
begindocument
citepet
bibliographymybib
enddocument
Some suggestions and comments:
Since you're using the
dcu
bibliography style, which is part of the harvard citation management package, you should load thehar2nat
package to optimize interoperability with thenatbib
package. Doing so is especially important if you plan on using thehyperref
package as well.The
dcu
bib style recognizes a field calledurl
. Hence, no need to encase the URL string in aurl..
"wrapper".If you don't like the default behavior of
harvardurl
, just follow @moewe's advice and issue the directiverenewcommandharvardurl[1]url#1 % per @moewe's suggestion
Since the author of the piece is a "corporate" entity, be sure to encase its contents in an extra pair of curly braces. This will prevent BibTeX from parsing the name as having first-name component "Electrical" and surname component "Toolbox".
RequirePackagefilecontents
beginfilecontentsmybib.bib
@miscet,
author = "Engineering Toolbox",
year = "2003",
title = "Young's Modulus -- Tensile and Yield Strength for common Materials",
url = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
xnote = "[online]"
endfilecontents
documentclassarticle
usepackage[T1]fontenc
usepackagehar2nat % loads 'natbib' automatically
setcitestyleaysep=,
bibliographystyledcu
renewcommandharvardurl[1]url#1 % per @moewe's suggestion
usepackagexurl
usepackage[colorlinks,allcolors=blue]hyperref % optional
begindocument
citepet
bibliographymybib
enddocument
answered 5 hours ago
MicoMico
284k31388778
284k31388778
add a comment |
add a comment |
oyylumo is a new contributor. Be nice, and check out our Code of Conduct.
oyylumo is a new contributor. Be nice, and check out our Code of Conduct.
oyylumo is a new contributor. Be nice, and check out our Code of Conduct.
oyylumo is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482337%2fcannot-compile-bibliography-with-url-in-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
You don't need to add an additional
url...
in theurl
fieldURL = "https://www.engineeringtoolbox.com/young-modulus-d_417.html",
is enough. But you will need to tellnatbib
about usingurl
in a slightly different way: tex.stackexchange.com/q/9445/35864– moewe
7 hours ago
I see there that they needed to tell
harvardurl
to actually useurl
but I don't know how to apply that to this problem because I'm not usingharvardurl
.– oyylumo
7 hours ago
The
dcu
style I found on CTAN (ctan.org/tex-archive/macros/latex/contrib/harvard) uses the commandharvardurl
to typeset its URL, so if you are using that style you are usingharvardurl
. Did you try the suggested answer to the linked question? Did it not help?– moewe
7 hours ago
1
Write
author = "Engineering Toolbox",
(see tex.stackexchange.com/q/10808/35864). Personally I think the monotype font is not a bad idea for URLs and don't think it is weird at all, but YMMV. You could tryurlstylesame
to get the normal surrounding font. The linked answer also suggests a way to change the font for the URLs back to italics, which is roughly what you would have gotten without the code.– moewe
6 hours ago
1
Did you run BibTeX and LaTeX again after applying the changes in the
.bib
file? How did adding the curly braces not help? The bold URL: is causes by thetextbfURL:
in the redefinition ofharvardul
. Try something likerenewcommandharvardurl[1]URL:~url#1
orrenewcommandharvardurl[1]url#1
– moewe
6 hours ago