I am doing a presentation with the beamer class using the metropolis theme. Currently I am using RStudio and compile the file with XeLaTeX. Texmaker is an alternative.
How to make biblatex behave like apacite? - did not work for me. May be I need to compile with more than just 1x XeLaTeX?
I would prefer to use Bibtex with apacite being able to just include a .bib file for \bibliography. However, I read that there exist some conflicts?
Errors:
- Rerun to get \PageLabels entry
- Citation ... undefined
\documentclass{beamer}
\usepackage{appendixnumberbeamer}
% various symbols
\usepackage{gensymb}
% bibliographystyle
\usepackage{apacite}
% Bilbliography
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Misc{Ref1,
author = {{Test author}},
title = {Test title},
year = {2016},
url = {http://testurl.com=},
}
\end{filecontents}
\usetheme[sectionpage = progressbar, numbering = fraction]{metropolis}
% title preface
\title{Title}
\begin{document}
\maketitle
% ------------------------------------------------------------------------------
\begin{frame}{Frame1}
\cite{Ref1}
\end{frame}
% ------------------------------------------------------------------------------
\begin{frame}[allowframebreaks]{Bibliography}%in case more than 1 slide needed
{\footnotesize
\bibliographystyle{apacite}
\bibliography{\jobname}
}
\end{frame}
xelatex, biber, xelatex, xelatex– samcarter_is_at_topanswers.xyz Sep 29 '16 at 13:27xelatex, biber, xelatex, xelatex->xelatex % | biber % | xelatex % | xelatex %referring to this answer: http://tex.stackexchange.com/a/154788/104937. RStudio seems to be to to basic for this approach atm. Add it as an answer and I´ll accept it! – pat-s Sep 29 '16 at 14:16