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?
Is it insecure to send a password in a `curl` command?
Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?
Why do tuner card drivers fail to build after kernel update to 4.4.0-143-generic?
Is a party consisting of only a bard, a cleric, and a warlock functional long-term?
What are substitutions for coconut in curry?
PTIJ: Who should I vote for? (21st Knesset Edition)
What exactly is this small puffer fish doing and how did it manage to accomplish such a feat?
What is a ^ b and (a & b) << 1?
Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?
Fastest way to pop N items from a large dict
Book: Young man exiled to a penal colony, helps to lead revolution
How do you talk to someone whose loved one is dying?
Why does a Star of David appear at a rally with Francisco Franco?
What is the adequate fee for a reveal operation?
A diagram about partial derivatives of f(x,y)
Explaining pyrokinesis powers
Does .bashrc contain syntax errors?
How to prove the triangle inequality for this metric space
Why did it take so long to abandon sail after steamships were demonstrated?
Aluminum electrolytic or ceramic capacitors for linear regulator input and output?
The meaning of 振り in 無茶振り
How are passwords stolen from companies if they only store hashes?
Why Choose Less Effective Armour Types?
World War I as a war of liberals against authoritarians?
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?
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. betweenbibitem
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
add a comment |
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. betweenbibitem
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
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
add a comment |
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. betweenbibitem
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
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. betweenbibitem
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
bibliographies subdividing naming
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
Create several separate
thebibliography
environments;Redefine the
bibname
macro (for thebook
andreport
class) or therefname
macro (for thearticle
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 ofenumiv
at the end of everythebibliography
environment and resetenumiv
to the value offirstbib
at the start of the next environment.(Note, however, that if you're using
natbib
, then the counter isNAT@ctr
instead ofenumiv
.)
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
@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 usenatbib
, then the counter isNAT@ctr
notenumiv
.
– mforbes
Oct 24 '13 at 8:25
add a comment |
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.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%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
Create several separate
thebibliography
environments;Redefine the
bibname
macro (for thebook
andreport
class) or therefname
macro (for thearticle
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 ofenumiv
at the end of everythebibliography
environment and resetenumiv
to the value offirstbib
at the start of the next environment.(Note, however, that if you're using
natbib
, then the counter isNAT@ctr
instead ofenumiv
.)
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
@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 usenatbib
, then the counter isNAT@ctr
notenumiv
.
– mforbes
Oct 24 '13 at 8:25
add a comment |
Create several separate
thebibliography
environments;Redefine the
bibname
macro (for thebook
andreport
class) or therefname
macro (for thearticle
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 ofenumiv
at the end of everythebibliography
environment and resetenumiv
to the value offirstbib
at the start of the next environment.(Note, however, that if you're using
natbib
, then the counter isNAT@ctr
instead ofenumiv
.)
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
@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 usenatbib
, then the counter isNAT@ctr
notenumiv
.
– mforbes
Oct 24 '13 at 8:25
add a comment |
Create several separate
thebibliography
environments;Redefine the
bibname
macro (for thebook
andreport
class) or therefname
macro (for thearticle
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 ofenumiv
at the end of everythebibliography
environment and resetenumiv
to the value offirstbib
at the start of the next environment.(Note, however, that if you're using
natbib
, then the counter isNAT@ctr
instead ofenumiv
.)
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
Create several separate
thebibliography
environments;Redefine the
bibname
macro (for thebook
andreport
class) or therefname
macro (for thearticle
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 ofenumiv
at the end of everythebibliography
environment and resetenumiv
to the value offirstbib
at the start of the next environment.(Note, however, that if you're using
natbib
, then the counter isNAT@ctr
instead ofenumiv
.)
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
edited 10 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 usenatbib
, then the counter isNAT@ctr
notenumiv
.
– mforbes
Oct 24 '13 at 8:25
add a comment |
@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 usenatbib
, then the counter isNAT@ctr
notenumiv
.
– 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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 2 '12 at 10:46
user10274
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f37649%2fmanual-bibliography-separated-or-multiple-parts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
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