@incollection entries in biblatex mla-new












1















I am using



usepackage[style=mla-new]{biblatex}


with



@incollection{test,
author = "Author Name",
title = "Article Title",
editor = "Editor Name",
booktitle = "Book Title",
publisher = "Publisher",
address = "Address",
edition = "14th edition",
year = 2012,
pages = "119-127",
}


and receive




Name, Author. “Article Title.”Book Title. Edited by Editor Name. 14th edition.
Address:Publisher, 2012. 119–127. Print.




As opposed to pudue owls':




Last name, First name. "Title of Essay." Title of Collection, edited by Editor's Name(s), Publisher, Year, Page range of entry.




How can I change the order of the publisher and other entries on the end, and remove the "Print."?










share|improve this question





























    1















    I am using



    usepackage[style=mla-new]{biblatex}


    with



    @incollection{test,
    author = "Author Name",
    title = "Article Title",
    editor = "Editor Name",
    booktitle = "Book Title",
    publisher = "Publisher",
    address = "Address",
    edition = "14th edition",
    year = 2012,
    pages = "119-127",
    }


    and receive




    Name, Author. “Article Title.”Book Title. Edited by Editor Name. 14th edition.
    Address:Publisher, 2012. 119–127. Print.




    As opposed to pudue owls':




    Last name, First name. "Title of Essay." Title of Collection, edited by Editor's Name(s), Publisher, Year, Page range of entry.




    How can I change the order of the publisher and other entries on the end, and remove the "Print."?










    share|improve this question



























      1












      1








      1








      I am using



      usepackage[style=mla-new]{biblatex}


      with



      @incollection{test,
      author = "Author Name",
      title = "Article Title",
      editor = "Editor Name",
      booktitle = "Book Title",
      publisher = "Publisher",
      address = "Address",
      edition = "14th edition",
      year = 2012,
      pages = "119-127",
      }


      and receive




      Name, Author. “Article Title.”Book Title. Edited by Editor Name. 14th edition.
      Address:Publisher, 2012. 119–127. Print.




      As opposed to pudue owls':




      Last name, First name. "Title of Essay." Title of Collection, edited by Editor's Name(s), Publisher, Year, Page range of entry.




      How can I change the order of the publisher and other entries on the end, and remove the "Print."?










      share|improve this question
















      I am using



      usepackage[style=mla-new]{biblatex}


      with



      @incollection{test,
      author = "Author Name",
      title = "Article Title",
      editor = "Editor Name",
      booktitle = "Book Title",
      publisher = "Publisher",
      address = "Address",
      edition = "14th edition",
      year = 2012,
      pages = "119-127",
      }


      and receive




      Name, Author. “Article Title.”Book Title. Edited by Editor Name. 14th edition.
      Address:Publisher, 2012. 119–127. Print.




      As opposed to pudue owls':




      Last name, First name. "Title of Essay." Title of Collection, edited by Editor's Name(s), Publisher, Year, Page range of entry.




      How can I change the order of the publisher and other entries on the end, and remove the "Print."?







      biblatex mla-style






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 6 at 20:35









      moewe

      93.7k10115353




      93.7k10115353










      asked Mar 6 at 20:16









      PhilPhil

      82




      82






















          1 Answer
          1






          active

          oldest

          votes


















          1














          With biblatex-mla version 2016/11/01 v1.9 and a recent version of biblatex (I tested with 3.12, but anything fairly recent should be OK) the following MWE



          listfiles
          documentclass[american]{article}
          usepackage[T1]{fontenc}
          usepackage[utf8]{inputenc}
          usepackage{babel}
          usepackage{csquotes}

          usepackage[style=mla-new]{biblatex}
          usepackage{hyperref}

          usepackage{filecontents}
          begin{filecontents}{jobname.bib}
          @incollection{test,
          author = "Author Name",
          title = "Article Title",
          editor = "Editor Name",
          booktitle = "Book Title",
          publisher = "Publisher",
          address = "Address",
          edition = "14th edition",
          year = 2012,
          pages = "119-127",
          }
          end{filecontents}

          addbibresource{jobname.bib}

          begin{document}
          cite{test}
          printbibliography
          end{document}


          produces



          Name, Author. “Article Title.” Book Title, edited by Editor Name, 14th edition, Publisher, 2012, pp. 119–127.



          which looks right according to https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_works_cited_page_books.html.






          share|improve this answer
























          • Thank you, but I still get the "Print" at the end... I am using overleaf, as well as the MLA13.sty package

            – Phil
            Mar 6 at 20:45











          • @Phil Overleaf are probably running an outdated version of the package. You could try uploading the necessary newer files from ctan.org/tex-archive/macros/latex/contrib/biblatex-contrib/… but this may or may not work and actually cause more version incompatibilities.

            – moewe
            Mar 6 at 20:46











          • Well... I uploaded the folder to overleaf, and it completely broke biblatex. Now nothing that I do is cited at all, and it cannot find my .bib file I think. I tried deleting the folder I uploaded, but it is still broken...

            – Phil
            Mar 6 at 21:32











          • Ok, I started a new project, copy and pasted the .tex and .bib into the new project and I have no idea how, but it works the way it did, and it got rid of the "Print.". HOWEVER, now none of the URLs show up in my online sources...

            – Phil
            Mar 6 at 21:48











          • @Phil In a short test URLs were printed just fine for @online entries. I suggest you ask a new question with a suitable MWE about the issue. If possible include your package versions. You can find out the versions by adding listfiles to the top of the code (as in my MWE), then the .log file should contain a list of packages and their versions at the end. (There should be a way to make Overleaf show the entire .log to you or to download it and inspect it manually if you click on the button for the log infos.)

            – moewe
            Mar 7 at 5:17











          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
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f478091%2fincollection-entries-in-biblatex-mla-new%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














          With biblatex-mla version 2016/11/01 v1.9 and a recent version of biblatex (I tested with 3.12, but anything fairly recent should be OK) the following MWE



          listfiles
          documentclass[american]{article}
          usepackage[T1]{fontenc}
          usepackage[utf8]{inputenc}
          usepackage{babel}
          usepackage{csquotes}

          usepackage[style=mla-new]{biblatex}
          usepackage{hyperref}

          usepackage{filecontents}
          begin{filecontents}{jobname.bib}
          @incollection{test,
          author = "Author Name",
          title = "Article Title",
          editor = "Editor Name",
          booktitle = "Book Title",
          publisher = "Publisher",
          address = "Address",
          edition = "14th edition",
          year = 2012,
          pages = "119-127",
          }
          end{filecontents}

          addbibresource{jobname.bib}

          begin{document}
          cite{test}
          printbibliography
          end{document}


          produces



          Name, Author. “Article Title.” Book Title, edited by Editor Name, 14th edition, Publisher, 2012, pp. 119–127.



          which looks right according to https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_works_cited_page_books.html.






          share|improve this answer
























          • Thank you, but I still get the "Print" at the end... I am using overleaf, as well as the MLA13.sty package

            – Phil
            Mar 6 at 20:45











          • @Phil Overleaf are probably running an outdated version of the package. You could try uploading the necessary newer files from ctan.org/tex-archive/macros/latex/contrib/biblatex-contrib/… but this may or may not work and actually cause more version incompatibilities.

            – moewe
            Mar 6 at 20:46











          • Well... I uploaded the folder to overleaf, and it completely broke biblatex. Now nothing that I do is cited at all, and it cannot find my .bib file I think. I tried deleting the folder I uploaded, but it is still broken...

            – Phil
            Mar 6 at 21:32











          • Ok, I started a new project, copy and pasted the .tex and .bib into the new project and I have no idea how, but it works the way it did, and it got rid of the "Print.". HOWEVER, now none of the URLs show up in my online sources...

            – Phil
            Mar 6 at 21:48











          • @Phil In a short test URLs were printed just fine for @online entries. I suggest you ask a new question with a suitable MWE about the issue. If possible include your package versions. You can find out the versions by adding listfiles to the top of the code (as in my MWE), then the .log file should contain a list of packages and their versions at the end. (There should be a way to make Overleaf show the entire .log to you or to download it and inspect it manually if you click on the button for the log infos.)

            – moewe
            Mar 7 at 5:17
















          1














          With biblatex-mla version 2016/11/01 v1.9 and a recent version of biblatex (I tested with 3.12, but anything fairly recent should be OK) the following MWE



          listfiles
          documentclass[american]{article}
          usepackage[T1]{fontenc}
          usepackage[utf8]{inputenc}
          usepackage{babel}
          usepackage{csquotes}

          usepackage[style=mla-new]{biblatex}
          usepackage{hyperref}

          usepackage{filecontents}
          begin{filecontents}{jobname.bib}
          @incollection{test,
          author = "Author Name",
          title = "Article Title",
          editor = "Editor Name",
          booktitle = "Book Title",
          publisher = "Publisher",
          address = "Address",
          edition = "14th edition",
          year = 2012,
          pages = "119-127",
          }
          end{filecontents}

          addbibresource{jobname.bib}

          begin{document}
          cite{test}
          printbibliography
          end{document}


          produces



          Name, Author. “Article Title.” Book Title, edited by Editor Name, 14th edition, Publisher, 2012, pp. 119–127.



          which looks right according to https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_works_cited_page_books.html.






          share|improve this answer
























          • Thank you, but I still get the "Print" at the end... I am using overleaf, as well as the MLA13.sty package

            – Phil
            Mar 6 at 20:45











          • @Phil Overleaf are probably running an outdated version of the package. You could try uploading the necessary newer files from ctan.org/tex-archive/macros/latex/contrib/biblatex-contrib/… but this may or may not work and actually cause more version incompatibilities.

            – moewe
            Mar 6 at 20:46











          • Well... I uploaded the folder to overleaf, and it completely broke biblatex. Now nothing that I do is cited at all, and it cannot find my .bib file I think. I tried deleting the folder I uploaded, but it is still broken...

            – Phil
            Mar 6 at 21:32











          • Ok, I started a new project, copy and pasted the .tex and .bib into the new project and I have no idea how, but it works the way it did, and it got rid of the "Print.". HOWEVER, now none of the URLs show up in my online sources...

            – Phil
            Mar 6 at 21:48











          • @Phil In a short test URLs were printed just fine for @online entries. I suggest you ask a new question with a suitable MWE about the issue. If possible include your package versions. You can find out the versions by adding listfiles to the top of the code (as in my MWE), then the .log file should contain a list of packages and their versions at the end. (There should be a way to make Overleaf show the entire .log to you or to download it and inspect it manually if you click on the button for the log infos.)

            – moewe
            Mar 7 at 5:17














          1












          1








          1







          With biblatex-mla version 2016/11/01 v1.9 and a recent version of biblatex (I tested with 3.12, but anything fairly recent should be OK) the following MWE



          listfiles
          documentclass[american]{article}
          usepackage[T1]{fontenc}
          usepackage[utf8]{inputenc}
          usepackage{babel}
          usepackage{csquotes}

          usepackage[style=mla-new]{biblatex}
          usepackage{hyperref}

          usepackage{filecontents}
          begin{filecontents}{jobname.bib}
          @incollection{test,
          author = "Author Name",
          title = "Article Title",
          editor = "Editor Name",
          booktitle = "Book Title",
          publisher = "Publisher",
          address = "Address",
          edition = "14th edition",
          year = 2012,
          pages = "119-127",
          }
          end{filecontents}

          addbibresource{jobname.bib}

          begin{document}
          cite{test}
          printbibliography
          end{document}


          produces



          Name, Author. “Article Title.” Book Title, edited by Editor Name, 14th edition, Publisher, 2012, pp. 119–127.



          which looks right according to https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_works_cited_page_books.html.






          share|improve this answer













          With biblatex-mla version 2016/11/01 v1.9 and a recent version of biblatex (I tested with 3.12, but anything fairly recent should be OK) the following MWE



          listfiles
          documentclass[american]{article}
          usepackage[T1]{fontenc}
          usepackage[utf8]{inputenc}
          usepackage{babel}
          usepackage{csquotes}

          usepackage[style=mla-new]{biblatex}
          usepackage{hyperref}

          usepackage{filecontents}
          begin{filecontents}{jobname.bib}
          @incollection{test,
          author = "Author Name",
          title = "Article Title",
          editor = "Editor Name",
          booktitle = "Book Title",
          publisher = "Publisher",
          address = "Address",
          edition = "14th edition",
          year = 2012,
          pages = "119-127",
          }
          end{filecontents}

          addbibresource{jobname.bib}

          begin{document}
          cite{test}
          printbibliography
          end{document}


          produces



          Name, Author. “Article Title.” Book Title, edited by Editor Name, 14th edition, Publisher, 2012, pp. 119–127.



          which looks right according to https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_works_cited_page_books.html.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 6 at 20:34









          moewemoewe

          93.7k10115353




          93.7k10115353













          • Thank you, but I still get the "Print" at the end... I am using overleaf, as well as the MLA13.sty package

            – Phil
            Mar 6 at 20:45











          • @Phil Overleaf are probably running an outdated version of the package. You could try uploading the necessary newer files from ctan.org/tex-archive/macros/latex/contrib/biblatex-contrib/… but this may or may not work and actually cause more version incompatibilities.

            – moewe
            Mar 6 at 20:46











          • Well... I uploaded the folder to overleaf, and it completely broke biblatex. Now nothing that I do is cited at all, and it cannot find my .bib file I think. I tried deleting the folder I uploaded, but it is still broken...

            – Phil
            Mar 6 at 21:32











          • Ok, I started a new project, copy and pasted the .tex and .bib into the new project and I have no idea how, but it works the way it did, and it got rid of the "Print.". HOWEVER, now none of the URLs show up in my online sources...

            – Phil
            Mar 6 at 21:48











          • @Phil In a short test URLs were printed just fine for @online entries. I suggest you ask a new question with a suitable MWE about the issue. If possible include your package versions. You can find out the versions by adding listfiles to the top of the code (as in my MWE), then the .log file should contain a list of packages and their versions at the end. (There should be a way to make Overleaf show the entire .log to you or to download it and inspect it manually if you click on the button for the log infos.)

            – moewe
            Mar 7 at 5:17



















          • Thank you, but I still get the "Print" at the end... I am using overleaf, as well as the MLA13.sty package

            – Phil
            Mar 6 at 20:45











          • @Phil Overleaf are probably running an outdated version of the package. You could try uploading the necessary newer files from ctan.org/tex-archive/macros/latex/contrib/biblatex-contrib/… but this may or may not work and actually cause more version incompatibilities.

            – moewe
            Mar 6 at 20:46











          • Well... I uploaded the folder to overleaf, and it completely broke biblatex. Now nothing that I do is cited at all, and it cannot find my .bib file I think. I tried deleting the folder I uploaded, but it is still broken...

            – Phil
            Mar 6 at 21:32











          • Ok, I started a new project, copy and pasted the .tex and .bib into the new project and I have no idea how, but it works the way it did, and it got rid of the "Print.". HOWEVER, now none of the URLs show up in my online sources...

            – Phil
            Mar 6 at 21:48











          • @Phil In a short test URLs were printed just fine for @online entries. I suggest you ask a new question with a suitable MWE about the issue. If possible include your package versions. You can find out the versions by adding listfiles to the top of the code (as in my MWE), then the .log file should contain a list of packages and their versions at the end. (There should be a way to make Overleaf show the entire .log to you or to download it and inspect it manually if you click on the button for the log infos.)

            – moewe
            Mar 7 at 5:17

















          Thank you, but I still get the "Print" at the end... I am using overleaf, as well as the MLA13.sty package

          – Phil
          Mar 6 at 20:45





          Thank you, but I still get the "Print" at the end... I am using overleaf, as well as the MLA13.sty package

          – Phil
          Mar 6 at 20:45













          @Phil Overleaf are probably running an outdated version of the package. You could try uploading the necessary newer files from ctan.org/tex-archive/macros/latex/contrib/biblatex-contrib/… but this may or may not work and actually cause more version incompatibilities.

          – moewe
          Mar 6 at 20:46





          @Phil Overleaf are probably running an outdated version of the package. You could try uploading the necessary newer files from ctan.org/tex-archive/macros/latex/contrib/biblatex-contrib/… but this may or may not work and actually cause more version incompatibilities.

          – moewe
          Mar 6 at 20:46













          Well... I uploaded the folder to overleaf, and it completely broke biblatex. Now nothing that I do is cited at all, and it cannot find my .bib file I think. I tried deleting the folder I uploaded, but it is still broken...

          – Phil
          Mar 6 at 21:32





          Well... I uploaded the folder to overleaf, and it completely broke biblatex. Now nothing that I do is cited at all, and it cannot find my .bib file I think. I tried deleting the folder I uploaded, but it is still broken...

          – Phil
          Mar 6 at 21:32













          Ok, I started a new project, copy and pasted the .tex and .bib into the new project and I have no idea how, but it works the way it did, and it got rid of the "Print.". HOWEVER, now none of the URLs show up in my online sources...

          – Phil
          Mar 6 at 21:48





          Ok, I started a new project, copy and pasted the .tex and .bib into the new project and I have no idea how, but it works the way it did, and it got rid of the "Print.". HOWEVER, now none of the URLs show up in my online sources...

          – Phil
          Mar 6 at 21:48













          @Phil In a short test URLs were printed just fine for @online entries. I suggest you ask a new question with a suitable MWE about the issue. If possible include your package versions. You can find out the versions by adding listfiles to the top of the code (as in my MWE), then the .log file should contain a list of packages and their versions at the end. (There should be a way to make Overleaf show the entire .log to you or to download it and inspect it manually if you click on the button for the log infos.)

          – moewe
          Mar 7 at 5:17





          @Phil In a short test URLs were printed just fine for @online entries. I suggest you ask a new question with a suitable MWE about the issue. If possible include your package versions. You can find out the versions by adding listfiles to the top of the code (as in my MWE), then the .log file should contain a list of packages and their versions at the end. (There should be a way to make Overleaf show the entire .log to you or to download it and inspect it manually if you click on the button for the log infos.)

          – moewe
          Mar 7 at 5:17


















          draft saved

          draft discarded




















































          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%2f478091%2fincollection-entries-in-biblatex-mla-new%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

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?