allow division of section contents

This commit is contained in:
Sina Atalay 2023-11-19 20:23:24 +01:00
parent bbfdfd182d
commit f5d8ef61f2
3 changed files with 5 additions and 6 deletions

View File

@ -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
] ]
}{ }{

View File

@ -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}

View File

@ -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 *))