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










1















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.










share|improve this question









New contributor




oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.















  • 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











  • 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







  • 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






  • 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
















1















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.










share|improve this question









New contributor




oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.















  • 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











  • 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







  • 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






  • 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














1












1








1








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.










share|improve this question









New contributor




oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












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






share|improve this question









New contributor




oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 5 hours ago









Mico

284k31388778




284k31388778






New contributor




oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 7 hours ago









oyylumooyylumo

61




61




New contributor




oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






oyylumo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







  • 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











  • 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







  • 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






  • 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













  • 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











  • 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







  • 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






  • 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








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











1 Answer
1






active

oldest

votes


















1














Some suggestions and comments:



  • Since you're using the dcu bibliography style, which is part of the harvard citation management package, you should load the har2nat package to optimize interoperability with the natbib package. Doing so is especially important if you plan on using the hyperref package as well.


  • The dcu bib style recognizes a field called url. Hence, no need to encase the URL string in a url.. "wrapper".



  • If you don't like the default behavior of harvardurl, just follow @moewe's advice and issue the directive



    renewcommandharvardurl[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".


enter image description here



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





share|improve this answer























    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.









    draft saved

    draft discarded


















    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









    1














    Some suggestions and comments:



    • Since you're using the dcu bibliography style, which is part of the harvard citation management package, you should load the har2nat package to optimize interoperability with the natbib package. Doing so is especially important if you plan on using the hyperref package as well.


    • The dcu bib style recognizes a field called url. Hence, no need to encase the URL string in a url.. "wrapper".



    • If you don't like the default behavior of harvardurl, just follow @moewe's advice and issue the directive



      renewcommandharvardurl[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".


    enter image description here



    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





    share|improve this answer



























      1














      Some suggestions and comments:



      • Since you're using the dcu bibliography style, which is part of the harvard citation management package, you should load the har2nat package to optimize interoperability with the natbib package. Doing so is especially important if you plan on using the hyperref package as well.


      • The dcu bib style recognizes a field called url. Hence, no need to encase the URL string in a url.. "wrapper".



      • If you don't like the default behavior of harvardurl, just follow @moewe's advice and issue the directive



        renewcommandharvardurl[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".


      enter image description here



      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





      share|improve this answer

























        1












        1








        1







        Some suggestions and comments:



        • Since you're using the dcu bibliography style, which is part of the harvard citation management package, you should load the har2nat package to optimize interoperability with the natbib package. Doing so is especially important if you plan on using the hyperref package as well.


        • The dcu bib style recognizes a field called url. Hence, no need to encase the URL string in a url.. "wrapper".



        • If you don't like the default behavior of harvardurl, just follow @moewe's advice and issue the directive



          renewcommandharvardurl[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".


        enter image description here



        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





        share|improve this answer













        Some suggestions and comments:



        • Since you're using the dcu bibliography style, which is part of the harvard citation management package, you should load the har2nat package to optimize interoperability with the natbib package. Doing so is especially important if you plan on using the hyperref package as well.


        • The dcu bib style recognizes a field called url. Hence, no need to encase the URL string in a url.. "wrapper".



        • If you don't like the default behavior of harvardurl, just follow @moewe's advice and issue the directive



          renewcommandharvardurl[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".


        enter image description here



        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






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 5 hours ago









        MicoMico

        284k31388778




        284k31388778




















            oyylumo is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Wikipedia:Contact us Navigation menu Navigation menuLeave a Reply Cancel reply Post navigationRecent PostsRecent CommentsArchivesCategoriesMeta

            Farafra Inhaltsverzeichnis Geschichte | Badr-Museum Farafra | Nationalpark Weiße Wüste (as-Sahra al-baida) | Literatur | Weblinks | Navigationsmenü27° 3′ N, 27° 58′ OCommons: Farafra

            Tórshavn Kliima | Partnerstääden | Luke uk diar | Nawigatsjuun62° 1′ N, 6° 46′ W62° 1′ 0″ N, 6° 46′ 0″ WWMOTórshavn