#+TITLE: Org exporter for curriculum vitae #+AUTHOR: Óscar Nájera #+EMAIL: hello@oscarnajera.com #+HUGO_BASE_DIR: doc #+HUGO_SECTION: post #+HUGO_WEIGHT: auto * Goal: Export backend for CV :PROPERTIES: :EXPORT_FILE_NAME: goal :END: This project exports an org-mode file with reasonably structured items into a latex file, which compiles into a nice CV. In the same spirit the org-mode file may export to markdown so that it can be used for a web based CV. - Online documentation in [[https://titan-c.gitlab.io/org-cv/]] - Development happens in the gitlab repository: https://gitlab.com/Titan-C/org-cv - There is a mirror in github for backup: https://github.com/Titan-C/org-cv This project dog feeds itself and produces the examples on this documentation page directly. * Installation :PROPERTIES: :EXPORT_FILE_NAME: installation :END: This project is not on MELPA so you have to do a manual installation. First clone this git repository. #+BEGIN_SRC bash git clone https://gitlab.com/Titan-C/org-cv.git #+END_SRC There are various modules to perform the export. As of now =ox-moderncv=, =ox-altacv=, =ox-hugocv=. Choose any or all that you prefer for install. I use =use-package= to manage the installation for example of =ox-moderncv=. #+BEGIN_SRC emacs-lisp (use-package ox-moderncv :load-path "path_to_repository/org-cv/" :init (require 'ox-moderncv)) #+END_SRC * Basic Org file :PROPERTIES: :EXPORT_FILE_NAME: basic_config :END: The basic structure of an org file containing your CV is shown next. ** Personal contact information =TITLE=, =AUTHOR= and =EMAIL= are standard org options. But on =TITLE= you put your foreseen job. #+attr_html: :class table table-striped | Field | Description | |----------+----------------------------------------------------| | TITLE | Desired job | | AUTHOR | Who are you? | | EMAIL | Your contact email | | ADDRESS | Mailing address, this can span over multiple lines | | HOMEPAGE | URL of your website | | MOBILE | Mobile phone | | GITHUB | GitHub user | | GITLAB | GitLab user | | LINKEDIN | Linkedin username | | PHOTO | path to photo file | #+BEGIN_SRC org :tangle basic_cv.org ,#+TITLE: My dream job an ORG-CV example ,#+AUTHOR: John Doe ,#+email: john@doe.lost ,#+options: tags:nil ,#+ADDRESS: My Awesome crib ,#+ADDRESS: Fantastic city -- Planet Earth ,#+MOBILE: (+9) 87654321 ,#+HOMEPAGE: example.com ,#+GITHUB: Titan-C ,#+GITLAB: Titan-C ,#+LINKEDIN: oscar-najera ,#+PHOTO: smile.png #+END_SRC You can use org-modes hierarchical structure to describe your CV. To make a specific sub-tree an item describing an experience point (Job you have, degree you pursued, etc.) you use the org properties drawer and with the =:CV_ENV: cventry= property. You should also include the =FROM= and =TO= properties defining the span of the entry, as well as =LOCATION= and =EMPLOYER=. Because work isn't everything we do, it is more meaningful to label differently the host of those other events like studies, events, certifications, etc. Thus =HOST=, =ORGANIZATION=, =INSTITUTION=, =SCHOOL=, =EMPLOYER= or =EVENT= are all equivalent and the first match in that order has precedence. =DATE= is a shortcut for =FROM= and =TO= when you have a single date in mind instead of a range. Both =FROM= and =TO= override =DATE=. #+BEGIN_SRC org :tangle workcontent.org ,* Employement :cventries: ,** One job :cventry: :PROPERTIES: :CV_ENV: cventry :FROM: <2014-09-01> :TO: <2017-12-07> :LOCATION: a city, a country :EMPLOYER: The employer :END: I write about awesome stuff I do. ,** Other job :cventry: :PROPERTIES: :FROM: <2013-09-01> :TO: <2014-08-07> :LOCATION: my city, your country :EMPLOYER: The other employer :END: I write about awesome stuff I do. ,* Other stuff I do - I work a lot - I sleep a lot - I eat a lot #+END_SRC * Latex Exporter :PROPERTIES: :EXPORT_FILE_NAME: latex_export :END: ** Using modern-cv [[https://www.ctan.org/tex-archive/macros/latex/contrib/moderncv][moderncv]] is a standard \(\LaTeX\) package that you can find in many of your latex distributions. I maintain a fork of it, to work with my use case at https://github.com/Titan-C/moderncv.git Feel free to use any or even your personal fork for your desired use case. To configure the export for moderncv you need the additional options in your org file. #+BEGIN_SRC org :tangle moderncv.org # CV theme - options include: 'casual' (default), 'classic', 'oldstyle' and 'banking' ,#+CVSTYLE: banking # CV color - options include: 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black' ,#+CVCOLOR: green #+END_SRC # Next block is to generate exports #+BEGIN_SRC org :exports none :tangle moderncv.org #+include: basic_cv.org #+include: sideactivities.org #+include: workcontent.org #+END_SRC When exporting you can call the following function to get the latex file. #+BEGIN_SRC emacs-lisp (org-export-to-file 'moderncv "moderncv.tex") (org-latex-compile "moderncv.tex") #+END_SRC #+BEGIN_EXPORT md

