mirror of https://github.com/eyhc1/rendercv.git
allow division of section contents
This commit is contained in:
parent
bbfdfd182d
commit
f5d8ef61f2
|
@ -95,7 +95,7 @@
|
||||||
parsep=<<theme_options.margins.highlights_area.vertical_between_bullet_points>>,
|
parsep=<<theme_options.margins.highlights_area.vertical_between_bullet_points>>,
|
||||||
partopsep=0pt,
|
partopsep=0pt,
|
||||||
itemsep=0pt,
|
itemsep=0pt,
|
||||||
after=\vspace*{-1\baselineskip},
|
after=\vspace{-1\baselineskip},
|
||||||
leftmargin=<<theme_options.margins.highlights_area.left>> + 3pt
|
leftmargin=<<theme_options.margins.highlights_area.left>> + 3pt
|
||||||
]
|
]
|
||||||
}{
|
}{
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
((* macro highlights(highlights) *))
|
((* macro highlights(highlights) *))
|
||||||
\vspace*{<<theme_options.margins.highlights_area.top>>}
|
\vspace{<<theme_options.margins.highlights_area.top>>}
|
||||||
((* for item in highlights *))
|
((* for item in highlights *))
|
||||||
((* if loop.first *))
|
((* if loop.first *))
|
||||||
\begin{highlights}
|
\begin{highlights}
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
((* else *))
|
((* else *))
|
||||||
((* set date_and_location_strings = value.date_and_location_strings_without_timespan *))
|
((* set date_and_location_strings = value.date_and_location_strings_without_timespan *))
|
||||||
((* endif *))
|
((* endif *))
|
||||||
|
((* if not loop.first *))
|
||||||
|
\vspace{<<theme_options.margins.entry_area.vertical_between>>}
|
||||||
|
((* endif *))
|
||||||
((* if entry_type == "EducationEntry" *))
|
((* if entry_type == "EducationEntry" *))
|
||||||
<<entry["education"](
|
<<entry["education"](
|
||||||
study_type=value.study_type,
|
study_type=value.study_type,
|
||||||
|
@ -47,9 +50,5 @@
|
||||||
doi_url=value.doi_url,
|
doi_url=value.doi_url,
|
||||||
)|indent(4)>>
|
)|indent(4)>>
|
||||||
((* endif *))
|
((* endif *))
|
||||||
((* if not loop.last *))
|
|
||||||
\vspace*{<<theme_options.margins.entry_area.vertical_between>>}
|
|
||||||
|
|
||||||
((* endif *))
|
|
||||||
((* endfor *))
|
((* endfor *))
|
||||||
((* endmacro *))
|
((* endmacro *))
|
||||||
|
|
Loading…
Reference in New Issue