mirror of
https://gitlab.com/Titan-C/org-cv.git
synced 2024-11-14 18:48:30 +00:00
starting out an exporter
This commit is contained in:
parent
bd024751ab
commit
5d42e13049
1 changed files with 20 additions and 0 deletions
20
ox-cv.el
Normal file
20
ox-cv.el
Normal file
|
@ -0,0 +1,20 @@
|
|||
(require 'cl-lib)
|
||||
(require 'ox-latex)
|
||||
|
||||
;; Install a default set-up for Beamer export.
|
||||
(unless (assoc "orgcv" org-latex-classes)
|
||||
(add-to-list 'org-latex-classes
|
||||
'("orgcv"
|
||||
"\\documentclass{moderncv}"
|
||||
("\\section{%s}" . "\\section*{%s}")
|
||||
("\\subsection{%s}" . "\\subsection*{%s}")
|
||||
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
|
||||
|
||||
|
||||
;;; User-Configurable Variables
|
||||
|
||||
(defgroup org-export-cv nil
|
||||
"Options specific for using the moderncv class in LaTeX export."
|
||||
:tag "Org moderncv"
|
||||
:group 'org-export
|
||||
:version "25.3")
|
Loading…
Reference in a new issue