Alternative text - include a link to the PDF!

#+END_EXPORT ** Using alta-cv [[https://github.com/liantze/AltaCV][AltaCV]] is another project to generate a CV, you will need to install it yourself. I maintain a fork too at https://github.com/Titan-C/AltaCV.git because I need extra features and I encourage to use this fork on the =sections= branch. The style of this CV is more involved and you need some configuration in your org file to get it to work. First define the margins, the large margin to the right is to allow for a second column. #+BEGIN_SRC org :tangle altacv.org ,#+LATEX_HEADER: \geometry{left=1cm,right=9cm,marginparwidth=6.8cm,marginparsep=1.2cm,top=1.25cm,bottom=1.25cm} #+END_SRC # Next block is to generate exports #+BEGIN_SRC org :exports none :tangle altacv.org #+include: basic_cv.org #+END_SRC Content on the right column has the same structure of a org file, but you need to enclose it in the =\marginpar{}= command as shown next. #+BEGIN_SRC org :tangle altacv.org ,#+latex: \marginpar{ #+END_SRC #+BEGIN_SRC org :tangle sideactivities.org ,* Main Interests - Free/Libre and Open Source Software (FLOSS) - Free food - Free beer ,* Programming - Python - C/C++ - EmacsLisp - Bash - JavaScript - PHP ,* Languages - *English* Fluent - *German* Fluent - *Spanish* Native - *French* Intermediate #+END_SRC # Next block is to generate exports #+BEGIN_SRC org :exports none :tangle altacv.org #+include: sideactivities.org #+END_SRC #+BEGIN_SRC org :tangle altacv.org ,#+latex: } #+END_SRC # Next block is to generate exports #+BEGIN_SRC org :exports none :tangle altacv.org #+include: workcontent.org #+END_SRC When exporting you can call the following function to get the latex file. #+BEGIN_SRC emacs-lisp (org-export-to-file 'altacv "altacv.tex") (org-latex-compile "altacv.tex") #+END_SRC #+BEGIN_EXPORT md

Alternative text - include a link to the PDF!

