Skip to content
Snippets Groups Projects
Commit 94f35628 authored by Michael Hauspie's avatar Michael Hauspie
Browse files

Add support for bibliography in org files

parent 62e9855e
Branches
No related tags found
No related merge requests found
...@@ -439,6 +439,31 @@ Add shortcuts to quickly add code blocks using =C-,= ...@@ -439,6 +439,31 @@ Add shortcuts to quickly add code blocks using =C-,=
'("el" . "src emacs-lisp")) '("el" . "src emacs-lisp"))
#+end_src #+end_src
** Latex export
Use =latexmk= to export to Latex
#+begin_src emacs-lisp :exports code
(setq org-latex-pdf-process (list "latexmk -pdflatex='pdflatex -shell-escape -interaction nonstopmode' -pdf %f"))
#+end_src
Use =org-ref= for citation
#+begin_src emacs-lisp
(use-package org-ref)
(use-package org-ref-prettify)
#+end_src
And use the same shortcut for =org-reftex-citation= than for =reftex-citation=
#+begin_src emacs-lisp
(define-key org-mode-map (kbd "C-c [") 'org-reftex-citation)
#+end_src
#+RESULTS:
: org-reftex-citation
** Visuals ** Visuals
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment