Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
emacs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michael Hauspie
emacs
Commits
94f35628
Commit
94f35628
authored
2 years ago
by
Michael Hauspie
Browse files
Options
Downloads
Patches
Plain Diff
Add support for bibliography in org files
parent
62e9855e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
configuration.org
+25
-0
25 additions, 0 deletions
configuration.org
with
25 additions
and
0 deletions
configuration.org
+
25
−
0
View file @
94f35628
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment