mirror of https://github.com/eyhc1/rendercv.git
add header_font_size option
This commit is contained in:
parent
b9fa3692d7
commit
d2d7de01af
|
@ -517,6 +517,12 @@ class ClassicThemeOptions(BaseModel):
|
|||
),
|
||||
)
|
||||
|
||||
header_font_size: LaTeXDimension = Field(
|
||||
default="30 pt",
|
||||
title="Header Font Size",
|
||||
description="The font size of the header (the name of the person).",
|
||||
)
|
||||
|
||||
margins: ClassicThemeMargins = Field(
|
||||
default=ClassicThemeMargins(),
|
||||
title="Margins",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
((* import "components/header_connections.tex.j2" as print_connections *))
|
||||
((* macro header(name, connections) *))
|
||||
\begin{header}
|
||||
\Huge
|
||||
\fontsize{<<theme_options.header_font_size>>}{<<theme_options.header_font_size>>}
|
||||
\textbf{<<name>>}
|
||||
|
||||
\vspace{<<theme_options.margins.header.vertical_between_name_and_connections>>}
|
||||
|
|
|
@ -192,6 +192,13 @@
|
|||
"title": "Show Last Updated Date",
|
||||
"type": "boolean"
|
||||
},
|
||||
"header_font_size": {
|
||||
"default": "30 pt",
|
||||
"description": "The font size of the header (the name of the person).",
|
||||
"pattern": "\\d+\\.?\\d* *(cm|in|pt|mm|ex|em)",
|
||||
"title": "Header Font Size",
|
||||
"type": "string"
|
||||
},
|
||||
"margins": {
|
||||
"allOf": [
|
||||
{
|
||||
|
@ -1600,6 +1607,7 @@
|
|||
"font_size": "10pt",
|
||||
"options": {
|
||||
"date_and_location_width": "4.1 cm",
|
||||
"header_font_size": "30 pt",
|
||||
"margins": {
|
||||
"entry_area": {
|
||||
"left_and_right": "0.2 cm",
|
||||
|
|
|
@ -109,7 +109,7 @@
|
|||
\LenToUnit{\paperwidth-1.35 cm-0.2 cm+0.05cm},
|
||||
\LenToUnit{\paperheight-0.675 cm}
|
||||
){\vtop{{\null}\makebox[0pt][c]{
|
||||
\small\color{gray}\textit{Last updated on November 22, 2023}\hspace{\widthof{Last updated on November 22, 2023}}
|
||||
\small\color{gray}\textit{Last updated on REPLACETHISWITHTODAY}\hspace{\widthof{Last updated on REPLACETHISWITHTODAY}}
|
||||
}}}%
|
||||
}%
|
||||
}%
|
||||
|
@ -123,7 +123,7 @@
|
|||
\placelastupdatedtext
|
||||
|
||||
\begin{header}
|
||||
\Huge
|
||||
\fontsize{30 pt}{30 pt}
|
||||
\textbf{John Doe}
|
||||
|
||||
\vspace{0.2 cm}
|
||||
|
|
Loading…
Reference in New Issue