Manual bibliography, separated or multiple partstwo documents sharing same reference numberingForce no breaks after manual bibliographies in book doc classBibliography with different sectionsManual bibliography format does not exists?Separation of citations on two lists without packagesManual bibliographyHow to change or remove the bibliography title when using multibib?Two bibliography using thebibliographyIs there a more recent bibliography style file (.bst) for PNAS?Manual Bibliography Entries in BibTeXManual bibliography with textual citationSeparate bibliography in arbitrary sectionsModular document with many bibliographies: unique identifier for each chapter?

What is the purpose or proof behind chain rule?

The meaning of 振り in 無茶振り

Python if-else code style for reduced code for rounding floats

Happy pi day, everyone!

et qui - how do you really understand that kind of phraseology?

Simplify an interface for flexibly applying rules to periods of time

ERC721: How to get the owned tokens of an address

How could an airship be repaired midflight?

Is it insecure to send a password in a `curl` command?

What is the relationship between relativity and the Doppler effect?

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

Why does overlay work only on the first tcolorbox?

Why is there is so much iron?

Most cost effective thermostat setting: consistent temperature vs. lowest temperature possible

Does multi-classing into Fighter give you heavy armor proficiency?

Explaining pyrokinesis powers

Custom alignment for GeoMarkers

Four married couples attend a party. Each person shakes hands with every other person, except their own spouse, exactly once. How many handshakes?

What options are left, if Britain cannot decide?

Is it ever recommended to use mean/multiple imputation when using tree-based predictive models?

When to use a slotted vs. solid turner?

Is there a symmetric-key algorithm which we can use for creating a signature?

Describing a chess game in a novel

Why is a white electrical wire connected to 2 black wires?



Manual bibliography, separated or multiple parts


two documents sharing same reference numberingForce no breaks after manual bibliographies in book doc classBibliography with different sectionsManual bibliography format does not exists?Separation of citations on two lists without packagesManual bibliographyHow to change or remove the bibliography title when using multibib?Two bibliography using thebibliographyIs there a more recent bibliography style file (.bst) for PNAS?Manual Bibliography Entries in BibTeXManual bibliography with textual citationSeparate bibliography in arbitrary sectionsModular document with many bibliographies: unique identifier for each chapter?













10















