tmpl(tex): include -> input to fix nesting issues
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-07-17 18:00:19 +02:00
parent 052b51f0df
commit edbd58ef17
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 5 additions and 2 deletions

@ -9,7 +9,8 @@
{{ range $i, $v := .AllPics.TexFiles }}
\section{Algo: {{ $v.Algo -}} }
{{- range $j, $u := $v.FilePaths }}
\include{ {{- $u -}} }
\input{ {{- $u -}} }
\newpage
{{- end }}
{{ end -}}

@ -10,8 +10,10 @@
\section{Per-algo benchmark comparison statistics}
{{ range $i, $v := .AllTables.TexFiles }}
{{- range $j, $u := $v.FilePaths }}
\include{ {{- $u -}} }
\input{ {{- $u -}} }
\newpage
{{- end -}}
{{ end }}
\newpage
% vim: ft=gotexttmpl.tex ts=2 sts=2 sw=2 bs=2 expandtab