#+END_EXPORT ** Using AwesomeCV [[https://github.com/posquit0/Awesome-CV][AwesomeCV]] is another LaTeX template for producing nice-looking CVs and cover letters. This style also supports some additional options. For example: #+BEGIN_SRC org :tangle awesomecv.org # CV color - options include: 'awesome-red (default), 'awesome-emerald, # 'awesome-skyblue', 'awesome-pink', 'awesome-orange', 'awesome-nephritis', # 'awesome-concrete' and 'awesome-darknight', plus any standard color names. ,#+CVCOLOR: awesome-red # Specify the position and style of the photo ,#+PHOTOSTYLE: right,noedge #+END_SRC # Next block is to generate exports #+BEGIN_SRC org :exports none :tangle awesomecv.org #+include: basic_cv.org #+include: sideactivities.org #+include: workcontent.org #+END_SRC When exporting you can call the following function to get the latex file. #+BEGIN_SRC emacs-lisp (org-export-to-file 'awesomecv "awesomecv.tex") (org-latex-compile "awesomecv.tex") #+END_SRC Note that AwesomeCV uses the =fontspec= package, so you need to set =org-latex-compiler= to =lualatex= or =xelatex= for it to work. In addition to the regular document attributes, the following are supported: #+attr_html: :class table table-striped | Field | Description | |-----------------+-------------------------------------------------------------| | PHOTOSTYLE | Style of photo to use. Comma-separated values can include | | | circle/rectangle,edge/noedge,left/right. | | CVCOLOR | Color of highlights. | | STACKOVERFLOW | Stack overflow info, must be specified as "=ID username=" | | FONTDIR | Directory where the fonts can be found, defaults | | | to =fonts/= (as in the standard AwesomeCV) | | CVHIGHLIGHTS | Whether to colorize highlights. Defaults to true | | QUOTE | Optional quote to include at the top of the CV | | FIRSTNAME | First name to be shown in the CV. By default the first | | | space-separated part of AUTHOR is used. | | LASTNAME | Last name to be shown in the CV. By default the second | | | space-separated part of AUTHOR is used. | | CVFOOTER_LEFT | Text to include in the left footer. None by default | | CVFOOTER_MIDDLE | Text to include in the middle footer. None by default. | | CVFOOTER_RIGHT | Text to include in the right footer. None by default. | | LATEX_TITLE | Text to use as the title section. \makecvheader by default. | | | (Can specify \makecvheader[R] to justify to the right) | *** CV environments AwesomeCV supports a few additional types of environment types in =CV_ENV=, including =cvemployer=, =cvskills=, =cvhonors= and =cvschool= (see full list below). Some of these support additional property fields: #+attr_html: :class table table-striped | Field | Description | |-----------+----------------------------------------------------------------------| | FROM | Start date of the entry | | TO | End date of the entry | | DATE | Shortcut to specify both =FROM= and =TO= as the same date. | | | Both =FROM= and =TO= override =DATE=. | | EMPLOYER | Employer or organization, can also be specified | | | as =ORGANIZATION=, =SCHOOL=, =EVENT= or =POSITION= (different | | | names make more sense depending on the type of environment) | | LABEL | In =cvsubentry= environments, adds the given text to the left | | | of the date range, can be used to add additional information | | | to the entry. | | RIGHT_IMG | path to an image to include floating to the right of a =cventry=, | | | a =cvsubentry= or =cvschool= entry. Meant to be used to show a logo. | | PAGEBREAK | Causes a LaTeX =\clearpage= statement to be inserted in the | | | exported output before the heading. | All the supported values of =CV_ENV= for CVs are described below. **** =cventries= Enclose all the subheaders in a =cventries= environment. Subheaders can be of type =cventry=, =cvschool=, or =cvemployer=. **** =cvhonors= Enclose all the subheaders in a =cvhonors= environment. Subheaders must be of type =cvhonor= **** =cventry= Converts to a =\cventry= command. Supports attributes =FROM=, =TO=, =DATE=, =EMPLOYER=, =LOCATION=, =RIGHT_IMG=. **** =cvsubentry= Converts to a =\cvsubentry= command. Supports attributes =FROM=, =TO=, =DATE=, =LABEL= =RIGHT_IMG=. **** =cvemployer= Converts to a =\cventry= with only the title line. Supports attributes =FROM=, =TO=, =DATE= and =LOCATION=. **** =cvschool= Converts to a =\cventry=. The headline should contain the degree obtained, shown as the main title. Supports attributes =LOCATION=, =SCHOOL=, =FROM=, =TO=, =DATE= and =RIGHT_IMG=. **** =cvhonor= Converts to a =\cvhonor= command (must be inside a =cvhonors= headline). Supports attributes =LOCATION=, =EMPLOYER= (in this case =EVENT= or =POSITION= might be more semantically accurate, and can also be used), =FROM=, =TO=, =DATE=. **** =cvskills= Converts to a =\cvskills= environment. The headline must contain a [[https://orgmode.org/manual/Plain-lists.html][description list]], which gets converted into a sequence of =\cvskill= commands, with the term as the skill title and the description as its contents. #+BEGIN_EXPORT md

