BibTeX, biblatex and biberapacite with Bibtex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Weaver
Posts: 3
Joined: Mon Jan 12, 2015 4:29 am

apacite with Bibtex

Post by Weaver »

Greetings all,

Just making my first foray into APA style, with 6th edition, using Bibtex to handle the bibliography function.
Pretty sure I have everything right, with:

Code: Select all

\documentclass[a4paper]{apa6e}
\usepackage{apacite}
\bibliographystyle{apacite}
\title{}
\shorttitle{}
\author{}
\authornote{}
\abstract{}
\begin{document}
\maketitle

... in the preamble, and:

\bibliography{Laing}
\end{document}
... tacked on at the end, with the Bibtex file properly named as Laing.bib, and in the same folder as the document.

All I can get when I place \cite{refkey} into the text body, however, is (?, ?).
So, there's a communication breakdown somewhere. After some time of working at it, I can't work it out however.

All packages are installed in a Texlive installation, on Debian, using TexMaker as an editor. I thought I might have been creating bib entries incorrectly, so downloaded JabRef, and even used the automagic refkey selection with that with the same result, so there's a missing step somewhere.

Any time and trouble appreaciated.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

apacite with Bibtex

Post by Johannes_B »

Hi and welcome,

this is one oof the most confusing things for beginners. You have to run an extra command that gets the contents of the bib-database, sorts them and write stuff to a file that is read by LaTeX next time.
Please refer to Question marks instead of citation.

If you have the freedom to choose, use the modern combo of biblatex and biber. They are much more flexible.


EDIT: As i just found out, this is a crosspost to TeX.SX. Please read, what our administrator thinks about crossposts: Gimme Pizza
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Weaver
Posts: 3
Joined: Mon Jan 12, 2015 4:29 am

apacite with Bibtex

Post by Weaver »

Well, thanks, but unless I can identify what that command actually is I'm not in a position to do anything about the situation.
I find no reference to it on Stack, other than the fact that Bibtex references the bib file, then writes a bbl file, which isn't happening.
Until I can find out why that isn't happening, I'm no further ahead than before.
Thank s for your time and trouble anyway.

When I find out what the answer is, I'll write it up on both forums, which is how I've handled things within the OS community I've been a part of over the last 20 years.
Weaver
Posts: 3
Joined: Mon Jan 12, 2015 4:29 am

Re: apacite with Bibtex

Post by Weaver »

O.K., mystery solved.
I'm used to writing code in other areas, but not this, so had to figure out the compile chain scenario through an editor.
That's quite easy through the tabs at the top, however.
Organise bibtex into the sequence, prior to pdflatex, and cycle it so that the bib file gets recognised and the bbl file created and everything's hunky dory.
Thanks to all.
Post Reply