@@ -162,7 +162,7 @@ def value(self) -> MM:
162
162
163
163
def latex (self ) -> str :
164
164
"""Returns the lateX string representation for Nominal concrete cover check."""
165
- return r"\newline " .join (
165
+ return r"\newline~ " .join (
166
166
[
167
167
f"Nominal concrete cover according to art. 4.4.1 from NEN-EN 1992-1-1{ self .constants .CODE_SUFFIX } :" ,
168
168
latex_max_curly_brackets (
@@ -172,21 +172,24 @@ def latex(self) -> str:
172
172
f"= { latex_max_curly_brackets (self .c_nom ().latex ().result , self .minimum_cover_with_regard_to_casting_surface ())} = { self .value ()} mm" ,
173
173
"" ,
174
174
"Where:" ,
175
- f"{ self .c_nom ().latex ().return_symbol } = { self .c_nom ().latex ().equation .replace ('min' , 'min,total' )} "
175
+ f"\\ hspace{{4ex}} { self .c_nom ().latex ().return_symbol } = { self .c_nom ().latex ().equation .replace ('min' , 'min,total' )} "
176
176
f" = { self .c_nom ().latex ().numeric_equation } = { self .c_nom ().latex ().result } mm" ,
177
- r"\Delta c_{dev} is determined according to art. 4.4.1.3 (1)" ,
178
- r"c_{min,total} = c_{min} + \Delta c_{uneven surface} + \Delta c_{abrasion class}"
177
+ r"\hspace{4ex}\ Delta c_{dev} is determined according to art. 4.4.1.3 (1)" ,
178
+ r"\hspace{4ex} c_{min,total} = c_{min} + \Delta c_{uneven surface} + \Delta c_{abrasion class}"
179
179
f" = { self .c_min ().latex ().result } + { self .cover_increase_for_uneven_surface ()} + { self .cover_increase_for_abrasion_class ()} "
180
180
f" = { self .c_min_total ()} mm" ,
181
- r"\Delta c_{uneven surface} and \Delta c_{abrasion class} are determined according to art. 4.4.1.2 (11) and (13)" ,
182
- f"{ self .c_min ().latex ().return_symbol } = { self .c_min ().latex ().equation } "
181
+ r"\hspace{4ex}\ Delta c_{uneven surface} and \Delta c_{abrasion class} are determined according to art. 4.4.1.2 (11) and (13)" ,
182
+ f"\\ hspace{{4ex}} { self .c_min ().latex ().return_symbol } = { self .c_min ().latex ().equation } "
183
183
f" = { self .c_min ().latex ().numeric_equation } = { self .c_min ().latex ().result } mm" ,
184
- r"\Delta c_{dur,\gamma} , \Delta c_{dur,st} and \Delta c_{dur,add} are determined according to art. 4.4.1.2 (6), (7) and (8)" ,
185
- f"{ self .c_min_b ().latex ().return_symbol } is determined according to table 4.2 based on { self .c_min_b ().latex ().equation } "
184
+ r"\hspace{4ex}\Delta c_{dur,\gamma} , \Delta c_{dur,st} and \Delta c_{dur,add} "
185
+ r"are determined according to art. 4.4.1.2 (6), (7) and (8)" ,
186
+ f"\\ hspace{{4ex}}{ self .c_min_b ().latex ().return_symbol } is determined according to "
187
+ f"table 4.2 based on { self .c_min_b ().latex ().equation } "
186
188
f" = { self .c_min_b ().latex ().numeric_equation } = { self .c_min_b ().latex ().result } mm" ,
187
- f"{ self .c_min_dur ().latex ().return_symbol } is determined according to table 4.3 based on { self .c_min_dur ().latex ().equation } "
189
+ f"\\ hspace{{4ex}}{ self .c_min_dur ().latex ().return_symbol } is determined according to "
190
+ f"table 4.4 based on { self .c_min_dur ().latex ().equation } "
188
191
f" = { self .c_min_dur ().latex ().result } mm" ,
189
- " Minimum cover with regard to casting surface according to art. 4.4.1.3 (4) = "
192
+ r"\hspace{4ex} Minimum cover with regard to casting surface according to art. 4.4.1.3 (4) = "
190
193
+ self .constants .minimum_cover_with_regard_to_casting_surface_latex (self .casting_surface ),
191
194
]
192
195
).replace (" " , "~" )
0 commit comments