From 031d744ed5de655e79413f73d6714386f5384787 Mon Sep 17 00:00:00 2001
From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz>
Date: Wed, 8 Nov 2017 11:41:02 +0100
Subject: [PATCH] fix latex table printing

---
 alib2aux/src/convert/LatexTable.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/alib2aux/src/convert/LatexTable.h b/alib2aux/src/convert/LatexTable.h
index b03d227e3a..df0e63eda6 100644
--- a/alib2aux/src/convert/LatexTable.h
+++ b/alib2aux/src/convert/LatexTable.h
@@ -52,7 +52,7 @@ void LatexTable::convert(std::ostream& out, const automaton::DFA < SymbolType, S
         out << "                  &   & ";
 	for ( const SymbolType & symbol : a.getInputAlphabet ( ) )
 		out << replace ( alib::StringDataFactory::toString ( symbol ), "\"", "\\\"" ) << " & ";
-	out << "\\hspace*{14cm}\\" << std::endl;
+	out << "\\hspace*{14cm}\\\\" << std::endl;
 	out << "\\hline" << std::endl;
 
 	for ( const StateType & source : a.getStates ( ) ) {
-- 
GitLab