Referencing/citing does not workrenewcommand{cite} does not workcite{*} does not always workHyperlink does...
GPS Rollover on Android Smartphones
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?
If I cast Expeditious Retreat, can I Dash as a bonus action on the same turn?
How long does it take to type this?
"You are your self first supporter", a more proper way to say it
Why not use SQL instead of GraphQL?
Modeling an IPv4 Address
How old can references or sources in a thesis be?
Is the language {<p,n> | p and n are natural numbers and there's no prime number in [p,p+n]} belongs to NP class?
How much RAM could one put in a typical 80386 setup?
Why can't I see bouncing of a switch on an oscilloscope?
What typically incentivizes a professor to change jobs to a lower ranking university?
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
The iconography of Laddu Gopal's soles
Why are 150k or 200k jobs considered good when there are 300k+ births a month?
Infinite past with a beginning?
Motorized valve interfering with button?
How can bays and straits be determined in a procedurally generated map?
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
A Journey Through Space and Time
Why was the small council so happy for Tyrion to become the Master of Coin?
How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?
If Manufacturer spice model and Datasheet give different values which should I use?
Referencing/citing does not work
renewcommand{cite} does not workcite{*} does not always workHyperlink does not work in footfullciteIn-text citation does not workcitation with page number does not workCiting does not workThe usepackage notoccite does not workHow come citation of author and page number using apacite does not work?cite truncation biblatex-apa does not workWhy shortcite does not work as expected in apacite?
I have huge troubles with citing in LaTeX. Whatever I try it just does not work.
So, first of all I have my tex file. Then I created a BibTex file, saved it as "Abschlusslit.bib
" and saved it in the same file as my tex-file.
This is my BibTex file:
@book{Alexandrowicz2013,
author = {Alexandrowicz, R. W.},
title = {{R in 10 Schritten. Eine Einführung in die statistische Programmierumgebung}},
year = {2013},
publisher = {Facultas},
address = {Wien},
}
and this is my tex file:
documentclass [12pt]{article}
usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{multicol}
usepackage{geometry}
geometry{a4paper,left=25mm,right=25mm, top=25mm, bottom=20mm}
setlength{columnsep}{1.5cm}
usepackage{setspace}
usepackage{cite}
begin{document}
bibliographystyle{apacite}
bibliography{Abschlusslit}
Tau vom Boden, drohte ihnen damit und hielt sie dadurch
von dem Sprunge ab cite{Alexandrowicz2013}.
end{document}
It does not seem to find the reference, only a question mark appears in the place where the reference should come. It just gives me a lot of error messages.
Like "undefined control sequence" and it opens up a .bbl document but I don't know what that is.
The .bbl document looks like this:
begin{thebibliography}{}
bibitem [protect citeauthoryear {%
Frijters%
BBA {} Beatton%
}{%
Frijters%
BBA {} Beatton%
}{%
{protect APACyear {{protect bibnodate {}}}}%
}]{%
FrijtersBeatton}
APACinsertmetastar {%
FrijtersBeatton}%
begin{APACrefauthors}%
Frijters, P.%
BCBT {} BBA {} Beatton, T.%
end{APACrefauthors}%
unskip
newblock
APACrefYearMonthDay{{protect bibnodate {}}}{}{}.
newblock
{BBOQ}APACrefatitle {The mystery of the U-shaped relationship between
happiness and age} {The mystery of the u-shaped relationship between
happiness and age}.{BBCQ}
newblock
PrintBackRefs{CurrentBib}
end{thebibliography}
Should I delete it? Has anyone of you encountered the same problem and can help me.
citing apacite
add a comment |
I have huge troubles with citing in LaTeX. Whatever I try it just does not work.
So, first of all I have my tex file. Then I created a BibTex file, saved it as "Abschlusslit.bib
" and saved it in the same file as my tex-file.
This is my BibTex file:
@book{Alexandrowicz2013,
author = {Alexandrowicz, R. W.},
title = {{R in 10 Schritten. Eine Einführung in die statistische Programmierumgebung}},
year = {2013},
publisher = {Facultas},
address = {Wien},
}
and this is my tex file:
documentclass [12pt]{article}
usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{multicol}
usepackage{geometry}
geometry{a4paper,left=25mm,right=25mm, top=25mm, bottom=20mm}
setlength{columnsep}{1.5cm}
usepackage{setspace}
usepackage{cite}
begin{document}
bibliographystyle{apacite}
bibliography{Abschlusslit}
Tau vom Boden, drohte ihnen damit und hielt sie dadurch
von dem Sprunge ab cite{Alexandrowicz2013}.
end{document}
It does not seem to find the reference, only a question mark appears in the place where the reference should come. It just gives me a lot of error messages.
Like "undefined control sequence" and it opens up a .bbl document but I don't know what that is.
The .bbl document looks like this:
begin{thebibliography}{}
bibitem [protect citeauthoryear {%
Frijters%
BBA {} Beatton%
}{%
Frijters%
BBA {} Beatton%
}{%
{protect APACyear {{protect bibnodate {}}}}%
}]{%
FrijtersBeatton}
APACinsertmetastar {%
FrijtersBeatton}%
begin{APACrefauthors}%
Frijters, P.%
BCBT {} BBA {} Beatton, T.%
end{APACrefauthors}%
unskip
newblock
APACrefYearMonthDay{{protect bibnodate {}}}{}{}.
newblock
{BBOQ}APACrefatitle {The mystery of the U-shaped relationship between
happiness and age} {The mystery of the u-shaped relationship between
happiness and age}.{BBCQ}
newblock
PrintBackRefs{CurrentBib}
end{thebibliography}
Should I delete it? Has anyone of you encountered the same problem and can help me.
citing apacite
If you want to use the styleapacite
(for APA compliant citations) you must also load theapacite
package (which is probably incompatible withcite
): Replaceusepackage{cite}
withusepackage{apacite}
.
– moewe
8 hours ago
If you don't need full APA compliance, you could use something likebibliographstyle{apalike}
orbibliographystyle{plain}
instead or loadnatbib
instead ofcite
and usebibliographystyle{plainnat}
.
– moewe
8 hours ago
This is a bit off-topic, but you should clean your MWE to make them as small as possible. I don't thinkgeometry
,multicol
andsetspace
are useful for this case.
– sztruks
2 hours ago
add a comment |
I have huge troubles with citing in LaTeX. Whatever I try it just does not work.
So, first of all I have my tex file. Then I created a BibTex file, saved it as "Abschlusslit.bib
" and saved it in the same file as my tex-file.
This is my BibTex file:
@book{Alexandrowicz2013,
author = {Alexandrowicz, R. W.},
title = {{R in 10 Schritten. Eine Einführung in die statistische Programmierumgebung}},
year = {2013},
publisher = {Facultas},
address = {Wien},
}
and this is my tex file:
documentclass [12pt]{article}
usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{multicol}
usepackage{geometry}
geometry{a4paper,left=25mm,right=25mm, top=25mm, bottom=20mm}
setlength{columnsep}{1.5cm}
usepackage{setspace}
usepackage{cite}
begin{document}
bibliographystyle{apacite}
bibliography{Abschlusslit}
Tau vom Boden, drohte ihnen damit und hielt sie dadurch
von dem Sprunge ab cite{Alexandrowicz2013}.
end{document}
It does not seem to find the reference, only a question mark appears in the place where the reference should come. It just gives me a lot of error messages.
Like "undefined control sequence" and it opens up a .bbl document but I don't know what that is.
The .bbl document looks like this:
begin{thebibliography}{}
bibitem [protect citeauthoryear {%
Frijters%
BBA {} Beatton%
}{%
Frijters%
BBA {} Beatton%
}{%
{protect APACyear {{protect bibnodate {}}}}%
}]{%
FrijtersBeatton}
APACinsertmetastar {%
FrijtersBeatton}%
begin{APACrefauthors}%
Frijters, P.%
BCBT {} BBA {} Beatton, T.%
end{APACrefauthors}%
unskip
newblock
APACrefYearMonthDay{{protect bibnodate {}}}{}{}.
newblock
{BBOQ}APACrefatitle {The mystery of the U-shaped relationship between
happiness and age} {The mystery of the u-shaped relationship between
happiness and age}.{BBCQ}
newblock
PrintBackRefs{CurrentBib}
end{thebibliography}
Should I delete it? Has anyone of you encountered the same problem and can help me.
citing apacite
I have huge troubles with citing in LaTeX. Whatever I try it just does not work.
So, first of all I have my tex file. Then I created a BibTex file, saved it as "Abschlusslit.bib
" and saved it in the same file as my tex-file.
This is my BibTex file:
@book{Alexandrowicz2013,
author = {Alexandrowicz, R. W.},
title = {{R in 10 Schritten. Eine Einführung in die statistische Programmierumgebung}},
year = {2013},
publisher = {Facultas},
address = {Wien},
}
and this is my tex file:
documentclass [12pt]{article}
usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{multicol}
usepackage{geometry}
geometry{a4paper,left=25mm,right=25mm, top=25mm, bottom=20mm}
setlength{columnsep}{1.5cm}
usepackage{setspace}
usepackage{cite}
begin{document}
bibliographystyle{apacite}
bibliography{Abschlusslit}
Tau vom Boden, drohte ihnen damit und hielt sie dadurch
von dem Sprunge ab cite{Alexandrowicz2013}.
end{document}
It does not seem to find the reference, only a question mark appears in the place where the reference should come. It just gives me a lot of error messages.
Like "undefined control sequence" and it opens up a .bbl document but I don't know what that is.
The .bbl document looks like this:
begin{thebibliography}{}
bibitem [protect citeauthoryear {%
Frijters%
BBA {} Beatton%
}{%
Frijters%
BBA {} Beatton%
}{%
{protect APACyear {{protect bibnodate {}}}}%
}]{%
FrijtersBeatton}
APACinsertmetastar {%
FrijtersBeatton}%
begin{APACrefauthors}%
Frijters, P.%
BCBT {} BBA {} Beatton, T.%
end{APACrefauthors}%
unskip
newblock
APACrefYearMonthDay{{protect bibnodate {}}}{}{}.
newblock
{BBOQ}APACrefatitle {The mystery of the U-shaped relationship between
happiness and age} {The mystery of the u-shaped relationship between
happiness and age}.{BBCQ}
newblock
PrintBackRefs{CurrentBib}
end{thebibliography}
Should I delete it? Has anyone of you encountered the same problem and can help me.
citing apacite
citing apacite
edited 8 hours ago
moewe
96.4k10117361
96.4k10117361
asked 8 hours ago
Helena PokrivkaHelena Pokrivka
261
261
If you want to use the styleapacite
(for APA compliant citations) you must also load theapacite
package (which is probably incompatible withcite
): Replaceusepackage{cite}
withusepackage{apacite}
.
– moewe
8 hours ago
If you don't need full APA compliance, you could use something likebibliographstyle{apalike}
orbibliographystyle{plain}
instead or loadnatbib
instead ofcite
and usebibliographystyle{plainnat}
.
– moewe
8 hours ago
This is a bit off-topic, but you should clean your MWE to make them as small as possible. I don't thinkgeometry
,multicol
andsetspace
are useful for this case.
– sztruks
2 hours ago
add a comment |
If you want to use the styleapacite
(for APA compliant citations) you must also load theapacite
package (which is probably incompatible withcite
): Replaceusepackage{cite}
withusepackage{apacite}
.
– moewe
8 hours ago
If you don't need full APA compliance, you could use something likebibliographstyle{apalike}
orbibliographystyle{plain}
instead or loadnatbib
instead ofcite
and usebibliographystyle{plainnat}
.
– moewe
8 hours ago
This is a bit off-topic, but you should clean your MWE to make them as small as possible. I don't thinkgeometry
,multicol
andsetspace
are useful for this case.
– sztruks
2 hours ago
If you want to use the style
apacite
(for APA compliant citations) you must also load the apacite
package (which is probably incompatible with cite
): Replace usepackage{cite}
with usepackage{apacite}
.– moewe
8 hours ago
If you want to use the style
apacite
(for APA compliant citations) you must also load the apacite
package (which is probably incompatible with cite
): Replace usepackage{cite}
with usepackage{apacite}
.– moewe
8 hours ago
If you don't need full APA compliance, you could use something like
bibliographstyle{apalike}
or bibliographystyle{plain}
instead or load natbib
instead of cite
and use bibliographystyle{plainnat}
.– moewe
8 hours ago
If you don't need full APA compliance, you could use something like
bibliographstyle{apalike}
or bibliographystyle{plain}
instead or load natbib
instead of cite
and use bibliographystyle{plainnat}
.– moewe
8 hours ago
This is a bit off-topic, but you should clean your MWE to make them as small as possible. I don't think
geometry
, multicol
and setspace
are useful for this case.– sztruks
2 hours ago
This is a bit off-topic, but you should clean your MWE to make them as small as possible. I don't think
geometry
, multicol
and setspace
are useful for this case.– sztruks
2 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
});
}
});
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%2f483641%2freferencing-citing-does-not-work%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
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%2f483641%2freferencing-citing-does-not-work%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
If you want to use the style
apacite
(for APA compliant citations) you must also load theapacite
package (which is probably incompatible withcite
): Replaceusepackage{cite}
withusepackage{apacite}
.– moewe
8 hours ago
If you don't need full APA compliance, you could use something like
bibliographstyle{apalike}
orbibliographystyle{plain}
instead or loadnatbib
instead ofcite
and usebibliographystyle{plainnat}
.– moewe
8 hours ago
This is a bit off-topic, but you should clean your MWE to make them as small as possible. I don't think
geometry
,multicol
andsetspace
are useful for this case.– sztruks
2 hours ago