Compare commits

...

2 Commits

Author SHA1 Message Date
coolneng b9e6c9a616
Improve academic org mode options 2021-07-02 17:07:10 +02:00
coolneng 977744ce59
Change default bibliography file location 2021-07-02 17:06:53 +02:00
1 changed files with 5 additions and 2 deletions

View File

@ -60,6 +60,9 @@
(setq org-latex-listings 't) (setq org-latex-listings 't)
;; Set up bibliography management ;; Set up bibliography management
(setq! +biblio-pdf-library-dir "~/Documents/Uni/TFG/bibliography/" (setq! +biblio-pdf-library-dir "~/Documents/Uni/TFG/bibliography/"
+biblio-default-bibliography-files '("~/Documents/Uni/TFG/docs/assets/bibliography.bib")) +biblio-default-bibliography-files '("~/Documents/Uni/TFG/assets/bibliography.bib"))
;; Add citeproc option to ox-latex ;; Add citeproc and metadata-file options to ox-latex
(add-to-list 'org-pandoc-valid-options 'citeproc) (add-to-list 'org-pandoc-valid-options 'citeproc)
(add-to-list 'org-pandoc-valid-options 'metadata-file)
;; Allow referencing by label in org-ref
(setq org-latex-prefer-user-labels t)