Set up bibliography management
This commit is contained in:
parent
8537a95d75
commit
378d2fe4e6
5
+org.el
5
+org.el
|
@ -58,3 +58,8 @@
|
||||||
("\\subparagraph{%s}" . "\\subparagraph*{%s}"))))
|
("\\subparagraph{%s}" . "\\subparagraph*{%s}"))))
|
||||||
;; Enable listings for LaTeX export
|
;; Enable listings for LaTeX export
|
||||||
(setq org-latex-listings 't)
|
(setq org-latex-listings 't)
|
||||||
|
;; Set up bibliography management
|
||||||
|
(setq! +biblio-pdf-library-dir "~/Documents/Uni/TFG/bibliography/"
|
||||||
|
+biblio-default-bibliography-files '("~/Documents/Uni/TFG/docs/assets/bibliography.bib"))
|
||||||
|
;; Add citeproc option to ox-latex
|
||||||
|
(add-to-list 'org-pandoc-valid-options 'citeproc)
|
||||||
|
|
4
init.el
4
init.el
|
@ -81,6 +81,7 @@
|
||||||
|
|
||||||
:tools
|
:tools
|
||||||
;;ansible
|
;;ansible
|
||||||
|
biblio ; Writes a PhD for you[citation needed]
|
||||||
debugger ; FIXME stepping through code, to help you add bugs
|
debugger ; FIXME stepping through code, to help you add bugs
|
||||||
direnv
|
direnv
|
||||||
;;docker
|
;;docker
|
||||||
|
@ -147,7 +148,8 @@
|
||||||
+pandoc ; export-with-pandoc support
|
+pandoc ; export-with-pandoc support
|
||||||
;;+pomodoro ; be fruitful with the tomato technique
|
;;+pomodoro ; be fruitful with the tomato technique
|
||||||
+present ; using org-mode for presentations
|
+present ; using org-mode for presentations
|
||||||
+pretty)
|
+pretty
|
||||||
|
+ref)
|
||||||
;;perl ; write code no one else can comprehend
|
;;perl ; write code no one else can comprehend
|
||||||
;;php ; perl's insecure younger brother
|
;;php ; perl's insecure younger brother
|
||||||
;;plantuml ; diagrams for confusing people more
|
;;plantuml ; diagrams for confusing people more
|
||||||
|
|
Loading…
Reference in New Issue