@incollection entries in biblatex mla-newBiblatex, verbose-ibid, journal title for repeated...

Being asked to review a paper in conference one has submitted to

Why did the Cray-1 have 8 parity bits per word?

Effect of "wrong" driver with slightly long RS-485 stubs

Why aren't there more gauls like Obelix?

In the world of The Matrix, what is "popping"?

I've given my players a lot of magic items. Is it reasonable for me to give them harder encounters?

What can I do if someone tampers with my SSH public key?

How can I handle a player who pre-plans arguments about my rulings on RAW?

Label layer as symbol colors with QGIS 3

Are small insurances worth it

Was it really inappropriate to write a pull request for the company I interviewed with?

Caulking a corner instead of taping with joint compound?

Where is this quote about overcoming the impossible said in "Interstellar"?

What is a term for a function that when called repeatedly, has the same effect as calling once?

Rationale to prefer local variables over instance variables?

How can friction do no work in case of pure rolling?

Why would the IRS ask for birth certificates or even audit a small tax return?

Why do phishing e-mails use faked e-mail addresses instead of the real one?

Is divide-by-zero a security vulnerability?

Find maximum of the output from reduce

If nine coins are tossed, what is the probability that the number of heads is even?

Make me a metasequence

Deal the cards to the players

Misplaced tyre lever - alternatives?



@incollection entries in biblatex mla-new


Biblatex, verbose-ibid, journal title for repeated citationsReferencing part of a book that's by multiple authors, but not in an edited collectionlinking collection and incollectionAdjusting biblatex bibliography styleCustom bibliography and footcite stylesBiblatex Incollection entry with no authorForce biblatex to print initials of the author even in the following citationsCiting from an Encyclopedia with sub voceFormatting of Collection/Incollectioncustomizing bst: edition number













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 17 hours ago









      moewe

      92.9k10115351




      92.9k10115351










      asked 17 hours ago









      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
            17 hours ago











          • @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
            17 hours ago











          • 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
            16 hours ago











          • 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
            16 hours ago











          • @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
            8 hours ago











          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
            17 hours ago











          • @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
            17 hours ago











          • 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
            16 hours ago











          • 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
            16 hours ago











          • @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
            8 hours ago
















          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
            17 hours ago











          • @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
            17 hours ago











          • 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
            16 hours ago











          • 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
            16 hours ago











          • @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
            8 hours ago














          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 17 hours ago









          moewemoewe

          92.9k10115351




          92.9k10115351













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

            – Phil
            17 hours ago











          • @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
            17 hours ago











          • 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
            16 hours ago











          • 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
            16 hours ago











          • @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
            8 hours ago



















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

            – Phil
            17 hours ago











          • @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
            17 hours ago











          • 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
            16 hours ago











          • 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
            16 hours ago











          • @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
            8 hours ago

















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

          – Phil
          17 hours ago





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

          – Phil
          17 hours ago













          @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
          17 hours ago





          @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
          17 hours ago













          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
          16 hours ago





          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
          16 hours ago













          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
          16 hours ago





          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
          16 hours ago













          @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
          8 hours ago





          @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
          8 hours ago


















          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

          Installing LyX: “No textclass is found.”LyX installation error- text class not found- 'Reconfigure' or...

          (1602) Indiana Índice Designación y nombre Características orbitales Véase...

          Universidad Autónoma de Occidente Índice Historia Campus Facultades Programas Académicos Medios de...