mirror of https://github.com/eyhc1/rendercv.git
support markdown_to_latex in more areas
This commit is contained in:
parent
f5a98da511
commit
4d71e72ee6
|
@ -11,7 +11,7 @@
|
|||
\begin{tabularx}{\textwidth-<<theme_options.margins.entry_area.left_and_right|divide_length_by(0.5)>>-0.13cm}{L{0.85cm} K{<<theme_options.margins.entry_area.left_and_right>>} R{<<theme_options.date_and_location_width>>}}
|
||||
\textbf{<<study_type if study_type is not none>>}
|
||||
&
|
||||
\textbf{<<institution>>}, <<area>>
|
||||
\textbf{<<institution|markdown_to_latex>>}, <<area|markdown_to_latex>>
|
||||
<<print_higlights(highlights)|indent(4)->>
|
||||
&
|
||||
<<print_date_and_locations(date_and_location_strings)|indent(4)->>
|
||||
|
@ -25,7 +25,7 @@
|
|||
((# first column:: K{<<theme_options.margins.entry_area.left_and_right>>}; variable width, justified column #))
|
||||
((# second column: R{<<theme_options.date_and_location_width>>}; constant width ragged right column #))
|
||||
\begin{tabularx}{\textwidth-<<theme_options.margins.entry_area.left_and_right|divide_length_by(0.5)>>-0.13cm}{K{<<theme_options.margins.entry_area.left_and_right>>} R{<<theme_options.date_and_location_width>>}}
|
||||
\textbf{<<company>>}, <<position>>
|
||||
\textbf{<<company|markdown_to_latex>>}, <<position|markdown_to_latex>>
|
||||
<<print_higlights(highlights)|indent(4)->>
|
||||
&
|
||||
<<print_date_and_locations(date_and_location_strings)|indent(4)->>
|
||||
|
@ -43,12 +43,12 @@
|
|||
((* if markdown_url is not none *))
|
||||
((* if link_text is not none *))
|
||||
((* set markdown_url = "["+link_text+"]("+ markdown_url|markdown_link_to_url +")" *))
|
||||
\textbf{<<name>>}, <<markdown_url|markdown_to_latex>>
|
||||
\textbf{<<name|markdown_to_latex>>}, <<markdown_url|markdown_to_latex>>
|
||||
((* else *))
|
||||
\textbf{<<name>>}, <<markdown_url|markdown_to_latex>>
|
||||
\textbf{<<name|markdown_to_latex>>}, <<markdown_url|markdown_to_latex>>
|
||||
((* endif *))
|
||||
((* else *))
|
||||
\textbf{<<name>>}
|
||||
\textbf{<<name|markdown_to_latex>>}
|
||||
((* endif *))
|
||||
<<print_higlights(highlights)|indent(4)->>
|
||||
\end{tabularx}
|
||||
|
@ -57,12 +57,12 @@
|
|||
((* if markdown_url is not none *))
|
||||
((* if link_text is not none *))
|
||||
((* set markdown_url = "["+link_text+"]("+ markdown_url|markdown_link_to_url +")" *))
|
||||
\textbf{<<name>>}, <<markdown_url|markdown_to_latex>>
|
||||
\textbf{<<name|markdown_to_latex>>}, <<markdown_url|markdown_to_latex>>
|
||||
((* else *))
|
||||
\textbf{<<name>>}, <<markdown_url|markdown_to_latex>>
|
||||
\textbf{<<name|markdown_to_latex>>}, <<markdown_url|markdown_to_latex>>
|
||||
((* endif *))
|
||||
((* else *))
|
||||
\textbf{<<name>>}
|
||||
\textbf{<<name|markdown_to_latex>>}
|
||||
((* endif *))
|
||||
<<print_higlights(highlights)|indent(4)->>
|
||||
&
|
||||
|
@ -102,12 +102,12 @@
|
|||
((* if markdown_url is not none *))
|
||||
((* if link_text is not none *))
|
||||
((* set markdown_url = "["+link_text+"]("+ markdown_url|markdown_link_to_url +")" *))
|
||||
\textbf{<<name>>:} <<details>> (<<markdown_url|markdown_to_latex>>)
|
||||
\textbf{<<name|markdown_to_latex>>:} <<details|markdown_to_latex>> (<<markdown_url|markdown_to_latex>>)
|
||||
((* else *))
|
||||
\textbf{<<name>>:} <<details>> (<<markdown_url|markdown_to_latex>>)
|
||||
\textbf{<<name|markdown_to_latex>>:} <<details|markdown_to_latex>> (<<markdown_url|markdown_to_latex>>)
|
||||
((* endif *))
|
||||
((* else *))
|
||||
\textbf{<<name>>:} <<details>>
|
||||
\textbf{<<name|markdown_to_latex>>:} <<details|markdown_to_latex>>
|
||||
((* endif *))
|
||||
|
||||
\par\endgroup
|
||||
|
|
Loading…
Reference in New Issue