mirror of
https://github.com/colinc86/LaTeXSwiftUI.git
synced 2026-04-03 00:09:29 -06:00
Arrays do not render vertical lines or horizontal lines correctly #41
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @RedPug on 3/15/2024
When making an array, for example:
"\begin{array}{|c|c|c|} a & b & c \\ d & e & f \\ \end{array}"
only the outer two vertical lines will render
Further,
if a horizontal line is placed on top:
"\begin{array}{|c|c|c|} \hline a & b & c \\ d & e & f \\ \end{array}"
the top line renders fine.
when another is added anywhere else:
"\begin{array}{|c|c|c|} \hline a & b & c \\ d & e & f \\ \hline \end{array}"
the whole section becomes a black box.
Further, any lines placed between rows are not rendered.