Alternative text - include a link to the PDF!

#+END_EXPORT *** Cover letter environments AwesomeCV also supports generating cover letters. For this, =CV_ENV= can have a few additional values, shown below. **** =letterheader= This environment provides heading/signature information for a cover letter. Supports attributes =RECIPIENT=. =EMPLOYER=, =LOCATION=, =LETTER_OPENING=, =LETTER_CLOSING=, =LETTER_ATTACHED=, =DATE=, =DATEFORMAT=. Note that the text within the heading is not exported! You can use this, for example, to keep notes about your application or the employer. For example: #+BEGIN_SRC org :exports none :tangle awesome-letter.org #+include: basic_cv.org #+END_SRC #+begin_src org :tangle awesome-letter.org ,* Recipient :PROPERTIES: :CV_ENV: letterheader :RECIPIENT: International Recruiting team :EMPLOYER: Employer Co. :LOCATION: Someplace, the world :LETTER_OPENING: Dear International Recruiting team :LETTER_CLOSING: Kind regards, :LETTER_ATTACHED: Curriculum Vitae :END: Title and content are not exported. Add any notes about the recipient here They will *not* be exported. #+end_src #+attr_html: :class table table-striped | Field | Description | |-----------------+-----------------------------------------------------------------------------------| | RECIPIENT | Addressee E.g. Company Recruitment Team | | EMPLOYER | Company name | | LOCATION | Company address | | LETTER_OPENING | Letter opening, E.g. Dear Ms./Mr./Dr. LastName | | LETTER_CLOSING | Letter closing, E.g. Yours Sincerely, | | DATE | The date used for the letter, uses \\today as default if unspecified | | DATEFORMAT | Specify an alternative date format for the letter header | | | E.g. %e %M %Y might provide 19 March 2021 | | LETTER_ATTACHED | Attachments to the letter, will be listed at the bottom. E.g. "Curriculum Vitae" | **** =cvletter= Converts to a =\cvletter= environment. This holds the content of a cover letter. The body can be subdivided using =lettersection= headings. The heading title is converted to a title line at the top of the letter. #+begin_src org :tangle awesome-letter.org ,* Application for the position of /Awesome Job/ (job reference #123456) :PROPERTIES: :CV_ENV: cvletter :END: ,** About Me :PROPERTIES: :CV_ENV: lettersection :END: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ullamcorper neque sit amet lectus facilisis sed luctus nisl iaculis. Vivamus at neque arcu, sed tempor quam. Curabitur pharetra tincidunt tincidunt. Morbi volutpat feugiat mauris, quis tempor neque vehicula volutpat. Duis tristique justo vel massa fermentum accumsan. Mauris ante elit, feugiat vestibulum tempor eget, eleifend ac ipsum. Donec scelerisque lobortis ipsum eu vestibulum. Pellentesque vel massa at felis accumsan rhoncus. ,** Why Employer Co.? :PROPERTIES: :CV_ENV: lettersection :END: Suspendisse commodo, massa eu congue tincidunt, elit mauris pellentesque orci, cursus tempor odio nisl euismod augue. Aliquam adipiscing nibh ut odio sodales et pulvinar tortor laoreet. Mauris a accumsan ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse vulputate sem vehicula ipsum varius nec tempus dui dapibus. Phasellus et est urna, ut auctor erat. Sed tincidunt odio id odio aliquam mattis. Donec sapien nulla, feugiat eget adipiscing sit amet, lacinia ut dolor. Phasellus tincidunt, leo a fringilla consectetur, felis diam aliquam urna, vitae aliquet lectus orci nec velit. Vivamus dapibus varius blandit. ,** Why me? :PROPERTIES: :CV_ENV: lettersection :END: Duis sit amet magna ante, at sodales diam. Aenean consectetur porta risus et sagittis. Ut interdum, enim varius pellentesque tincidunt, magna libero sodales tortor, ut fermentum nunc metus a ante. Vivamus odio leo, tincidunt eu luctus ut, sollicitudin sit amet metus. Nunc sed orci lectus. Ut sodales magna sed velit volutpat sit amet pulvinar diam venenatis. #+end_src **** =cvletter_notitle= Same as =cvletter=, but does not include a letter title at the top. **** =lettersection= Converts to a =\lettersection= command. These are the headline portions of a cover letter. #+BEGIN_EXPORT md

