In-text citations appearing at the top of page when using bibentry and natbib (for astron citation style)
I am currently trying to type up a literature review for a class where I have to use the citation style which is relevant to my field. I would like to be able to put the citation I am talking about and the analysis of the source under it with a final bibliography at the end of the paper. Everything seems to work okay and the citations are the way I want them formatted, but at the top of my first page a list of in-text citations for all of my sources appears.
I have seen some notes about nocite{*}, but it doesn't seem to make any changes in my document.
My preamble looks like this,
documentclass[12pt,letterpaper]{article}%
Set margins to 1.5in
usepackage[margin=0.75in]{geometry}
% for crimson text
usepackage{crimson}
usepackage[T1]{fontenc}
% setup parameter indentation
setlength{parindent}{15pt}
setlength{parskip}{6pt}
% for 1.15 spacing between text
renewcommand{baselinestretch}{1.15}
% For defining spacing between headers
usepackage{titlesec}
% Level 1
titleformat{section}
{normalfontfontsize{18}{0}bfseries}{thesection}{1em}{}
% Level 2
titleformat{subsection}
{normalfontfontsize{14}{0}bfseries}{thesection}{1em}{}
% Level 3
titleformat{subsubsection}
{normalfontfontsize{12}{0}bfseries}{thesection}{1em}{}
% Level 4
titleformat{paragraph}
{normalfontfontsize{12}{0}bfseriesitshape}{theparagraph}{1em}{}
% Level 5
titleformat{subparagraph}
{normalfontfontsize{12}{0}itshape}{theparagraph}{1em}{}
% Level 6
makeatletter
newcounter{subsubparagraph}[subparagraph]
renewcommandthesubsubparagraph{%
thesubparagraph.@arabicc@subsubparagraph}
newcommandsubsubparagraph{%
@startsection{subsubparagraph} % counter
{6} % level
{parindent} % indent
{12pt} % beforeskip
{6pt} % afterskip
{normalfontfontsize{12}{0}}}
newcommandl@subsubparagraph{@dottedtocline{6}{10em}{5em}}
newcommand{subsubparagraphmark}[1]{}
makeatother
titlespacing*{section}{0pt}{12pt}{6pt}
titlespacing*{subsection}{0pt}{12pt}{6pt}
titlespacing*{subsubsection}{0pt}{12pt}{6pt}
titlespacing*{paragraph}{0pt}{12pt}{6pt}
titlespacing*{subparagraph}{0pt}{12pt}{6pt}
titlespacing*{subsubparagraph}{0pt}{12pt}{6pt}
% Set caption to correct size and location
usepackage[tableposition=top, figureposition=bottom, font=footnotesize, labelfont=bf]{caption}
% set page number location
usepackage{fancyhdr}
fancyhf{} % clear all header and footers
renewcommand{headrulewidth}{0pt} % remove the header rule
rhead{thepage}
pagestyle{fancy}
% Overwrite Title
makeatletter
renewcommand{maketitle}{bgroup
begin{center}
textbf{{fontsize{18pt}{20}selectfont @title}}\
vspace{10pt}
{fontsize{12pt}{0}selectfont @author}
end{center}
}
makeatother
% For full citations inline
usepackage{bibentry}
nobibliography*
% For making hanging indents under citations
usepackage{hanging}
newcommandhangbibentry[1]{%
smallskipparhangpara{1em}{1}bibentry{#1}smallskippar %{indent}{afterline}
}
% For indenting the first paragraph of every line
usepackage{indentfirst}
% For use of astron citation package
usepackage{natbib}
And this is what I have right before I end the document.
bibliographystyle{astron}
bibliography{mnemonic.bib,bibtemp.bib}
This is an example of how I call the bibliography:
subsection*{hangbibentry{Mamajek2008ImprovedDiagnostics}}
Any ideas on how to fix this?
biblatex bibtex citing natbib bibentry
New contributor
add a comment |
I am currently trying to type up a literature review for a class where I have to use the citation style which is relevant to my field. I would like to be able to put the citation I am talking about and the analysis of the source under it with a final bibliography at the end of the paper. Everything seems to work okay and the citations are the way I want them formatted, but at the top of my first page a list of in-text citations for all of my sources appears.
I have seen some notes about nocite{*}, but it doesn't seem to make any changes in my document.
My preamble looks like this,
documentclass[12pt,letterpaper]{article}%
Set margins to 1.5in
usepackage[margin=0.75in]{geometry}
% for crimson text
usepackage{crimson}
usepackage[T1]{fontenc}
% setup parameter indentation
setlength{parindent}{15pt}
setlength{parskip}{6pt}
% for 1.15 spacing between text
renewcommand{baselinestretch}{1.15}
% For defining spacing between headers
usepackage{titlesec}
% Level 1
titleformat{section}
{normalfontfontsize{18}{0}bfseries}{thesection}{1em}{}
% Level 2
titleformat{subsection}
{normalfontfontsize{14}{0}bfseries}{thesection}{1em}{}
% Level 3
titleformat{subsubsection}
{normalfontfontsize{12}{0}bfseries}{thesection}{1em}{}
% Level 4
titleformat{paragraph}
{normalfontfontsize{12}{0}bfseriesitshape}{theparagraph}{1em}{}
% Level 5
titleformat{subparagraph}
{normalfontfontsize{12}{0}itshape}{theparagraph}{1em}{}
% Level 6
makeatletter
newcounter{subsubparagraph}[subparagraph]
renewcommandthesubsubparagraph{%
thesubparagraph.@arabicc@subsubparagraph}
newcommandsubsubparagraph{%
@startsection{subsubparagraph} % counter
{6} % level
{parindent} % indent
{12pt} % beforeskip
{6pt} % afterskip
{normalfontfontsize{12}{0}}}
newcommandl@subsubparagraph{@dottedtocline{6}{10em}{5em}}
newcommand{subsubparagraphmark}[1]{}
makeatother
titlespacing*{section}{0pt}{12pt}{6pt}
titlespacing*{subsection}{0pt}{12pt}{6pt}
titlespacing*{subsubsection}{0pt}{12pt}{6pt}
titlespacing*{paragraph}{0pt}{12pt}{6pt}
titlespacing*{subparagraph}{0pt}{12pt}{6pt}
titlespacing*{subsubparagraph}{0pt}{12pt}{6pt}
% Set caption to correct size and location
usepackage[tableposition=top, figureposition=bottom, font=footnotesize, labelfont=bf]{caption}
% set page number location
usepackage{fancyhdr}
fancyhf{} % clear all header and footers
renewcommand{headrulewidth}{0pt} % remove the header rule
rhead{thepage}
pagestyle{fancy}
% Overwrite Title
makeatletter
renewcommand{maketitle}{bgroup
begin{center}
textbf{{fontsize{18pt}{20}selectfont @title}}\
vspace{10pt}
{fontsize{12pt}{0}selectfont @author}
end{center}
}
makeatother
% For full citations inline
usepackage{bibentry}
nobibliography*
% For making hanging indents under citations
usepackage{hanging}
newcommandhangbibentry[1]{%
smallskipparhangpara{1em}{1}bibentry{#1}smallskippar %{indent}{afterline}
}
% For indenting the first paragraph of every line
usepackage{indentfirst}
% For use of astron citation package
usepackage{natbib}
And this is what I have right before I end the document.
bibliographystyle{astron}
bibliography{mnemonic.bib,bibtemp.bib}
This is an example of how I call the bibliography:
subsection*{hangbibentry{Mamajek2008ImprovedDiagnostics}}
Any ideas on how to fix this?
biblatex bibtex citing natbib bibentry
New contributor
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
45 secs ago
add a comment |
I am currently trying to type up a literature review for a class where I have to use the citation style which is relevant to my field. I would like to be able to put the citation I am talking about and the analysis of the source under it with a final bibliography at the end of the paper. Everything seems to work okay and the citations are the way I want them formatted, but at the top of my first page a list of in-text citations for all of my sources appears.
I have seen some notes about nocite{*}, but it doesn't seem to make any changes in my document.
My preamble looks like this,
documentclass[12pt,letterpaper]{article}%
Set margins to 1.5in
usepackage[margin=0.75in]{geometry}
% for crimson text
usepackage{crimson}
usepackage[T1]{fontenc}
% setup parameter indentation
setlength{parindent}{15pt}
setlength{parskip}{6pt}
% for 1.15 spacing between text
renewcommand{baselinestretch}{1.15}
% For defining spacing between headers
usepackage{titlesec}
% Level 1
titleformat{section}
{normalfontfontsize{18}{0}bfseries}{thesection}{1em}{}
% Level 2
titleformat{subsection}
{normalfontfontsize{14}{0}bfseries}{thesection}{1em}{}
% Level 3
titleformat{subsubsection}
{normalfontfontsize{12}{0}bfseries}{thesection}{1em}{}
% Level 4
titleformat{paragraph}
{normalfontfontsize{12}{0}bfseriesitshape}{theparagraph}{1em}{}
% Level 5
titleformat{subparagraph}
{normalfontfontsize{12}{0}itshape}{theparagraph}{1em}{}
% Level 6
makeatletter
newcounter{subsubparagraph}[subparagraph]
renewcommandthesubsubparagraph{%
thesubparagraph.@arabicc@subsubparagraph}
newcommandsubsubparagraph{%
@startsection{subsubparagraph} % counter
{6} % level
{parindent} % indent
{12pt} % beforeskip
{6pt} % afterskip
{normalfontfontsize{12}{0}}}
newcommandl@subsubparagraph{@dottedtocline{6}{10em}{5em}}
newcommand{subsubparagraphmark}[1]{}
makeatother
titlespacing*{section}{0pt}{12pt}{6pt}
titlespacing*{subsection}{0pt}{12pt}{6pt}
titlespacing*{subsubsection}{0pt}{12pt}{6pt}
titlespacing*{paragraph}{0pt}{12pt}{6pt}
titlespacing*{subparagraph}{0pt}{12pt}{6pt}
titlespacing*{subsubparagraph}{0pt}{12pt}{6pt}
% Set caption to correct size and location
usepackage[tableposition=top, figureposition=bottom, font=footnotesize, labelfont=bf]{caption}
% set page number location
usepackage{fancyhdr}
fancyhf{} % clear all header and footers
renewcommand{headrulewidth}{0pt} % remove the header rule
rhead{thepage}
pagestyle{fancy}
% Overwrite Title
makeatletter
renewcommand{maketitle}{bgroup
begin{center}
textbf{{fontsize{18pt}{20}selectfont @title}}\
vspace{10pt}
{fontsize{12pt}{0}selectfont @author}
end{center}
}
makeatother
% For full citations inline
usepackage{bibentry}
nobibliography*
% For making hanging indents under citations
usepackage{hanging}
newcommandhangbibentry[1]{%
smallskipparhangpara{1em}{1}bibentry{#1}smallskippar %{indent}{afterline}
}
% For indenting the first paragraph of every line
usepackage{indentfirst}
% For use of astron citation package
usepackage{natbib}
And this is what I have right before I end the document.
bibliographystyle{astron}
bibliography{mnemonic.bib,bibtemp.bib}
This is an example of how I call the bibliography:
subsection*{hangbibentry{Mamajek2008ImprovedDiagnostics}}
Any ideas on how to fix this?
biblatex bibtex citing natbib bibentry
New contributor
I am currently trying to type up a literature review for a class where I have to use the citation style which is relevant to my field. I would like to be able to put the citation I am talking about and the analysis of the source under it with a final bibliography at the end of the paper. Everything seems to work okay and the citations are the way I want them formatted, but at the top of my first page a list of in-text citations for all of my sources appears.
I have seen some notes about nocite{*}, but it doesn't seem to make any changes in my document.
My preamble looks like this,
documentclass[12pt,letterpaper]{article}%
Set margins to 1.5in
usepackage[margin=0.75in]{geometry}
% for crimson text
usepackage{crimson}
usepackage[T1]{fontenc}
% setup parameter indentation
setlength{parindent}{15pt}
setlength{parskip}{6pt}
% for 1.15 spacing between text
renewcommand{baselinestretch}{1.15}
% For defining spacing between headers
usepackage{titlesec}
% Level 1
titleformat{section}
{normalfontfontsize{18}{0}bfseries}{thesection}{1em}{}
% Level 2
titleformat{subsection}
{normalfontfontsize{14}{0}bfseries}{thesection}{1em}{}
% Level 3
titleformat{subsubsection}
{normalfontfontsize{12}{0}bfseries}{thesection}{1em}{}
% Level 4
titleformat{paragraph}
{normalfontfontsize{12}{0}bfseriesitshape}{theparagraph}{1em}{}
% Level 5
titleformat{subparagraph}
{normalfontfontsize{12}{0}itshape}{theparagraph}{1em}{}
% Level 6
makeatletter
newcounter{subsubparagraph}[subparagraph]
renewcommandthesubsubparagraph{%
thesubparagraph.@arabicc@subsubparagraph}
newcommandsubsubparagraph{%
@startsection{subsubparagraph} % counter
{6} % level
{parindent} % indent
{12pt} % beforeskip
{6pt} % afterskip
{normalfontfontsize{12}{0}}}
newcommandl@subsubparagraph{@dottedtocline{6}{10em}{5em}}
newcommand{subsubparagraphmark}[1]{}
makeatother
titlespacing*{section}{0pt}{12pt}{6pt}
titlespacing*{subsection}{0pt}{12pt}{6pt}
titlespacing*{subsubsection}{0pt}{12pt}{6pt}
titlespacing*{paragraph}{0pt}{12pt}{6pt}
titlespacing*{subparagraph}{0pt}{12pt}{6pt}
titlespacing*{subsubparagraph}{0pt}{12pt}{6pt}
% Set caption to correct size and location
usepackage[tableposition=top, figureposition=bottom, font=footnotesize, labelfont=bf]{caption}
% set page number location
usepackage{fancyhdr}
fancyhf{} % clear all header and footers
renewcommand{headrulewidth}{0pt} % remove the header rule
rhead{thepage}
pagestyle{fancy}
% Overwrite Title
makeatletter
renewcommand{maketitle}{bgroup
begin{center}
textbf{{fontsize{18pt}{20}selectfont @title}}\
vspace{10pt}
{fontsize{12pt}{0}selectfont @author}
end{center}
}
makeatother
% For full citations inline
usepackage{bibentry}
nobibliography*
% For making hanging indents under citations
usepackage{hanging}
newcommandhangbibentry[1]{%
smallskipparhangpara{1em}{1}bibentry{#1}smallskippar %{indent}{afterline}
}
% For indenting the first paragraph of every line
usepackage{indentfirst}
% For use of astron citation package
usepackage{natbib}
And this is what I have right before I end the document.
bibliographystyle{astron}
bibliography{mnemonic.bib,bibtemp.bib}
This is an example of how I call the bibliography:
subsection*{hangbibentry{Mamajek2008ImprovedDiagnostics}}
Any ideas on how to fix this?
biblatex bibtex citing natbib bibentry
biblatex bibtex citing natbib bibentry
New contributor
New contributor
New contributor
asked 5 mins ago
EricaErica
1
1
New contributor
New contributor
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
45 secs ago
add a comment |
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
45 secs ago
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
45 secs ago
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
45 secs ago
add a comment |
0
active
oldest
votes
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
});
}
});
Erica is a new contributor. Be nice, and check out our Code of Conduct.
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%2f477975%2fin-text-citations-appearing-at-the-top-of-page-when-using-bibentry-and-natbib%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Erica is a new contributor. Be nice, and check out our Code of Conduct.
Erica is a new contributor. Be nice, and check out our Code of Conduct.
Erica is a new contributor. Be nice, and check out our Code of Conduct.
Erica is a new contributor. Be nice, and check out our Code of Conduct.
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%2f477975%2fin-text-citations-appearing-at-the-top-of-page-when-using-bibentry-and-natbib%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
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
45 secs ago