diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-05-24 17:36:08 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-05-24 17:36:08 +0100 |
commit | 80b5876ac8ce0322e0a5d821e51a1ce07fc95316 (patch) | |
tree | 187c2d53044276c85c87649117c4d3e5db02985f /Smarker/templates/tex.jinja2 | |
parent | f2f734194c03dfff2024cf417c502515ddb7a855 (diff) | |
download | Smarker-80b5876ac8ce0322e0a5d821e51a1ce07fc95316.tar.gz Smarker-80b5876ac8ce0322e0a5d821e51a1ce07fc95316.zip |
Fixed bug in tex template, added alternative similarity metric, updated docs
Diffstat (limited to 'Smarker/templates/tex.jinja2')
-rw-r--r-- | Smarker/templates/tex.jinja2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Smarker/templates/tex.jinja2 b/Smarker/templates/tex.jinja2 index 5985875..f4fac5b 100644 --- a/Smarker/templates/tex.jinja2 +++ b/Smarker/templates/tex.jinja2 @@ -203,6 +203,7 @@ breaklines=true \subsubsection{Runtime Analysis}
((* set flat_runtime = flatten_struct(files_contents["run"]) *))
+ ((* if len_(flat_runtime) > 0 *))
\begin{itemize}
((* for cmd, runtime_contents in flat_runtime.items() *))
\item Command: \texttt{((( tex_escape(cmd) )))}
@@ -231,6 +232,7 @@ breaklines=true ((*- endfor -*))
((* endfor *))
\end{itemize}
+ ((* endif *))
((* endif *))
((* else *))
|