printbibliography[heading=none] also removes entry numbers
I am trying to print my publications list on my CV. It currently looks like this in the LaTeX:
nocite{*}
printbibliography
I would like to get rid of the "References title". Adding [heading=none]
to printbibliography
gives me this:
This does get rid of the heading, but also the numbering for the entries. How can I get the entry numbers back?
Update:
I am using this template.
Update 2:
Here is an MWE:
blee.bib:
@article{leeSquiggleUserfriendlyTwodimensional2018,
title = {Squiggle: A User-Friendly Two-Dimensional {{DNA}} Sequence Visualization Tool},
issn = {1367-4803, 1460-2059},
shorttitle = {Squiggle},
doi = {10.1093/bioinformatics/bty807},
journal = {Bioinformatics},
author = {Lee, Benjamin D},
editor = {Hancock, John},
month = sep,
year = {2018},
file = {/Users/BenjaminLee/Zotero/storage/LRIZZCAE/Lee - Squiggle a user-friendly two-dimensional DNA sequ.pdf}
}
@article{leePythonImplementationCodon2018,
title = {Python {{Implementation}} of {{Codon Adaptation Index}}},
volume = {3},
issn = {2475-9066},
doi = {10.21105/joss.00905},
number = {30},
journal = {Journal of Open Source Software},
author = {Lee, Benjamin D.},
month = oct,
year = {2018},
pages = {905},
file = {/Users/BenjaminLee/Zotero/storage/V3MQVKZW/Lee - 2018 - Python Implementation of Codon Adaptation Index.pdf}
}
resume.cls:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Medium Length Professional CV - RESUME CLASS FILE
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% This class file defines the structure and design of the template.
%
% Original header:
% Copyright (C) 2010 by Trey Hunner
%
% Copying and distribution of this file, with or without modification,
% are permitted in any medium without royalty provided the copyright
% notice and this notice are preserved. This file is offered as-is,
% without any warranty.
%
% Created by Trey Hunner and modified by www.LaTeXTemplates.com
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProvidesClass{resume}[2010/07/10 v0.9 Resume class]
LoadClass[11pt,letterpaper]{article} % Font size and paper type
usepackage[parfill]{parskip} % Remove paragraph indentation
usepackage{array} % Required for boldface (bf and bfseries) tabular columns
usepackage{ifthen} % Required for ifthenelse statements
pagestyle{empty} % Suppress page numbers
letori@document=document
% Defines the rSection environment for the large sections within the CV
newenvironment{rSection}[1]{ % 1 input argument - section name
sectionskip
MakeUppercase{bf #1} % Section title
sectionlineskip
hrule % Horizontal line
begin{list}{}{ % List for each individual item in the section
setlength{leftmargin}{1.5em} % Margin within the section
}
item
}{
end{list}
}
% The below commands define the whitespace after certain things in the document - they can be smallskip, medskip or bigskip
defnamesize{huge} % Size of the name at the top of the document
defaddressskip{smallskip} % The space between the two address (or phone/email) lines
defsectionlineskip{medskip} % The space above the horizontal line for each section
defnameskip{bigskip} % The space after your name at the top
defsectionskip{medskip} % The space after the heading section
cv4.tex:
documentclass{resume} % Use the custom resume.cls style
usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins
usepackage{biblatex}
addbibresource{blee.bib}
begin{document}
begin{rSection}{Publications}
nocite{*}
printbibliography
end{rSection}
end{document}
biblatex
add a comment |
I am trying to print my publications list on my CV. It currently looks like this in the LaTeX:
nocite{*}
printbibliography
I would like to get rid of the "References title". Adding [heading=none]
to printbibliography
gives me this:
This does get rid of the heading, but also the numbering for the entries. How can I get the entry numbers back?
Update:
I am using this template.
Update 2:
Here is an MWE:
blee.bib:
@article{leeSquiggleUserfriendlyTwodimensional2018,
title = {Squiggle: A User-Friendly Two-Dimensional {{DNA}} Sequence Visualization Tool},
issn = {1367-4803, 1460-2059},
shorttitle = {Squiggle},
doi = {10.1093/bioinformatics/bty807},
journal = {Bioinformatics},
author = {Lee, Benjamin D},
editor = {Hancock, John},
month = sep,
year = {2018},
file = {/Users/BenjaminLee/Zotero/storage/LRIZZCAE/Lee - Squiggle a user-friendly two-dimensional DNA sequ.pdf}
}
@article{leePythonImplementationCodon2018,
title = {Python {{Implementation}} of {{Codon Adaptation Index}}},
volume = {3},
issn = {2475-9066},
doi = {10.21105/joss.00905},
number = {30},
journal = {Journal of Open Source Software},
author = {Lee, Benjamin D.},
month = oct,
year = {2018},
pages = {905},
file = {/Users/BenjaminLee/Zotero/storage/V3MQVKZW/Lee - 2018 - Python Implementation of Codon Adaptation Index.pdf}
}
resume.cls:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Medium Length Professional CV - RESUME CLASS FILE
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% This class file defines the structure and design of the template.
%
% Original header:
% Copyright (C) 2010 by Trey Hunner
%
% Copying and distribution of this file, with or without modification,
% are permitted in any medium without royalty provided the copyright
% notice and this notice are preserved. This file is offered as-is,
% without any warranty.
%
% Created by Trey Hunner and modified by www.LaTeXTemplates.com
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProvidesClass{resume}[2010/07/10 v0.9 Resume class]
LoadClass[11pt,letterpaper]{article} % Font size and paper type
usepackage[parfill]{parskip} % Remove paragraph indentation
usepackage{array} % Required for boldface (bf and bfseries) tabular columns
usepackage{ifthen} % Required for ifthenelse statements
pagestyle{empty} % Suppress page numbers
letori@document=document
% Defines the rSection environment for the large sections within the CV
newenvironment{rSection}[1]{ % 1 input argument - section name
sectionskip
MakeUppercase{bf #1} % Section title
sectionlineskip
hrule % Horizontal line
begin{list}{}{ % List for each individual item in the section
setlength{leftmargin}{1.5em} % Margin within the section
}
item
}{
end{list}
}
% The below commands define the whitespace after certain things in the document - they can be smallskip, medskip or bigskip
defnamesize{huge} % Size of the name at the top of the document
defaddressskip{smallskip} % The space between the two address (or phone/email) lines
defsectionlineskip{medskip} % The space above the horizontal line for each section
defnameskip{bigskip} % The space after your name at the top
defsectionskip{medskip} % The space after the heading section
cv4.tex:
documentclass{resume} % Use the custom resume.cls style
usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins
usepackage{biblatex}
addbibresource{blee.bib}
begin{document}
begin{rSection}{Publications}
nocite{*}
printbibliography
end{rSection}
end{document}
biblatex
add a comment |
I am trying to print my publications list on my CV. It currently looks like this in the LaTeX:
nocite{*}
printbibliography
I would like to get rid of the "References title". Adding [heading=none]
to printbibliography
gives me this:
This does get rid of the heading, but also the numbering for the entries. How can I get the entry numbers back?
Update:
I am using this template.
Update 2:
Here is an MWE:
blee.bib:
@article{leeSquiggleUserfriendlyTwodimensional2018,
title = {Squiggle: A User-Friendly Two-Dimensional {{DNA}} Sequence Visualization Tool},
issn = {1367-4803, 1460-2059},
shorttitle = {Squiggle},
doi = {10.1093/bioinformatics/bty807},
journal = {Bioinformatics},
author = {Lee, Benjamin D},
editor = {Hancock, John},
month = sep,
year = {2018},
file = {/Users/BenjaminLee/Zotero/storage/LRIZZCAE/Lee - Squiggle a user-friendly two-dimensional DNA sequ.pdf}
}
@article{leePythonImplementationCodon2018,
title = {Python {{Implementation}} of {{Codon Adaptation Index}}},
volume = {3},
issn = {2475-9066},
doi = {10.21105/joss.00905},
number = {30},
journal = {Journal of Open Source Software},
author = {Lee, Benjamin D.},
month = oct,
year = {2018},
pages = {905},
file = {/Users/BenjaminLee/Zotero/storage/V3MQVKZW/Lee - 2018 - Python Implementation of Codon Adaptation Index.pdf}
}
resume.cls:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Medium Length Professional CV - RESUME CLASS FILE
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% This class file defines the structure and design of the template.
%
% Original header:
% Copyright (C) 2010 by Trey Hunner
%
% Copying and distribution of this file, with or without modification,
% are permitted in any medium without royalty provided the copyright
% notice and this notice are preserved. This file is offered as-is,
% without any warranty.
%
% Created by Trey Hunner and modified by www.LaTeXTemplates.com
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProvidesClass{resume}[2010/07/10 v0.9 Resume class]
LoadClass[11pt,letterpaper]{article} % Font size and paper type
usepackage[parfill]{parskip} % Remove paragraph indentation
usepackage{array} % Required for boldface (bf and bfseries) tabular columns
usepackage{ifthen} % Required for ifthenelse statements
pagestyle{empty} % Suppress page numbers
letori@document=document
% Defines the rSection environment for the large sections within the CV
newenvironment{rSection}[1]{ % 1 input argument - section name
sectionskip
MakeUppercase{bf #1} % Section title
sectionlineskip
hrule % Horizontal line
begin{list}{}{ % List for each individual item in the section
setlength{leftmargin}{1.5em} % Margin within the section
}
item
}{
end{list}
}
% The below commands define the whitespace after certain things in the document - they can be smallskip, medskip or bigskip
defnamesize{huge} % Size of the name at the top of the document
defaddressskip{smallskip} % The space between the two address (or phone/email) lines
defsectionlineskip{medskip} % The space above the horizontal line for each section
defnameskip{bigskip} % The space after your name at the top
defsectionskip{medskip} % The space after the heading section
cv4.tex:
documentclass{resume} % Use the custom resume.cls style
usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins
usepackage{biblatex}
addbibresource{blee.bib}
begin{document}
begin{rSection}{Publications}
nocite{*}
printbibliography
end{rSection}
end{document}
biblatex
I am trying to print my publications list on my CV. It currently looks like this in the LaTeX:
nocite{*}
printbibliography
I would like to get rid of the "References title". Adding [heading=none]
to printbibliography
gives me this:
This does get rid of the heading, but also the numbering for the entries. How can I get the entry numbers back?
Update:
I am using this template.
Update 2:
Here is an MWE:
blee.bib:
@article{leeSquiggleUserfriendlyTwodimensional2018,
title = {Squiggle: A User-Friendly Two-Dimensional {{DNA}} Sequence Visualization Tool},
issn = {1367-4803, 1460-2059},
shorttitle = {Squiggle},
doi = {10.1093/bioinformatics/bty807},
journal = {Bioinformatics},
author = {Lee, Benjamin D},
editor = {Hancock, John},
month = sep,
year = {2018},
file = {/Users/BenjaminLee/Zotero/storage/LRIZZCAE/Lee - Squiggle a user-friendly two-dimensional DNA sequ.pdf}
}
@article{leePythonImplementationCodon2018,
title = {Python {{Implementation}} of {{Codon Adaptation Index}}},
volume = {3},
issn = {2475-9066},
doi = {10.21105/joss.00905},
number = {30},
journal = {Journal of Open Source Software},
author = {Lee, Benjamin D.},
month = oct,
year = {2018},
pages = {905},
file = {/Users/BenjaminLee/Zotero/storage/V3MQVKZW/Lee - 2018 - Python Implementation of Codon Adaptation Index.pdf}
}
resume.cls:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Medium Length Professional CV - RESUME CLASS FILE
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% This class file defines the structure and design of the template.
%
% Original header:
% Copyright (C) 2010 by Trey Hunner
%
% Copying and distribution of this file, with or without modification,
% are permitted in any medium without royalty provided the copyright
% notice and this notice are preserved. This file is offered as-is,
% without any warranty.
%
% Created by Trey Hunner and modified by www.LaTeXTemplates.com
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProvidesClass{resume}[2010/07/10 v0.9 Resume class]
LoadClass[11pt,letterpaper]{article} % Font size and paper type
usepackage[parfill]{parskip} % Remove paragraph indentation
usepackage{array} % Required for boldface (bf and bfseries) tabular columns
usepackage{ifthen} % Required for ifthenelse statements
pagestyle{empty} % Suppress page numbers
letori@document=document
% Defines the rSection environment for the large sections within the CV
newenvironment{rSection}[1]{ % 1 input argument - section name
sectionskip
MakeUppercase{bf #1} % Section title
sectionlineskip
hrule % Horizontal line
begin{list}{}{ % List for each individual item in the section
setlength{leftmargin}{1.5em} % Margin within the section
}
item
}{
end{list}
}
% The below commands define the whitespace after certain things in the document - they can be smallskip, medskip or bigskip
defnamesize{huge} % Size of the name at the top of the document
defaddressskip{smallskip} % The space between the two address (or phone/email) lines
defsectionlineskip{medskip} % The space above the horizontal line for each section
defnameskip{bigskip} % The space after your name at the top
defsectionskip{medskip} % The space after the heading section
cv4.tex:
documentclass{resume} % Use the custom resume.cls style
usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins
usepackage{biblatex}
addbibresource{blee.bib}
begin{document}
begin{rSection}{Publications}
nocite{*}
printbibliography
end{rSection}
end{document}
biblatex
biblatex
edited 9 hours ago
Benjamin Lee
asked 9 hours ago
Benjamin LeeBenjamin Lee
204
204
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
rSection
is defined via a list
environment. printbibliography
is also implemented as a list and when those lists are nested without breaking out of vertical mode that can lead to strange effects.
The easiest solution I could find was to issue leavevmode
before printbibliography
documentclass{resume} % Use the custom resume.cls style
usepackage{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
begin{rSection}{Publications}
nocite{sigfridsson,worman,geer,nussbaum}
leavevmodeprintbibliography[heading=none]
end{rSection}
end{document}
@BenjaminLee Try{setlength{parskip}{0pt}leavevmodeprintbibliography[heading=none]}
– moewe
9 hours ago
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%2f474235%2fprintbibliographyheading-none-also-removes-entry-numbers%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
rSection
is defined via a list
environment. printbibliography
is also implemented as a list and when those lists are nested without breaking out of vertical mode that can lead to strange effects.
The easiest solution I could find was to issue leavevmode
before printbibliography
documentclass{resume} % Use the custom resume.cls style
usepackage{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
begin{rSection}{Publications}
nocite{sigfridsson,worman,geer,nussbaum}
leavevmodeprintbibliography[heading=none]
end{rSection}
end{document}
@BenjaminLee Try{setlength{parskip}{0pt}leavevmodeprintbibliography[heading=none]}
– moewe
9 hours ago
add a comment |
rSection
is defined via a list
environment. printbibliography
is also implemented as a list and when those lists are nested without breaking out of vertical mode that can lead to strange effects.
The easiest solution I could find was to issue leavevmode
before printbibliography
documentclass{resume} % Use the custom resume.cls style
usepackage{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
begin{rSection}{Publications}
nocite{sigfridsson,worman,geer,nussbaum}
leavevmodeprintbibliography[heading=none]
end{rSection}
end{document}
@BenjaminLee Try{setlength{parskip}{0pt}leavevmodeprintbibliography[heading=none]}
– moewe
9 hours ago
add a comment |
rSection
is defined via a list
environment. printbibliography
is also implemented as a list and when those lists are nested without breaking out of vertical mode that can lead to strange effects.
The easiest solution I could find was to issue leavevmode
before printbibliography
documentclass{resume} % Use the custom resume.cls style
usepackage{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
begin{rSection}{Publications}
nocite{sigfridsson,worman,geer,nussbaum}
leavevmodeprintbibliography[heading=none]
end{rSection}
end{document}
rSection
is defined via a list
environment. printbibliography
is also implemented as a list and when those lists are nested without breaking out of vertical mode that can lead to strange effects.
The easiest solution I could find was to issue leavevmode
before printbibliography
documentclass{resume} % Use the custom resume.cls style
usepackage{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
begin{rSection}{Publications}
nocite{sigfridsson,worman,geer,nussbaum}
leavevmodeprintbibliography[heading=none]
end{rSection}
end{document}
answered 9 hours ago
moewemoewe
90.1k10111339
90.1k10111339
@BenjaminLee Try{setlength{parskip}{0pt}leavevmodeprintbibliography[heading=none]}
– moewe
9 hours ago
add a comment |
@BenjaminLee Try{setlength{parskip}{0pt}leavevmodeprintbibliography[heading=none]}
– moewe
9 hours ago
@BenjaminLee Try
{setlength{parskip}{0pt}leavevmodeprintbibliography[heading=none]}
– moewe
9 hours ago
@BenjaminLee Try
{setlength{parskip}{0pt}leavevmodeprintbibliography[heading=none]}
– moewe
9 hours ago
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%2f474235%2fprintbibliographyheading-none-also-removes-entry-numbers%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