Skip to content

Commit

Permalink
Added tests for \hspace
Browse files Browse the repository at this point in the history
  • Loading branch information
matze-dd authored Feb 1, 2021
1 parent 27c469f commit b537d09
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_packages/test_latex_builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def test_macros_latex(latex, plain_expected):
(r'A\hspace{1em}B', 'A B'),
(r'A\hspace*{1em}B', 'A B'),
(r'A\hspace{0cm}B', 'AB'),
(r'A\hspace{ .0cm}B', 'AB'),
(r'A\hspace{ ,5cm}B', 'A B'),
(r'A\hspace{0.2pt}B', 'A B'),
(r'A\hspace{0,2cm}B', 'A B'),
(r'A\hspace{1.2,3cm}B', 'A B'),
Expand Down

0 comments on commit b537d09

Please sign in to comment.