Skip to content

Commit

Permalink
space after displaystyle
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Sep 29, 2023
1 parent c4a68db commit 0e68d5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion symfem/functionals.py
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ def get_tex(self) -> typing.Tuple[str, typing.List[str]]:
entity = self.entity_tex()
entity_def = self.entity_definition()
desc = "\\mathbf{V}\\mapsto"
desc += "\\displaystyle"
desc += "\\displaystyle "
if self.scale != 1:
desc += _to_tex(self.scale)
desc += f"\\int_{{{entity}}}"
Expand Down
2 changes: 1 addition & 1 deletion symfem/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1506,7 +1506,7 @@ def as_tex(self) -> str:
out += "c" * self.shape[1]
out += "}"
out += "\\\\".join([
"&".join(["\\displaystyle" + j.as_tex() for j in i])
"&".join(["\\displaystyle " + j.as_tex() for j in i])
for i in self._mat
])
out += "\\end{array}\\right)"
Expand Down

0 comments on commit 0e68d5d

Please sign in to comment.