From 57b73fa7522fda9c2670c270f8fecaa7491c0bfb Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Sun, 31 Jul 2016 09:03:49 +1100 Subject: Updated README with new Macro description --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 74bfcfd..2da5397 100755 --- a/README.md +++ b/README.md @@ -21,6 +21,36 @@ I have also created little Latex macros to make easier and cleaner Latex source \smartphone{+687 000 000} \email{mail@dummy-mail.com} ``` + +```latex + \experience + {End date} {Experience title}{Enterprise}{Country} + {Begin date} { + experience details + \begin{itemize} + \item Item 1: _Item 1 description_ + \item Item 2: _Item 2 description_ + \item Item 3: _Item 3 description_ + \end{itemize} + } + {Technology highlights} +``` + +```latex + \consultantexperience + {End date} {Experience title}{Enterprise}{Country} + {Begin date} {Client job title}{Clent enterprise} + { + experience details + \begin{itemize} + \item Item 1: _Item 1 description_ + \item Item 2: _Item 2 description_ + \item Item 3: _Item 3 description_ + \end{itemize} + } + {Technology highlights} +``` + Another macro has been set to perform conditional include. You have to put \demotrue or \demofalse once in your file to use \conditionalinput macro ```latex -- cgit v1.2.3 From 0a1a75297715c9333b0edd239b4e14a3a0393b1f Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Sun, 31 Jul 2016 20:49:41 +1100 Subject: Updated README.MD --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2da5397..6d5aaf2 100755 --- a/README.md +++ b/README.md @@ -23,6 +23,10 @@ I have also created little Latex macros to make easier and cleaner Latex source ``` ```latex +% Begin a new experiences environment to use experience and consultantexperience macro +\begin{experiences} + +% The experience macro work as below and can be used to describe a job experience \experience {End date} {Experience title}{Enterprise}{Country} {Begin date} { @@ -34,12 +38,14 @@ I have also created little Latex macros to make easier and cleaner Latex source \end{itemize} } {Technology highlights} -``` -```latex - \consultantexperience - {End date} {Experience title}{Enterprise}{Country} - {Begin date} {Client job title}{Clent enterprise} +% The emptyseparator macro is used to create white space in your experience + \emptySeparator + +% The consultantexperience macro is very similar to the experience macro, but offer you the possibility tu put client details + \consultantexperience + {End date} {Experience title}{Enterprise}{Country} + {Begin date} {Client job title}{Clent enterprise} { experience details \begin{itemize} @@ -49,6 +55,7 @@ I have also created little Latex macros to make easier and cleaner Latex source \end{itemize} } {Technology highlights} +\end{experiences} ``` Another macro has been set to perform conditional include. You have to put \demotrue or \demofalse once in your file to use \conditionalinput macro -- cgit v1.2.3