Skip to content
Snippets Groups Projects
Commit 2162e4df authored by Daniel Jankowski's avatar Daniel Jankowski
Browse files

Fixed: missing backslash in tex output

parent 18726f1f
No related branches found
No related tags found
No related merge requests found
Pipeline #4452 passed
......@@ -12,7 +12,7 @@ func (f *F2) PrettyPrint() {
// PrintLaTex prints the matrix as latex code
func (f *F2) PrintLaTex() {
fmt.Printf("\\begin{bmatrix}\n")
f.printWithSeparators(" & ", "\\\n")
f.printWithSeparators(" & ", "\\\\\n")
fmt.Printf("\\end{bmatrix}\n")
}
......
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