org-cv/ox-moderncv.el

227 lines
8.2 KiB
EmacsLisp
Raw Normal View History

;;; ox-latex-cv.el --- LaTeX moderncv Back-End for Org Export Engine -*- lexical-binding: t; -*-
;; Copyright (C) 2018 Free Software Foundation, Inc.
;; Author: Oscar Najera <hi AT oscarnajera.com DOT com>
;; Keywords: org, wp, tex
;; This file is not part of GNU Emacs.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;;
;; This library implements a LaTeX moderncv back-end, derived from the
;; LaTeX one.
;;; Code:
2018-03-22 17:04:26 +00:00
(require 'cl-lib)
(require 'ox-latex)
;; Install a default set-up for moderncv export.
2018-03-22 17:04:26 +00:00
(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")
2018-03-22 17:23:22 +00:00
;;; Define Back-End
(org-export-define-derived-backend 'orgcv 'latex
:options-alist
2018-03-23 01:05:30 +00:00
'(
(:cvstyle "CVSTYLE" nil "classic" t)
(:cvcolor "CVCOLOR" nil "blue" t)
(:mobile "MOBILE" nil nil parse)
2018-03-22 23:51:23 +00:00
(:homepage "HOMEPAGE" nil nil parse)
2018-03-23 01:04:36 +00:00
(:address "ADDRESS" nil nil newline)
2018-03-24 00:42:52 +00:00
(:photo "PHOTO" nil nil parse)
2018-03-22 23:51:23 +00:00
(:gitlab "GITLAB" nil nil parse)
(:github "GITHUB" nil nil parse)
(:linkedin "LINKEDIN" nil nil parse)
2018-03-24 00:42:52 +00:00
(:with-email nil "email" t t)
2018-03-22 23:51:23 +00:00
)
:translate-alist '((template . org-moderncv-template)
(headline . org-moderncv-headline)))
(defun org-moderncv--add-latex-newlines (string)
"Replace regular newlines in STRING with LaTeX newlines.
(i.e. `\\\\')"
2018-03-23 01:04:36 +00:00
(let ((str (org-trim string)))
(when (org-string-nw-p str)
(concat (replace-regexp-in-string "\n" "\\\\\\\\\n" str) "\\\\"))))
;;;; Template
;;
;; Template used is similar to the one used in `latex' back-end,
;; excepted for the table of contents and moderncv themes.
(defun org-moderncv-template (contents info)
"Return complete document string after LaTeX conversion.
CONTENTS is the transcoded contents string. INFO is a plist
holding export options."
(let ((title (org-export-data (plist-get info :title) info))
(spec (org-latex--format-spec info)))
(concat
;; Time-stamp.
(and (plist-get info :time-stamp-file)
(format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
;; LaTeX compiler.
2018-03-24 00:56:58 +00:00
(org-latex--insert-compiler info)
;; Document class and packages.
(org-latex-make-preamble info)
2018-03-23 01:05:30 +00:00
;; cvstyle
(let ((cvstyle (org-export-data (plist-get info :cvstyle) info)))
(when cvstyle (format "\\moderncvstyle{%s}\n" cvstyle)))
;; cvcolor
(let ((cvcolor (org-export-data (plist-get info :cvcolor) info)))
(when cvcolor (format "\\moderncvcolor{%s}\n" cvcolor)))
;; Possibly limit depth for headline numbering.
(let ((sec-num (plist-get info :section-numbers)))
(when (integerp sec-num)
(format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
;; Author.
(let ((author (and (plist-get info :with-author)
(let ((auth (plist-get info :author)))
(and auth (org-export-data auth info))))))
(format "\\name{%s}{}\n" author))
2018-03-24 00:42:52 +00:00
;; photo
(let ((photo (org-export-data (plist-get info :photo) info)))
(when (org-string-nw-p photo) (format "\\photo{%s}\n" photo)))
;; email
(let ((email (and (plist-get info :with-email)
(org-export-data (plist-get info :email) info))))
(when email (format "\\email{%s}\n" email)))
;; phone
(let ((mobile (org-export-data (plist-get info :mobile) info)))
(when mobile (format "\\phone[mobile]{%s}\n" mobile)))
;; homepage
(let ((homepage (org-export-data (plist-get info :homepage) info)))
(when homepage (format "\\homepage{%s}\n" homepage)))
2018-03-23 00:44:30 +00:00
;; address
(let ((address (org-export-data (plist-get info :address) info)))
(when address (format "\\address{%s}\n" (org-moderncv--add-latex-newlines address))))
2018-03-23 14:13:59 +00:00
(mapconcat (lambda (social-network)
(let ((command (org-export-data (plist-get info
(car social-network))
info)))
(and command (format "\\social[%s]{%s}\n"
(nth 1 social-network)
command))))
'((:github "github")
(:gitlab "gitlab")
(:linkedin "linkedin"))
"")
;; Date.
(let ((date (and (plist-get info :with-date) (org-export-get-date info))))
(format "\\date{%s}\n" (org-export-data date info)))
;; Title and subtitle.
(let* ((subtitle (plist-get info :subtitle))
(formatted-subtitle
(when subtitle
(format (plist-get info :latex-subtitle-format)
(org-export-data subtitle info))))
(separate (plist-get info :latex-subtitle-separate)))
(concat
(format "\\title{%s%s}\n" title
(if separate "" (or formatted-subtitle "")))
(when (and separate subtitle)
(concat formatted-subtitle "\n"))))
;; Hyperref options.
(let ((template (plist-get info :latex-hyperref-template)))
(and (stringp template)
(format-spec template spec)))
;; Document start.
"\\begin{document}\n\n"
;; Title command.
(let* ((title-command (plist-get info :latex-title-command))
(command (and (stringp title-command)
(format-spec title-command spec))))
(org-element-normalize-string
(cond ((not (plist-get info :with-title)) nil)
((string= "" title) nil)
((not (stringp command)) nil)
((string-match "\\(?:[^%]\\|^\\)%s" command)
(format command title))
(t command))))
;; Document's body.
contents
;; Creator.
(and (plist-get info :with-creator)
(concat (plist-get info :creator) "\n"))
;; Document end.
"\\end{document}")))
2018-03-23 22:00:17 +00:00
(defun org-moderncv-timestamp-to-shortdate (date_str)
"Format orgmode timestamp DATE_STR into a short form date.
e.g. <2002-08-12 Mon> => Aug 2012"
2018-03-23 22:00:17 +00:00
(let* ((abbreviate 't)
(dte (org-parse-time-string date_str))
(month (nth 4 dte))
(year (nth 5 dte)));;'(02 07 2015)))
(concat (calendar-month-name month abbreviate)
" "
(number-to-string year))))
(defun org-moderncv--format-cventry (headline contents info)
"Format HEADLINE as as cventry.
CONTENTS holds the contents of the headline. INFO is a plist used
as a communication channel."
(let ((from-date (org-element-property :FROM headline))
(to-date (org-element-property :TO headline))
2018-03-23 23:37:41 +00:00
(title (org-export-data (org-element-property :title headline) info))
(employer (org-element-property :EMPLOYER headline))
(location (or (org-element-property :LOCATION headline) ""))
(note (or (org-element-property :NOTE headline) "")))
2018-03-24 00:42:38 +00:00
(format "\\cventry{\\textbf{%s}}{%s}{%s}{%s}{%s}{%s}\n"
(concat (org-moderncv-timestamp-to-shortdate from-date)
2018-03-23 22:00:17 +00:00
" -- "
(org-moderncv-timestamp-to-shortdate to-date))
2018-03-23 22:00:17 +00:00
title employer location note contents)))
;;;; Headline
(defun org-moderncv-headline (headline contents info)
"Transcode HEADLINE element into moderncv code.
CONTENTS is the contents of the headline. INFO is a plist used
as a communication channel."
(unless (org-element-property :footnote-section-p headline)
(let ((environment (let ((env (org-element-property :CV_ENV headline)))
(or (org-string-nw-p env) "block"))))
2018-03-23 22:06:31 +00:00
(cond
;; is a cv entry
((equal environment "cventry")
(org-moderncv--format-cventry headline contents info))
((org-export-with-backend 'latex headline contents info))))))
(provide 'ox-moderncv)
;;; ox-moderncv ends here