Including references from supplementary material in the reference section of the main textFigure numbering...
Accidentally deleted the "/usr/share" folder
Is balancing necessary on a full-wheel change?
How did Captain America use this power?
Does hiding behind 5-ft-wide cover give full cover?
Binary Numbers Magic Trick
Why is the SNP putting so much emphasis on currency plans?
Entropy as a function of temperature: is temperature well defined?
How to avoid grep command finding commented out strings in the source file?
Feels like I am getting dragged into office politics
Is Cola "probably the best-known" Latin word in the world? If not, which might it be?
An 'if constexpr branch' does not get discarded inside lambda that is inside a template function
Why do freehub and cassette have only one position that matches?
What happened to Ghost?
Conflicting terms and the definition of a «child»
Why do computer-science majors learn calculus?
What word means "to make something obsolete"?
Was Unix ever a single-user OS?
Can commander tax be proliferated?
I’ve officially counted to infinity!
Write to EXCEL from SQL DB using VBA script
Problems with numbers (result of calculations) alignment using siunitx package inside tabular environment
How to implement float hashing with approximate equality
Selecting a secure PIN for building access
Is this homebrew race based on the Draco Volans lizard species balanced?
Including references from supplementary material in the reference section of the main text
Figure numbering without the figureOptions for supplementary materials in preprint version: revTeX + arXivstarting the references from main text, not from the listHow to obtain and use the .bbl file in my tex document for ArXiv submission?splitting citations between main text and supplementary materialsHow to get same citation numbering in two standalone documents with same bibliography file?Why was this reference out of order?LaTeX journal article not compilingHow to generate editable reference list?Problem inserting bibliography in my research paper
I am preparing a manuscript for submission to Science, the guidelines state that authors may submit supplementary materials for posting on the Science Web site, however I am unable to format the references correctly. The guidelines state:
References only cited in the supplementary materials should be include at the end of the reference section of the main text, and the reference numbering should continue as if the Supplementary Materials was a continuation of the main text.
I currently have a main.tex
file and a supplementary.tex
file, each containing several citations. If I understand the guidelines correctly, when compiled I need the references in supplementary.pdf
to continue where the numbering for the main file finished and be included in the main bibliography.
Any help on how to do this would be greatly appreciated!
bibliographies journal-publishing journal
add a comment |
I am preparing a manuscript for submission to Science, the guidelines state that authors may submit supplementary materials for posting on the Science Web site, however I am unable to format the references correctly. The guidelines state:
References only cited in the supplementary materials should be include at the end of the reference section of the main text, and the reference numbering should continue as if the Supplementary Materials was a continuation of the main text.
I currently have a main.tex
file and a supplementary.tex
file, each containing several citations. If I understand the guidelines correctly, when compiled I need the references in supplementary.pdf
to continue where the numbering for the main file finished and be included in the main bibliography.
Any help on how to do this would be greatly appreciated!
bibliographies journal-publishing journal
It is unclear to me what you want achieve. You are asking how to get the references cited in the main text, without actually citing them? Or how to start numbering in the Suppl. where it ended in the main text? Or both? It would be best to post a minimal working example, showing what you have and what you want to achieve.
– Manuel Weinkauf
Nov 17 '16 at 11:43
I think both. If I read the guidelines correctly, then anything referenced in 'supplementary.tex' should appear in the bibliography of 'main.pdf'. The numbering of references should continue as if these were in 'main.tex'. 'supplementary.pdf' should not contain a bibliography but the references should be numbered as in 'main.pdf'. I don't currently have much of a working example as I have no idea how to do this. I just have two tex files that each contain references.
– TKS
Nov 17 '16 at 12:35
This is exactly what a working minmal example is. Two .tex files, reduced to the bare minimum to reproduce what you want. For instance, we do not know with what system you are creating the reference list (BibTeX or BibLaTeX; with natbib or not, etc.). Answers will differ in dependence of this information. So again, please post a working minimal example! As for the first part, however:nocite{Ref}
adds a citation to the references without citing it. Adding this for all references in the suppl. immediately before your bibliography should get them into the main text.
– Manuel Weinkauf
Nov 17 '16 at 13:30
add a comment |
I am preparing a manuscript for submission to Science, the guidelines state that authors may submit supplementary materials for posting on the Science Web site, however I am unable to format the references correctly. The guidelines state:
References only cited in the supplementary materials should be include at the end of the reference section of the main text, and the reference numbering should continue as if the Supplementary Materials was a continuation of the main text.
I currently have a main.tex
file and a supplementary.tex
file, each containing several citations. If I understand the guidelines correctly, when compiled I need the references in supplementary.pdf
to continue where the numbering for the main file finished and be included in the main bibliography.
Any help on how to do this would be greatly appreciated!
bibliographies journal-publishing journal
I am preparing a manuscript for submission to Science, the guidelines state that authors may submit supplementary materials for posting on the Science Web site, however I am unable to format the references correctly. The guidelines state:
References only cited in the supplementary materials should be include at the end of the reference section of the main text, and the reference numbering should continue as if the Supplementary Materials was a continuation of the main text.
I currently have a main.tex
file and a supplementary.tex
file, each containing several citations. If I understand the guidelines correctly, when compiled I need the references in supplementary.pdf
to continue where the numbering for the main file finished and be included in the main bibliography.
Any help on how to do this would be greatly appreciated!
bibliographies journal-publishing journal
bibliographies journal-publishing journal
edited Oct 5 '17 at 0:46
Kurt
42.4k950167
42.4k950167
asked Nov 17 '16 at 11:00
TKSTKS
111
111
It is unclear to me what you want achieve. You are asking how to get the references cited in the main text, without actually citing them? Or how to start numbering in the Suppl. where it ended in the main text? Or both? It would be best to post a minimal working example, showing what you have and what you want to achieve.
– Manuel Weinkauf
Nov 17 '16 at 11:43
I think both. If I read the guidelines correctly, then anything referenced in 'supplementary.tex' should appear in the bibliography of 'main.pdf'. The numbering of references should continue as if these were in 'main.tex'. 'supplementary.pdf' should not contain a bibliography but the references should be numbered as in 'main.pdf'. I don't currently have much of a working example as I have no idea how to do this. I just have two tex files that each contain references.
– TKS
Nov 17 '16 at 12:35
This is exactly what a working minmal example is. Two .tex files, reduced to the bare minimum to reproduce what you want. For instance, we do not know with what system you are creating the reference list (BibTeX or BibLaTeX; with natbib or not, etc.). Answers will differ in dependence of this information. So again, please post a working minimal example! As for the first part, however:nocite{Ref}
adds a citation to the references without citing it. Adding this for all references in the suppl. immediately before your bibliography should get them into the main text.
– Manuel Weinkauf
Nov 17 '16 at 13:30
add a comment |
It is unclear to me what you want achieve. You are asking how to get the references cited in the main text, without actually citing them? Or how to start numbering in the Suppl. where it ended in the main text? Or both? It would be best to post a minimal working example, showing what you have and what you want to achieve.
– Manuel Weinkauf
Nov 17 '16 at 11:43
I think both. If I read the guidelines correctly, then anything referenced in 'supplementary.tex' should appear in the bibliography of 'main.pdf'. The numbering of references should continue as if these were in 'main.tex'. 'supplementary.pdf' should not contain a bibliography but the references should be numbered as in 'main.pdf'. I don't currently have much of a working example as I have no idea how to do this. I just have two tex files that each contain references.
– TKS
Nov 17 '16 at 12:35
This is exactly what a working minmal example is. Two .tex files, reduced to the bare minimum to reproduce what you want. For instance, we do not know with what system you are creating the reference list (BibTeX or BibLaTeX; with natbib or not, etc.). Answers will differ in dependence of this information. So again, please post a working minimal example! As for the first part, however:nocite{Ref}
adds a citation to the references without citing it. Adding this for all references in the suppl. immediately before your bibliography should get them into the main text.
– Manuel Weinkauf
Nov 17 '16 at 13:30
It is unclear to me what you want achieve. You are asking how to get the references cited in the main text, without actually citing them? Or how to start numbering in the Suppl. where it ended in the main text? Or both? It would be best to post a minimal working example, showing what you have and what you want to achieve.
– Manuel Weinkauf
Nov 17 '16 at 11:43
It is unclear to me what you want achieve. You are asking how to get the references cited in the main text, without actually citing them? Or how to start numbering in the Suppl. where it ended in the main text? Or both? It would be best to post a minimal working example, showing what you have and what you want to achieve.
– Manuel Weinkauf
Nov 17 '16 at 11:43
I think both. If I read the guidelines correctly, then anything referenced in 'supplementary.tex' should appear in the bibliography of 'main.pdf'. The numbering of references should continue as if these were in 'main.tex'. 'supplementary.pdf' should not contain a bibliography but the references should be numbered as in 'main.pdf'. I don't currently have much of a working example as I have no idea how to do this. I just have two tex files that each contain references.
– TKS
Nov 17 '16 at 12:35
I think both. If I read the guidelines correctly, then anything referenced in 'supplementary.tex' should appear in the bibliography of 'main.pdf'. The numbering of references should continue as if these were in 'main.tex'. 'supplementary.pdf' should not contain a bibliography but the references should be numbered as in 'main.pdf'. I don't currently have much of a working example as I have no idea how to do this. I just have two tex files that each contain references.
– TKS
Nov 17 '16 at 12:35
This is exactly what a working minmal example is. Two .tex files, reduced to the bare minimum to reproduce what you want. For instance, we do not know with what system you are creating the reference list (BibTeX or BibLaTeX; with natbib or not, etc.). Answers will differ in dependence of this information. So again, please post a working minimal example! As for the first part, however:
nocite{Ref}
adds a citation to the references without citing it. Adding this for all references in the suppl. immediately before your bibliography should get them into the main text.– Manuel Weinkauf
Nov 17 '16 at 13:30
This is exactly what a working minmal example is. Two .tex files, reduced to the bare minimum to reproduce what you want. For instance, we do not know with what system you are creating the reference list (BibTeX or BibLaTeX; with natbib or not, etc.). Answers will differ in dependence of this information. So again, please post a working minimal example! As for the first part, however:
nocite{Ref}
adds a citation to the references without citing it. Adding this for all references in the suppl. immediately before your bibliography should get them into the main text.– Manuel Weinkauf
Nov 17 '16 at 13:30
add a comment |
1 Answer
1
active
oldest
votes
Similar guidelines come from PRL journal
Please format any references copied to the Letter using the following
example:
[20] See Supplemental Material [url], which includes Refs. [21-24].
[21] [first reference in Supplemental Material not already in Letter]
...
[24] [last reference in Supplemental Material not already in Letter]
This is my solution to this problem:
- In the main TEX file include all the references using
nocite{key}
. - Generate the PDF and BBL file.
- Modify the BBL file to meet the order and style requirements.
- Comment out
bibliography{bib_library}
- Include the modified BBL file in the main TEX and supplementary TEX files using
input{modified_bibliography.bbl}
New contributor
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%2f339639%2fincluding-references-from-supplementary-material-in-the-reference-section-of-the%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
Similar guidelines come from PRL journal
Please format any references copied to the Letter using the following
example:
[20] See Supplemental Material [url], which includes Refs. [21-24].
[21] [first reference in Supplemental Material not already in Letter]
...
[24] [last reference in Supplemental Material not already in Letter]
This is my solution to this problem:
- In the main TEX file include all the references using
nocite{key}
. - Generate the PDF and BBL file.
- Modify the BBL file to meet the order and style requirements.
- Comment out
bibliography{bib_library}
- Include the modified BBL file in the main TEX and supplementary TEX files using
input{modified_bibliography.bbl}
New contributor
add a comment |
Similar guidelines come from PRL journal
Please format any references copied to the Letter using the following
example:
[20] See Supplemental Material [url], which includes Refs. [21-24].
[21] [first reference in Supplemental Material not already in Letter]
...
[24] [last reference in Supplemental Material not already in Letter]
This is my solution to this problem:
- In the main TEX file include all the references using
nocite{key}
. - Generate the PDF and BBL file.
- Modify the BBL file to meet the order and style requirements.
- Comment out
bibliography{bib_library}
- Include the modified BBL file in the main TEX and supplementary TEX files using
input{modified_bibliography.bbl}
New contributor
add a comment |
Similar guidelines come from PRL journal
Please format any references copied to the Letter using the following
example:
[20] See Supplemental Material [url], which includes Refs. [21-24].
[21] [first reference in Supplemental Material not already in Letter]
...
[24] [last reference in Supplemental Material not already in Letter]
This is my solution to this problem:
- In the main TEX file include all the references using
nocite{key}
. - Generate the PDF and BBL file.
- Modify the BBL file to meet the order and style requirements.
- Comment out
bibliography{bib_library}
- Include the modified BBL file in the main TEX and supplementary TEX files using
input{modified_bibliography.bbl}
New contributor
Similar guidelines come from PRL journal
Please format any references copied to the Letter using the following
example:
[20] See Supplemental Material [url], which includes Refs. [21-24].
[21] [first reference in Supplemental Material not already in Letter]
...
[24] [last reference in Supplemental Material not already in Letter]
This is my solution to this problem:
- In the main TEX file include all the references using
nocite{key}
. - Generate the PDF and BBL file.
- Modify the BBL file to meet the order and style requirements.
- Comment out
bibliography{bib_library}
- Include the modified BBL file in the main TEX and supplementary TEX files using
input{modified_bibliography.bbl}
New contributor
New contributor
answered 2 hours ago
KarolisKarolis
1012
1012
New contributor
New contributor
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%2f339639%2fincluding-references-from-supplementary-material-in-the-reference-section-of-the%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
It is unclear to me what you want achieve. You are asking how to get the references cited in the main text, without actually citing them? Or how to start numbering in the Suppl. where it ended in the main text? Or both? It would be best to post a minimal working example, showing what you have and what you want to achieve.
– Manuel Weinkauf
Nov 17 '16 at 11:43
I think both. If I read the guidelines correctly, then anything referenced in 'supplementary.tex' should appear in the bibliography of 'main.pdf'. The numbering of references should continue as if these were in 'main.tex'. 'supplementary.pdf' should not contain a bibliography but the references should be numbered as in 'main.pdf'. I don't currently have much of a working example as I have no idea how to do this. I just have two tex files that each contain references.
– TKS
Nov 17 '16 at 12:35
This is exactly what a working minmal example is. Two .tex files, reduced to the bare minimum to reproduce what you want. For instance, we do not know with what system you are creating the reference list (BibTeX or BibLaTeX; with natbib or not, etc.). Answers will differ in dependence of this information. So again, please post a working minimal example! As for the first part, however:
nocite{Ref}
adds a citation to the references without citing it. Adding this for all references in the suppl. immediately before your bibliography should get them into the main text.– Manuel Weinkauf
Nov 17 '16 at 13:30