emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* CV, org-mode, and pdf
@ 2015-09-14 14:31 Dan Griswold
  2015-09-14 15:46 ` Eric S Fraga
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Griswold @ 2015-09-14 14:31 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2274 bytes --]

Dear org-mode community,

A year ago, there was a thread here, started by Rainer Krug,  on using
org-mode to produce nice looking CVs.

I had contributed once to that thread, offering a broken example of what I
do. Then I dropped out of sight.

Now I'm finally getting around to filling in the blanks, should anyone
still be interested.

There are two pieces to my solution: first, setting up org-mode with a new
latex class, "cv"; and then including certain lines at the top of the org
file that contains the CV.

Here's are some elisp commands that will effect the first step:

(require 'ox-latex)
(add-to-list 'org-latex-classes
             '("cv" "\\documentclass[10pt]{article}
\\usepackage[margin=.75in]{geometry}
\\usepackage[T1]{fontenc}
\\usepackage{sectsty}
\\sectionfont{\\normalsize\\fontfamily{phv}\\slshape}
\\renewcommand*\\oldstylenums[1]{{\\fontfamily{fxlj}\\selectfont #1}}"
               ("\\section{%s}" . "\\section*{%s}"))
             t)
(customize-variable 'org-latex-classes)

then save the customization.

And here's what I include at the top of my cv.org:

#+OPTIONS: author:nil timestamp:nil
#+TITLE:
#+DATE:
#+LaTeX_CLASS: cv

#+BEGIN_LATEX
\begin{flushleft}
  \bfseries\Large Curriculum Vitae\hfill Daniel M. Griswold\normalfont
\end{flushleft}

\vspace{-12pt}%
\begin{flushright}
  69 Stratton Road\\
  Rochester, NY 14610\\
  (585) xxx-xxxx\\
  dgriswol@xxxxx.com\\
  \hrulefill
\end{flushright}
#+END_LATEX

Within the org file, I use top level headings (single bullet) for major
sections, such as:

* Education

* Areas of Specialization

* Areas of Competence

* Employment History

* Publications

* Honors and Awards

and then within each of those sections I use unordered lists for the
relevant details, such as

* Education
  - Ph. D., Southern Methodist University, Dallas, Texas, 2010
  - M. Div., Union Theological Seminary in Virginia, Richmond, Virginia,
1991
  - A. B., Hope College, Holland, Michigan, 1986


With all this in place, I export to pdf and end up with something like the
attached pdf.

I really like managing my CV this way. It's very easy to keep track of
what's what and to move things around.

I hope this helps someone who is still looking for a way to manage CVs in
org.

Cheers,

Dan Griswold
Rochester, NY

[-- Attachment #1.2: Type: text/html, Size: 3050 bytes --]

[-- Attachment #2: cvdemo.pdf --]
[-- Type: application/pdf, Size: 17354 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-14 15:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-14 14:31 CV, org-mode, and pdf Dan Griswold
2015-09-14 15:46 ` Eric S Fraga

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).