mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Render LaTeX matrices correctly in math-only mode.
This commit is contained in:
parent
86f5c2ebcf
commit
9ee2bf36cf
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ const joinMath = (
|
|||
};
|
||||
|
||||
const getMathNewline = (mathProps: MathProps) => {
|
||||
return mathProps.useTex && mathProps.mathOnly ? "\\\\" : "\n";
|
||||
return mathProps.useTex && mathProps.mathOnly ? "\\newline" : "\n";
|
||||
};
|
||||
|
||||
// This lets math input run across multiple newlines.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue