1) How can I make the determinant lines slightly larger? I've tried \Biggl| but this still isn't big enough.
2) When viewed at certain zoom levels, there are small white gaps in the matrix's brackets (as in the above screenshot). I'm sure it would print correctly, but this can be annoying when viewing the file as a PDF. Is there any way to fix this rendering issue?
Here is my code. Thanks!
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\left|\left[
{\begin{array}{cccc}
4&-3&8&-10\\
0&-1&9&-9\\
6&-6&-5&-7\\
-2&-2&3&-7\\
\end{array}}
\right]^{-1} \!-\,3\text{I}_4 \; \right|
\end{equation*}
\end{document}