Alternative text - include a link to the PDF!

#+END_EXPORT * Markdown Hugo Exporter :PROPERTIES: :EXPORT_FILE_NAME: hugo_export :END: If your target is not a PDF file but a website, this exporter extends the [[https://ox-hugo.scripter.co/][ox-hugo]] exporter backend. So be sure to install that too. To export, there is nothing fancy to keep track of, but as an example I exclude some tags during export. #+BEGIN_SRC emacs-lisp (let ((org-export-exclude-tags '("noexport" "latexonly"))) (org-export-to-file 'hugocv "hugocv.md")) #+END_SRC You are responsible for styling your website. Use all the CSS magic you know. Each entry is inside a =div= container and each element of the properties has its own class. Make sure that your hugo config has the markup parser attributes active and allows for html rendering. #+begin_src yaml markup: goldmark: renderer: unsafe: true parser: attribute: title: true block: true #+end_src # Next block is to generate exports #+BEGIN_SRC org :exports none :tangle hugocv.org ,#+hugo_custom_front_matter: :weight 1006 ,#+include: basic_cv.org ,#+include: workcontent.org # (org-export-to-file 'hugocv "doc/content/post/cv.md") #+END_SRC You can also use an awards section for a different styling. Here you tag each entry with =cvhonor=. #+BEGIN_SRC org :tangle hugocv.org ,* Awards ,** First place :cvhonor: :PROPERTIES: :CV_ENV: cventry :DATE: <2014-09-01> :LOCATION: a city, a country :EVENT: The RACE :END: ,** Sport Scholarship :cvhonor: :PROPERTIES: :DATE: <2013-09-01> :LOCATION: my city, your country :ORGANIZATION: The nice millionaire :END: #+END_SRC Next is the rendered result for the special entries with styling. * CV :PROPERTIES: :EXPORT_FILE_NAME: cv :END: Place holder stuff * License :PROPERTIES: :EXPORT_FILE_NAME: license :END: #+begin_quote org-cv Copyright (C) 2018-2023 Óscar Nájera 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 of the License, 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. #+end_quote * Tips :PROPERTIES: :EXPORT_FILE_NAME: tips :END: If you have found this project useful. Please consider giving back. You can kindly tip me for this project - Stellar :: GDPTOFND6HSE5AVHPRXOCJFOA6NPFB65JAEWKTN23EBUGBB2AU4PLIBD - liberapay :: [[https://liberapay.com/Titan-C/][Titan-C]] #+BEGIN_EXPORT md
#+END_EXPORT * Local Variables :ARCHIVE: # Local Variables: # eval: (add-hook 'after-save-hook #'org-hugo-export-wim-to-md-after-save :append :local) # End: