no spaces in latex truth table

This commit is contained in:
hi 2025-07-31 12:25:53 +00:00
parent 0df55f349d
commit c6628aedd1

View file

@ -270,5 +270,5 @@ truthtable s = open <> header <> "\\hline\n" <> body <> close
bools assignments = [if bool then "1" else "0" | (key, bool) <- assignments]
parts assignments =
(\xs -> [[x] | x <- xs]) $
(\xs -> [[x] | x <- filter (\i -> i /= ' ') xs]) $
fromJust $ serializeLatexTruthTableRow assignments s