I'm new to using LaTeX for writing papers and I'm trying to get a workflow going using LaTeX in Doom Emacs on Arch Linux (all the required texlive packages having first been installed via pacman). However I cannot get LaTeX to render 'citep:' entries - at all!. I want to tangle references as I write and insert them into the thesis as and when I need to. So I'm experimenting with the following dummy org document:
#+TITLE: Workflow Sample #+PROPERTY: header-args :exports none :tangle "~/Documents/org/bibliography/HAD/references.bib" #+LATEX_CLASS_OPTIONS: [12pt] #+LATEX_HEADER: \usepackage[natbib=true]{biblatex} \DeclareFieldFormat{apacase}{#1} \addbibresource{~/Documents/org/bibliography/HAD/references.bib} #+LATEX_HEADER: \usepackage{parskip} #+OPTIONS: <:nil c:nil todo:nil H:5 * Generative Methods ** Probability *** Basic probabilistic methods as a path to musical variation citep:temp2007ElementaryProbability #+begin_src bibtex @book{temp2007ElementaryProbability, title = {Elementary Probability}, author = {Temperley D.}, booktitle = {Music and Probability}, keywords = {probability, probabilistic methods}, year = {2007}, } #+end_src There are several basic concepts that are useful to know when thinking about the relationship between probability and musical variation. Three of the most important ones are: the probability function, the distribution, and joint probability citep:temp2007ElementaryProbability. * References :PROPERTIES: :UNNUMBERED: t :END: #+LaTeX: \printbibliography[heading=none] The above template tangles the natbib entry to the references.bib file OK. It also generates a .tex file with the correct \citep{temp2007DElementaryProbability} entry as expected and a PDF. This would suggest that LaTeX with natbib is working OK. Nevertheless in the PDF output 'citep:temp2007ElementaryProbability' is quoted literally and is not interpreted. Am I missing some configuration in Emacs to get the citep directive to work or what? Any suggestion as to how to solve this issue would be great as it is driving me v-e-r-y s-l-o-w-l-y nuts. Thx in advance...