LyX ⇒ Overlapping text in matrices
Overlapping text in matrices
- Attachments
-
- Instance of the issue.
- Picture 1.png (28.02 KiB) Viewed 4014 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Overlapping text in matrices
having access to the actual code that you are using, we would be able to provide more accurate advise. Anyway, one option is to use the optional argument of \\ to increase the vertical spacing between rows. Take a llok at the following simple example:
Code: Select all
\documentclass{report}
\usepackage{amsmath}
\begin{document}
\[
\begin{bmatrix}
A \\
B
\end{bmatrix}
\]
\[
\begin{bmatrix}
A \\[2em]
B
\end{bmatrix}
\]
\end{document}
Re: Overlapping text in matrices
Thanks!