From 148a3b831a299c23166cde6ee58b27e11a594bd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Tue, 3 Sep 2024 12:57:22 +0200 Subject: [PATCH] Add missing \ to results.tex --- src/best/BestResultsTex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/best/BestResultsTex.cpp b/src/best/BestResultsTex.cpp index 2327d84..612d5ec 100644 --- a/src/best/BestResultsTex.cpp +++ b/src/best/BestResultsTex.cpp @@ -78,7 +78,7 @@ namespace platform { const char* bold = model == best_model ? "\\bfseries" : ""; handler << "& " << bold << std::setprecision(4) << std::fixed << value << "±" << std::setprecision(3) << std::fixed << std_value; } - handler << "\\" << std::endl; + handler << "\\\\" << std::endl; handler << "\\hline " << std::endl; handler << "\\end{tabular}" << std::endl; handler << "\\end{table}" << std::endl;