Skip to content
Snippets Groups Projects
Commit 031d744e authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix latex table printing

parent 24c2d552
No related branches found
No related tags found
No related merge requests found
......@@ -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 ( ) ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment