1
0
Fork 1
mirror of https://gitlab.com/Titan-C/org-cv.git synced 2025-04-18 02:59:28 +00:00

[moderncv] NOTE property documentation and example

Closes 
This commit is contained in:
Oscar Najera 2025-01-17 06:45:01 +01:00 committed by Louis Vigneras
parent 56a53c3c1a
commit 4ee8ebdb35
3 changed files with 10 additions and 1 deletions

View file

@ -47,7 +47,7 @@ put your foreseen job.
```
You can use org-modes hierarchical structure to describe your CV. To make a
specific subtree an item describing an experience point (Job you have, degree
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`.
@ -69,6 +69,7 @@ instead of a range. Both `FROM` and `TO` override `DATE`.
:TO: <2017-12-07>
:LOCATION: a city, a country
:EMPLOYER: The employer
:NOTE: Extra note: everybody here loved me
:END:
I write about awesome stuff I do.

View file

@ -22,6 +22,9 @@ org file.
#+CVCOLOR: green
```
Additionally in the org property drawers for a `cventry` you can use the `NOTE`
property for additional information on the entry.
When exporting you can call the following function to get the latex file.
```emacs-lisp

View file

@ -104,6 +104,7 @@ instead of a range. Both =FROM= and =TO= override =DATE=.
:TO: <2017-12-07>
:LOCATION: a city, a country
:EMPLOYER: The employer
:NOTE: Extra note: everybody here loved me
:END:
I write about awesome stuff I do.
@ -154,6 +155,10 @@ org file.
#+include: sideactivities.org
#+include: workcontent.org
#+END_SRC
Additionally in the org property drawers for a =cventry= you can use the =NOTE=
property for additional information on the entry.
When exporting you can call the following function to get the latex file.
#+BEGIN_SRC emacs-lisp
(org-export-to-file 'moderncv "moderncv.tex")