diff options
Diffstat (limited to 'README.md')
-rwxr-xr-x | README.md | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -10,7 +10,8 @@ More informations can be found here In my version, Personal data have moved on top of the page just before the professional title. -I have also created little macros have been created to make easier and cleaner Latex source code +I have also created little Latex macros to make easier and cleaner Latex source code + ```TeX \user{firstname}{LASTNAME} \linkedin{{link}{Link Description}} @@ -19,3 +20,15 @@ I have also created little macros have been created to make easier and cleaner L \smartphone{+687 000 000} \email{mail@dummy-mail.com} ``` + +Another macro has been set to perform conditional include. You have to put \demotrue or \demofalse once in your file to use \conditionalinput macro + +```TeX +%These two lines will include section_references_demo +\demotrue +\conditionalinput{section_references_demo}{references} + +%These two lines will include references +\demotrue +\conditionalinput{section_references_demo}{references} +``` |