new fun stuff

This commit is contained in:
Jacob Janzen 2024-09-26 11:51:10 -05:00
parent 45095cbfc5
commit 0027b29533
2 changed files with 13 additions and 2 deletions

View file

@ -16,6 +16,7 @@
,*** [[https://www.lilysthings.org/blog/rss.xml][The Cool Blog]]
,** Software :software:
,*** [[https://ersei.net/en/blog.atom][Ersei]]
,*** [[https://lilysthings.org/blog/rss.xml][Lily's Things]]
,*** [[https://ntietz.com/atom.xml][Technically a Blog]]
,*** [[https://alexwlchan.net/atom.xml][Alex Chan]]
,*** [[https://eaton-works.com/feed.atom][Eaton Works]] :hacking:

View file

@ -374,8 +374,18 @@ Use the Deft package to manage notes.
deft-default-extension "org"))
#+end_src
* Biblio
Use Biblio to manage citations.
* Reference Management
Use Biblio and Citar to manage citations.
#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
(use-package biblio)
(use-package citar
:custom
(citar-bibliography '("~/bib/references.bib"))
:hook
(LaTeX-mode . citar-capf-setup)
(org-mode . citar-capf-setup))
(use-package citar-embark
:after citar embark
:no-require
:config (citar-embark-mode))
#+end_src