Combine citetitle{} from biblatex with apaciteHow to get title of a citation?How to get language dependent...
Why do neural networks need so many training examples to perform?
How do Japanese speakers determine the implied topic when none has been mentioned?
Can I retract my name from an already published manuscript?
How to avoid being sexist when trying to employ someone to function in a very sexist environment?
Can chords be played on the flute?
What's a good word to describe a public place that looks like it wouldn't be rough?
Finding the number of integers that are a square and a cube at the same time
How do I add a variable to this curl command?
Do my Windows system binaries contain sensitive information?
How to push a box with physics engine by another object?
Can a person refuse a presidential pardon?
Can I become debt free or should I file for bankruptcy? How do I manage my debt and finances?
LTSpice: When running a linear AC simulation, how to view the voltage ratio between two voltages?
How can I mix up weapons for large groups of similar monsters/characters?
Why does the DC-9-80 have this cusp in its fuselage?
Which branches of mathematics can be done just in terms of morphisms and composition?
Do commercial flights continue with an engine out?
Why is working on the same position for more than 15 years not a red flag?
raspberry pi change directory (cd) command not working with USB drive
Has the Isbell–Freyd criterion ever been used to check that a category is concretisable?
What are these green text/line displays shown during the livestream of Crew Dragon's approach to dock with the ISS?
Using AWS Fargate as web server
Crystal compensation for temp and voltage
Meth dealer reference in Family Guy
Combine citetitle{} from biblatex with apacite
How to get title of a citation?How to get language dependent quotation marks in citations with biblatex?Problems with BibLaTeX and origyear in bibliographyBiblatex: Combining Dynamic Compare Command with a 'citetitle' CommandBibliography in LaTeX with Biblatex and Biber as backendMargin-Cite from tufte-bookTaking off the reference number from in text citeHow to tell BibLaTeX to produce the full citation instead of “ibid.” at a specific location?Citing from an Encyclopedia with sub voceusepackage[sorting=none]{biblatex} code complie anymoreTikz graph with citations
Is there an option to cite the title from my bibliography with apacite
?
I found the question How to get title of a citation? which is the exact question I had in mind but it did not work with apacite
. I receive multiple error messages regarding my citation which are according to apacite
but not compatible with biblatex
(I assume).
Package biblatex error: 'bibliographystyle' invalid
In the mentioned question there were two options proposed, both with biblatex
:
citetitle{}
citefield{}
Because I like the format of apacite
I would not want to switch to biblatex
. Is there an alternative to cite the title with apacite
?
My code:
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{biblatex}
begin{document}
"Some text"
bibliography{library}
bibliographystyle{apacite}
end{document}
biblatex citing apacite
add a comment |
Is there an option to cite the title from my bibliography with apacite
?
I found the question How to get title of a citation? which is the exact question I had in mind but it did not work with apacite
. I receive multiple error messages regarding my citation which are according to apacite
but not compatible with biblatex
(I assume).
Package biblatex error: 'bibliographystyle' invalid
In the mentioned question there were two options proposed, both with biblatex
:
citetitle{}
citefield{}
Because I like the format of apacite
I would not want to switch to biblatex
. Is there an alternative to cite the title with apacite
?
My code:
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{biblatex}
begin{document}
"Some text"
bibliography{library}
bibliographystyle{apacite}
end{document}
biblatex citing apacite
add a comment |
Is there an option to cite the title from my bibliography with apacite
?
I found the question How to get title of a citation? which is the exact question I had in mind but it did not work with apacite
. I receive multiple error messages regarding my citation which are according to apacite
but not compatible with biblatex
(I assume).
Package biblatex error: 'bibliographystyle' invalid
In the mentioned question there were two options proposed, both with biblatex
:
citetitle{}
citefield{}
Because I like the format of apacite
I would not want to switch to biblatex
. Is there an alternative to cite the title with apacite
?
My code:
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{biblatex}
begin{document}
"Some text"
bibliography{library}
bibliographystyle{apacite}
end{document}
biblatex citing apacite
Is there an option to cite the title from my bibliography with apacite
?
I found the question How to get title of a citation? which is the exact question I had in mind but it did not work with apacite
. I receive multiple error messages regarding my citation which are according to apacite
but not compatible with biblatex
(I assume).
Package biblatex error: 'bibliographystyle' invalid
In the mentioned question there were two options proposed, both with biblatex
:
citetitle{}
citefield{}
Because I like the format of apacite
I would not want to switch to biblatex
. Is there an alternative to cite the title with apacite
?
My code:
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{biblatex}
begin{document}
"Some text"
bibliography{library}
bibliographystyle{apacite}
end{document}
biblatex citing apacite
biblatex citing apacite
asked 13 hours ago
Alex_PAlex_P
1475
1475
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
With apacite
(and other BibTeX-based solutions that don't have their own citetitle
equivalent) you can use egreg's usebib
package and its usebibentry{<key>}{<field>}
command
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{usebib}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
bibinput{jobname}
begin{document}
Lorem cite{sigfridsson}
usebibentry{sigfridsson}{title}
bibliographystyle{apacite}
bibliography{jobname}
end{document}
But there is also an APA style for biblatex
, biblatex-apa
, so you could say
documentclass[a4paper, 10pt]{book}
usepackage[style=apa]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Lorem autocite{sigfridsson}
citetitle{sigfridsson}
printbibliography[heading=subbibliography]
end{document}
Thank you so much. I especially like yourusebib
package. I did not know of it before but it is quite useful.
– Alex_P
11 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%2f477560%2fcombine-citetitle-from-biblatex-with-apacite%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
With apacite
(and other BibTeX-based solutions that don't have their own citetitle
equivalent) you can use egreg's usebib
package and its usebibentry{<key>}{<field>}
command
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{usebib}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
bibinput{jobname}
begin{document}
Lorem cite{sigfridsson}
usebibentry{sigfridsson}{title}
bibliographystyle{apacite}
bibliography{jobname}
end{document}
But there is also an APA style for biblatex
, biblatex-apa
, so you could say
documentclass[a4paper, 10pt]{book}
usepackage[style=apa]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Lorem autocite{sigfridsson}
citetitle{sigfridsson}
printbibliography[heading=subbibliography]
end{document}
Thank you so much. I especially like yourusebib
package. I did not know of it before but it is quite useful.
– Alex_P
11 hours ago
add a comment |
With apacite
(and other BibTeX-based solutions that don't have their own citetitle
equivalent) you can use egreg's usebib
package and its usebibentry{<key>}{<field>}
command
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{usebib}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
bibinput{jobname}
begin{document}
Lorem cite{sigfridsson}
usebibentry{sigfridsson}{title}
bibliographystyle{apacite}
bibliography{jobname}
end{document}
But there is also an APA style for biblatex
, biblatex-apa
, so you could say
documentclass[a4paper, 10pt]{book}
usepackage[style=apa]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Lorem autocite{sigfridsson}
citetitle{sigfridsson}
printbibliography[heading=subbibliography]
end{document}
Thank you so much. I especially like yourusebib
package. I did not know of it before but it is quite useful.
– Alex_P
11 hours ago
add a comment |
With apacite
(and other BibTeX-based solutions that don't have their own citetitle
equivalent) you can use egreg's usebib
package and its usebibentry{<key>}{<field>}
command
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{usebib}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
bibinput{jobname}
begin{document}
Lorem cite{sigfridsson}
usebibentry{sigfridsson}{title}
bibliographystyle{apacite}
bibliography{jobname}
end{document}
But there is also an APA style for biblatex
, biblatex-apa
, so you could say
documentclass[a4paper, 10pt]{book}
usepackage[style=apa]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Lorem autocite{sigfridsson}
citetitle{sigfridsson}
printbibliography[heading=subbibliography]
end{document}
With apacite
(and other BibTeX-based solutions that don't have their own citetitle
equivalent) you can use egreg's usebib
package and its usebibentry{<key>}{<field>}
command
documentclass[a4paper, 10pt]{book}
usepackage{apacite}
usepackage{usebib}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
bibinput{jobname}
begin{document}
Lorem cite{sigfridsson}
usebibentry{sigfridsson}{title}
bibliographystyle{apacite}
bibliography{jobname}
end{document}
But there is also an APA style for biblatex
, biblatex-apa
, so you could say
documentclass[a4paper, 10pt]{book}
usepackage[style=apa]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@article{sigfridsson,
author = {Sigfridsson, Emma and Ryde, Ulf},
title = {Comparison of methods for deriving atomic charges from the
electrostatic potential and moments},
journal = {Journal of Computational Chemistry},
year = 1998,
volume = 19,
number = 4,
pages = {377-395},
doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Lorem autocite{sigfridsson}
citetitle{sigfridsson}
printbibliography[heading=subbibliography]
end{document}
edited 13 hours ago
answered 13 hours ago
moewemoewe
92.4k10115350
92.4k10115350
Thank you so much. I especially like yourusebib
package. I did not know of it before but it is quite useful.
– Alex_P
11 hours ago
add a comment |
Thank you so much. I especially like yourusebib
package. I did not know of it before but it is quite useful.
– Alex_P
11 hours ago
Thank you so much. I especially like your
usebib
package. I did not know of it before but it is quite useful.– Alex_P
11 hours ago
Thank you so much. I especially like your
usebib
package. I did not know of it before but it is quite useful.– Alex_P
11 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%2f477560%2fcombine-citetitle-from-biblatex-with-apacite%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