I'm creating a manual bibliography, but it needs to be divided into sections. The solutions I thought might be applicable:



  • Add textbx"Literary works", textbx"Web references", etc. between bibitem items. This does not work, since an error is reported.


  • Insert separate bibliographies and label them accordingly (which I don't know how to do).


Any help / other suggestions appreciated.










share|improve this question
























  • is this in an article or a multi-chapter work? (makes a difference.)

    – barbara beeton
    Dec 8 '11 at 22:28












  • Multi-chapter work. A book (literature dissertation). Lots of footnotes and several parts in bib.

    – marw
    Dec 8 '11 at 22:49















10















I'm creating a manual bibliography, but it needs to be divided into sections. The solutions I thought might be applicable:



  • Add textbx"Literary works", textbx"Web references", etc. between bibitem items. This does not work, since an error is reported.


  • Insert separate bibliographies and label them accordingly (which I don't know how to do).


Any help / other suggestions appreciated.










share|improve this question
























  • is this in an article or a multi-chapter work? (makes a difference.)

    – barbara beeton
    Dec 8 '11 at 22:28












  • Multi-chapter work. A book (literature dissertation). Lots of footnotes and several parts in bib.

    – marw
    Dec 8 '11 at 22:49













10












10








10


2






I'm creating a manual bibliography, but it needs to be divided into sections. The solutions I thought might be applicable:



  • Add textbx"Literary works", textbx"Web references", etc. between bibitem items. This does not work, since an error is reported.


  • Insert separate bibliographies and label them accordingly (which I don't know how to do).


Any help / other suggestions appreciated.










share|improve this question
















I'm creating a manual bibliography, but it needs to be divided into sections. The solutions I thought might be applicable:



  • Add textbx"Literary works", textbx"Web references", etc. between bibitem items. This does not work, since an error is reported.


  • Insert separate bibliographies and label them accordingly (which I don't know how to do).


Any help / other suggestions appreciated.







bibliographies subdividing naming






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 14 '13 at 10:26









lockstep

192k53592723




192k53592723










asked Dec 8 '11 at 22:10









marwmarw

17016




17016












  • is this in an article or a multi-chapter work? (makes a difference.)

    – barbara beeton
    Dec 8 '11 at 22:28












  • Multi-chapter work. A book (literature dissertation). Lots of footnotes and several parts in bib.

    – marw
    Dec 8 '11 at 22:49

















  • is this in an article or a multi-chapter work? (makes a difference.)

    – barbara beeton
    Dec 8 '11 at 22:28












  • Multi-chapter work. A book (literature dissertation). Lots of footnotes and several parts in bib.

    – marw
    Dec 8 '11 at 22:49
















is this in an article or a multi-chapter work? (makes a difference.)

– barbara beeton
Dec 8 '11 at 22:28






is this in an article or a multi-chapter work? (makes a difference.)

– barbara beeton
Dec 8 '11 at 22:28














Multi-chapter work. A book (literature dissertation). Lots of footnotes and several parts in bib.

– marw
Dec 8 '11 at 22:49





Multi-chapter work. A book (literature dissertation). Lots of footnotes and several parts in bib.

– marw
Dec 8 '11 at 22:49










2 Answers
2






active

oldest

votes


















16














  • Create several separate thebibliography environments;


  • Redefine the bibname macro (for the book and report class) or the refname macro (for the article class) before every environment as desired;


  • To achieve unambiguous numbering of your bibitems, define a new counter (say, firstbib), use this counter to save the value of enumiv at the end of every thebibliography environment and reset enumiv to the value of firstbib at the start of the next environment.


  • (Note, however, that if you're using natbib, then the counter is NAT@ctr instead of enumiv.)


Because the redefinitions of bibname/refname take place after begindocument, this solution also works if one uses the babel package.



documentclassarticle

newcounterfirstbib

begindocument

sectionfoo

Some text citeA01,B02,C03.

renewcommandrefnameLiterary works

beginthebibliography9

bibitemA01 A. Author. emphAlpha. 2001.

bibitemB02 B. Buthor. emphBravo. 2002.

setcounterfirstbibvalueenumiv

endthebibliography

renewcommandrefnameWeb references

beginthebibliography9

setcounterenumivvaluefirstbib

bibitemC03 C. Cuthor. emphCharlie. 2003.

endthebibliography

enddocument


enter image description here






share|improve this answer

























  • @GonzaloMedina: Excellent suggestion -- I changed my example accordingly. (And yes, I know this in principle, but totally forgot it at the moment.)

    – lockstep
    Dec 8 '11 at 22:41












  • ...and I updated it in my document! :) Thank you, both of you. Works like charm.

    – marw
    Dec 8 '11 at 22:47






  • 2





    Just a note that if you use natbib, then the counter is NAT@ctr not enumiv.

    – mforbes
    Oct 24 '13 at 8:25


















3














A much easier solution is using the biblatex package and defining a refsection environment in the body of the chapter.



chapterBlah
beginrefsection% 3rd `refsection`

endrefsection


To print the bibliography you use:



printbibliography[section=3,title=Blah Bibliography]


The only difference is that you have to run bibtex for each *-blx.aux file.



Creating bibliographies that depend on criteria is also possible.






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



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f37649%2fmanual-bibliography-separated-or-multiple-parts%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    16














    • Create several separate thebibliography environments;


    • Redefine the bibname macro (for the book and report class) or the refname macro (for the article class) before every environment as desired;


    • To achieve unambiguous numbering of your bibitems, define a new counter (say, firstbib), use this counter to save the value of enumiv at the end of every thebibliography environment and reset enumiv to the value of firstbib at the start of the next environment.


    • (Note, however, that if you're using natbib, then the counter is NAT@ctr instead of enumiv.)


    Because the redefinitions of bibname/refname take place after begindocument, this solution also works if one uses the babel package.



    documentclassarticle

    newcounterfirstbib

    begindocument

    sectionfoo

    Some text citeA01,B02,C03.

    renewcommandrefnameLiterary works

    beginthebibliography9

    bibitemA01 A. Author. emphAlpha. 2001.

    bibitemB02 B. Buthor. emphBravo. 2002.

    setcounterfirstbibvalueenumiv

    endthebibliography

    renewcommandrefnameWeb references

    beginthebibliography9

    setcounterenumivvaluefirstbib

    bibitemC03 C. Cuthor. emphCharlie. 2003.

    endthebibliography

    enddocument


    enter image description here






    share|improve this answer

























    • @GonzaloMedina: Excellent suggestion -- I changed my example accordingly. (And yes, I know this in principle, but totally forgot it at the moment.)

      – lockstep
      Dec 8 '11 at 22:41












    • ...and I updated it in my document! :) Thank you, both of you. Works like charm.

      – marw
      Dec 8 '11 at 22:47






    • 2





      Just a note that if you use natbib, then the counter is NAT@ctr not enumiv.

      – mforbes
      Oct 24 '13 at 8:25















    16














    • Create several separate thebibliography environments;


    • Redefine the bibname macro (for the book and report class) or the refname macro (for the article class) before every environment as desired;


    • To achieve unambiguous numbering of your bibitems, define a new counter (say, firstbib), use this counter to save the value of enumiv at the end of every thebibliography environment and reset enumiv to the value of firstbib at the start of the next environment.


    • (Note, however, that if you're using natbib, then the counter is NAT@ctr instead of enumiv.)


    Because the redefinitions of bibname/refname take place after begindocument, this solution also works if one uses the babel package.



    documentclassarticle

    newcounterfirstbib

    begindocument

    sectionfoo

    Some text citeA01,B02,C03.

    renewcommandrefnameLiterary works

    beginthebibliography9

    bibitemA01 A. Author. emphAlpha. 2001.

    bibitemB02 B. Buthor. emphBravo. 2002.

    setcounterfirstbibvalueenumiv

    endthebibliography

    renewcommandrefnameWeb references

    beginthebibliography9

    setcounterenumivvaluefirstbib

    bibitemC03 C. Cuthor. emphCharlie. 2003.

    endthebibliography

    enddocument


    enter image description here






    share|improve this answer

























    • @GonzaloMedina: Excellent suggestion -- I changed my example accordingly. (And yes, I know this in principle, but totally forgot it at the moment.)

      – lockstep
      Dec 8 '11 at 22:41












    • ...and I updated it in my document! :) Thank you, both of you. Works like charm.

      – marw
      Dec 8 '11 at 22:47






    • 2





      Just a note that if you use natbib, then the counter is NAT@ctr not enumiv.

      – mforbes
      Oct 24 '13 at 8:25













    16












    16








    16







    • Create several separate thebibliography environments;


    • Redefine the bibname macro (for the book and report class) or the refname macro (for the article class) before every environment as desired;


    • To achieve unambiguous numbering of your bibitems, define a new counter (say, firstbib), use this counter to save the value of enumiv at the end of every thebibliography environment and reset enumiv to the value of firstbib at the start of the next environment.


    • (Note, however, that if you're using natbib, then the counter is NAT@ctr instead of enumiv.)


    Because the redefinitions of bibname/refname take place after begindocument, this solution also works if one uses the babel package.



    documentclassarticle

    newcounterfirstbib

    begindocument

    sectionfoo

    Some text citeA01,B02,C03.

    renewcommandrefnameLiterary works

    beginthebibliography9

    bibitemA01 A. Author. emphAlpha. 2001.

    bibitemB02 B. Buthor. emphBravo. 2002.

    setcounterfirstbibvalueenumiv

    endthebibliography

    renewcommandrefnameWeb references

    beginthebibliography9

    setcounterenumivvaluefirstbib

    bibitemC03 C. Cuthor. emphCharlie. 2003.

    endthebibliography

    enddocument


    enter image description here






    share|improve this answer















    • Create several separate thebibliography environments;


    • Redefine the bibname macro (for the book and report class) or the refname macro (for the article class) before every environment as desired;


    • To achieve unambiguous numbering of your bibitems, define a new counter (say, firstbib), use this counter to save the value of enumiv at the end of every thebibliography environment and reset enumiv to the value of firstbib at the start of the next environment.


    • (Note, however, that if you're using natbib, then the counter is NAT@ctr instead of enumiv.)


    Because the redefinitions of bibname/refname take place after begindocument, this solution also works if one uses the babel package.



    documentclassarticle

    newcounterfirstbib

    begindocument

    sectionfoo

    Some text citeA01,B02,C03.

    renewcommandrefnameLiterary works

    beginthebibliography9

    bibitemA01 A. Author. emphAlpha. 2001.

    bibitemB02 B. Buthor. emphBravo. 2002.

    setcounterfirstbibvalueenumiv

    endthebibliography

    renewcommandrefnameWeb references

    beginthebibliography9

    setcounterenumivvaluefirstbib

    bibitemC03 C. Cuthor. emphCharlie. 2003.

    endthebibliography

    enddocument


    enter image description here







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 25 mins ago









    E.P.

    8182722




    8182722










    answered Dec 8 '11 at 22:25









    locksteplockstep

    192k53592723




    192k53592723












    • @GonzaloMedina: Excellent suggestion -- I changed my example accordingly. (And yes, I know this in principle, but totally forgot it at the moment.)

      – lockstep
      Dec 8 '11 at 22:41












    • ...and I updated it in my document! :) Thank you, both of you. Works like charm.

      – marw
      Dec 8 '11 at 22:47






    • 2





      Just a note that if you use natbib, then the counter is NAT@ctr not enumiv.

      – mforbes
      Oct 24 '13 at 8:25

















    • @GonzaloMedina: Excellent suggestion -- I changed my example accordingly. (And yes, I know this in principle, but totally forgot it at the moment.)

      – lockstep
      Dec 8 '11 at 22:41












    • ...and I updated it in my document! :) Thank you, both of you. Works like charm.

      – marw
      Dec 8 '11 at 22:47






    • 2





      Just a note that if you use natbib, then the counter is NAT@ctr not enumiv.

      – mforbes
      Oct 24 '13 at 8:25
















    @GonzaloMedina: Excellent suggestion -- I changed my example accordingly. (And yes, I know this in principle, but totally forgot it at the moment.)

    – lockstep
    Dec 8 '11 at 22:41






    @GonzaloMedina: Excellent suggestion -- I changed my example accordingly. (And yes, I know this in principle, but totally forgot it at the moment.)

    – lockstep
    Dec 8 '11 at 22:41














    ...and I updated it in my document! :) Thank you, both of you. Works like charm.

    – marw
    Dec 8 '11 at 22:47





    ...and I updated it in my document! :) Thank you, both of you. Works like charm.

    – marw
    Dec 8 '11 at 22:47




    2




    2





    Just a note that if you use natbib, then the counter is NAT@ctr not enumiv.

    – mforbes
    Oct 24 '13 at 8:25





    Just a note that if you use natbib, then the counter is NAT@ctr not enumiv.

    – mforbes
    Oct 24 '13 at 8:25











    3














    A much easier solution is using the biblatex package and defining a refsection environment in the body of the chapter.



    chapterBlah
    beginrefsection% 3rd `refsection`

    endrefsection


    To print the bibliography you use:



    printbibliography[section=3,title=Blah Bibliography]


    The only difference is that you have to run bibtex for each *-blx.aux file.



    Creating bibliographies that depend on criteria is also possible.






    share|improve this answer



























      3














      A much easier solution is using the biblatex package and defining a refsection environment in the body of the chapter.



      chapterBlah
      beginrefsection% 3rd `refsection`

      endrefsection


      To print the bibliography you use:



      printbibliography[section=3,title=Blah Bibliography]


      The only difference is that you have to run bibtex for each *-blx.aux file.



      Creating bibliographies that depend on criteria is also possible.






      share|improve this answer

























        3












        3








        3







        A much easier solution is using the biblatex package and defining a refsection environment in the body of the chapter.



        chapterBlah
        beginrefsection% 3rd `refsection`

        endrefsection


        To print the bibliography you use:



        printbibliography[section=3,title=Blah Bibliography]


        The only difference is that you have to run bibtex for each *-blx.aux file.



        Creating bibliographies that depend on criteria is also possible.






        share|improve this answer













        A much easier solution is using the biblatex package and defining a refsection environment in the body of the chapter.



        chapterBlah
        beginrefsection% 3rd `refsection`

        endrefsection


        To print the bibliography you use:



        printbibliography[section=3,title=Blah Bibliography]


        The only difference is that you have to run bibtex for each *-blx.aux file.



        Creating bibliographies that depend on criteria is also possible.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 2 '12 at 10:46







        user10274


































            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%2f37649%2fmanual-bibliography-separated-or-multiple-parts%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

            How should I use the fbox command correctly to avoid producing a Bad Box message?How to put a long piece of text in a box?How to specify height and width of fboxIs there an arrayrulecolor-like command to change the rule color of fbox?What is the command to highlight bad boxes in pdf?Why does fbox sometimes place the box *over* the graphic image?how to put the text in the boxHow to create command for a box where text inside the box can automatically adjust?how can I make an fbox like command with certain color, shape and width of border?how to use fbox in align modeFbox increase the spacing between the box and it content (inner margin)how to change the box height of an equationWhat is the use of the hbox in a newcommand command?

            152 Atala Notae | Nexus externi | Tabula navigationis"Discovery Circumstances: Numbered Minor Planets"2000152Small-Body Database

            Doxepinum Nexus interni Notae | Tabula navigationis3158DB01142WHOa682390"Structural Analysis of the Histamine H1 Receptor""Transdermal and Topical Drug Administration in the Treatment of Pain""Antidepressants as antipruritic agents: A review"