In-text citations appearing at the top of page when using bibentry and natbib (for astron citation...
Can we carry rice to Japan?
Is there a way to find out the age of climbing ropes?
Is there a full canon version of Tyrion's jackass/honeycomb joke?
If nine coins are tossed, what is the probability that the number of heads is even?
Script that counts quarters, dimes, nickels, and pennies
Caulking a corner instead of taping with joint compound?
Can the Shape Water Cantrip be used to manipulate blood?
Lock enemy's y-axis when using Vector3.MoveTowards to follow the player
Should we avoid writing fiction about historical events without extensive research?
School performs periodic password audits. Is my password compromised?
Find maximum of the output from reduce
Has Wakanda ever accepted refugees?
How to mitigate "bandwagon attacking" from players?
Can a space-faring robot still function over a billion years?
“I had a flat in the centre of town, but I didn’t like living there, so …”
Plagiarism of code by other PhD student
Why is it "take a leak?"
Are there other characters in the Star Wars universe who had damaged bodies and needed to wear an outfit like Darth Vader?
What kind of inflection is occuring in passive vb + かかった?
PTIJ: Why can't I sing about soda on certain days?
Canadian citizen, on US no-fly list. What can I do in order to be allowed on flights which go through US airspace?
Giving a talk in my old university, how prominently should I tell students my salary?
A bug in Excel? Conditional formatting for marking duplicates also highlights unique value
How to kill a localhost:8080
In-text citations appearing at the top of page when using bibentry and natbib (for astron citation style)
Author-year citation with natbib and Springer's spbasic bibliography styleProblem of duplicate identifier when using bibentry and hyperrefWorkaround for bibentry when using natbib and pagebackrefmix a citation and text using natbibamsthm and citations using natbibIn text citations not appearing for APA citationNatbib: how to replace the last comma in a citation list with “and” when using citepchange citation font style using natbibUse “and” instead of ampersand, when using the natbib package and agsm-styleFind and replace text in bibentry using macros
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?
bibtex 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?
bibtex natbib bibentry
New contributor
4
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
yesterday
Unfortunately, it is quite challenging to figure out exactly what you are doing and what goes wrong from only the code snippets shown so far. The gold standard for code examples is the so-called MWE (tex.meta.stackexchange.com/q/228/35864). An MWE is a full document that starts withdocumentclass
, contains the relevant bits and pieces of the preamble (ideally only what is relevant for the issue, if the title formats are not relevant they can be dropped for the MWE) and has abegin{document}...end{document}
so that it can be compiled to a PDF that reproduces what you see.
– moewe
23 hours 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?
bibtex 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?
bibtex natbib bibentry
bibtex natbib bibentry
New contributor
New contributor
edited 23 hours ago
moewe
92.9k10115351
92.9k10115351
New contributor
asked yesterday
EricaErica
1
1
New contributor
New contributor
4
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
yesterday
Unfortunately, it is quite challenging to figure out exactly what you are doing and what goes wrong from only the code snippets shown so far. The gold standard for code examples is the so-called MWE (tex.meta.stackexchange.com/q/228/35864). An MWE is a full document that starts withdocumentclass
, contains the relevant bits and pieces of the preamble (ideally only what is relevant for the issue, if the title formats are not relevant they can be dropped for the MWE) and has abegin{document}...end{document}
so that it can be compiled to a PDF that reproduces what you see.
– moewe
23 hours ago
add a comment |
4
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
yesterday
Unfortunately, it is quite challenging to figure out exactly what you are doing and what goes wrong from only the code snippets shown so far. The gold standard for code examples is the so-called MWE (tex.meta.stackexchange.com/q/228/35864). An MWE is a full document that starts withdocumentclass
, contains the relevant bits and pieces of the preamble (ideally only what is relevant for the issue, if the title formats are not relevant they can be dropped for the MWE) and has abegin{document}...end{document}
so that it can be compiled to a PDF that reproduces what you see.
– moewe
23 hours ago
4
4
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
yesterday
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
yesterday
Unfortunately, it is quite challenging to figure out exactly what you are doing and what goes wrong from only the code snippets shown so far. The gold standard for code examples is the so-called MWE (tex.meta.stackexchange.com/q/228/35864). An MWE is a full document that starts with
documentclass
, contains the relevant bits and pieces of the preamble (ideally only what is relevant for the issue, if the title formats are not relevant they can be dropped for the MWE) and has a begin{document}...end{document}
so that it can be compiled to a PDF that reproduces what you see.– moewe
23 hours ago
Unfortunately, it is quite challenging to figure out exactly what you are doing and what goes wrong from only the code snippets shown so far. The gold standard for code examples is the so-called MWE (tex.meta.stackexchange.com/q/228/35864). An MWE is a full document that starts with
documentclass
, contains the relevant bits and pieces of the preamble (ideally only what is relevant for the issue, if the title formats are not relevant they can be dropped for the MWE) and has a begin{document}...end{document}
so that it can be compiled to a PDF that reproduces what you see.– moewe
23 hours 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
4
Welcome to TeX.SE! Can you please make your code snippets compilable? Then we do not have to guess what you are doing ...
– Kurt
yesterday
Unfortunately, it is quite challenging to figure out exactly what you are doing and what goes wrong from only the code snippets shown so far. The gold standard for code examples is the so-called MWE (tex.meta.stackexchange.com/q/228/35864). An MWE is a full document that starts with
documentclass
, contains the relevant bits and pieces of the preamble (ideally only what is relevant for the issue, if the title formats are not relevant they can be dropped for the MWE) and has abegin{document}...end{document}
so that it can be compiled to a PDF that reproduces what you see.– moewe
23 hours ago