This will depend on whether you want to use one of the bibtex
styles
or natbib
styles or biblatex
styles.
This is the simplest as this was the original system the author of org-ref
was targeting. The style of your references page
can be selected using only the following.
bibliographystyle:<style>
bibliography:<biblio-file>.bib
where <style>
refers to one of the styles listed here.
This is about as easy except you need to add
#+LATEX_HEADER: \usepackage{natbib}
then you may proceed as before but now instead using styles listed here.
This is the least supported and consequently the most difficult to setup. That being said the basic usage still isn’t very complicated.
Now you must instead include the headers:
#+LATEX_HEADER: \usepackage[style=ieee]{biblatex}
#+LATEX_HEADER: \addbibresource{manuscript.bib}
Where here ieee
can be replaced with one of the styles listed here.
and maniscript.bib
is the bibliography you are wanting to apply the style to.
The final difference is that instead of the lines
bibliographystyle:<style>
bibliography:<biblio-file>.bib
being used toward the end of your document, instead you must use
\printbibliography
Note that the citation style you select via org-ref-helm-insert-cite-link
in spacemaces
can be changed by typing C-SPC
(to select the reference you wish to cite), then typing C-u
then enter
(list will appear after you hit enter
).
- note that the citation style you select may require one of the
biblatex
ornatbib
headers.