Reputation: 8077
By default, latex(Matrix([[1, 2], [3, 4]])
gives a matrix surrounded by square brackets. How can I use round brackets instead?
Upvotes: 0
Views: 871
Reputation: 8077
You can use
latex(Matrix([[1, 2], [3, 4]]), mat_delim='(', mat_str='matrix')
Upvotes: 3