mirror of
https://gitlab.com/Titan-C/org-cv.git
synced 2024-11-14 18:48:30 +00:00
styling blocks
This commit is contained in:
parent
b9e720a0be
commit
3a11122b4d
1 changed files with 13 additions and 10 deletions
23
readme.org
23
readme.org
|
@ -34,7 +34,7 @@ use =use-package= to manage my installed packages like this.
|
||||||
|
|
||||||
* Basic Org file
|
* Basic Org file
|
||||||
The basic structure of an org file containing your CV is shown next.
|
The basic structure of an org file containing your CV is shown next.
|
||||||
#+BEGIN_SRC text :tangle basic_cv.org
|
#+BEGIN_SRC org :tangle basic_cv.org
|
||||||
,#+TITLE: My dream job
|
,#+TITLE: My dream job
|
||||||
,#+AUTHOR: John Doe
|
,#+AUTHOR: John Doe
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@ The basic structure of an org file containing your CV is shown next.
|
||||||
:EMPLOYER: The employer
|
:EMPLOYER: The employer
|
||||||
:END:
|
:END:
|
||||||
I write about awesome stuff I do.
|
I write about awesome stuff I do.
|
||||||
|
|
||||||
,* Other stuff I do
|
,* Other stuff I do
|
||||||
- I work a lot
|
- I work a lot
|
||||||
- I sleep a lot
|
- I sleep a lot
|
||||||
|
@ -81,7 +82,7 @@ org file.
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
When exporting you can call the following function to get the latex file.
|
When exporting you can call the following function to get the latex file.
|
||||||
#+BEGIN_SRC emacs-lisp :exports none
|
#+BEGIN_SRC emacs-lisp
|
||||||
(org-export-to-file 'moderncv "moderncv.tex")
|
(org-export-to-file 'moderncv "moderncv.tex")
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
@ -100,20 +101,21 @@ sections branch.
|
||||||
The style of this CV is more involved and you need some configuration in
|
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
|
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.
|
to the right is to allow for a second column.
|
||||||
#+BEGIN_SRC text
|
#+BEGIN_SRC org
|
||||||
#+LATEX_HEADER: \geometry{left=1cm,right=9cm,marginparwidth=6.8cm,marginparsep=1.2cm,top=1.25cm,bottom=1.25cm}
|
,#+LATEX_HEADER: \geometry{left=1cm,right=9cm,marginparwidth=6.8cm,marginparsep=1.2cm,top=1.25cm,bottom=1.25cm}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
Content on the right column has the same structure of a org file, but you
|
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.
|
need to enclose it in the =\marginpar{}= command as shown next.
|
||||||
#+BEGIN_SRC text
|
|
||||||
#+latex: \marginpar{
|
|
||||||
|
|
||||||
* Main Interests
|
#+BEGIN_SRC org
|
||||||
|
,#+latex: \marginpar{
|
||||||
|
|
||||||
|
,* Main Interests
|
||||||
- Free/Libre and Open Source Software (FLOSS)
|
- Free/Libre and Open Source Software (FLOSS)
|
||||||
- Free food
|
- Free food
|
||||||
- Free beer
|
- Free beer
|
||||||
|
|
||||||
* Programming Languages
|
,* Programming Languages
|
||||||
- Python
|
- Python
|
||||||
- C/C++
|
- C/C++
|
||||||
- EmacsLisp
|
- EmacsLisp
|
||||||
|
@ -121,15 +123,16 @@ need to enclose it in the =\marginpar{}= command as shown next.
|
||||||
- JavaScript
|
- JavaScript
|
||||||
- PHP
|
- PHP
|
||||||
|
|
||||||
* Languages
|
,* Languages
|
||||||
|
|
||||||
- *English* Fluent
|
- *English* Fluent
|
||||||
- *German* Fluent
|
- *German* Fluent
|
||||||
- *Spanish* Native
|
- *Spanish* Native
|
||||||
- *French* Intermediate
|
- *French* Intermediate
|
||||||
|
|
||||||
#+latex: }
|
,#+latex: }
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Update readme
|
* Update readme
|
||||||
** TODO examples [0/2]
|
** TODO examples [0/2]
|
||||||
*** TODO pictures
|
*** TODO pictures
|
||||||
|
|
Loading…
Reference in a new issue