What latex package has the Sbox env?
What latex package has the Sbox env?
The `Sbox` environment is provided by the `fancyvrb` package in LaTeX. The `fancyvrb` package is used for creating customizable verbatim environments, and the `Sbox` environment is specifically used to store verbatim text in a box for later use. Here is a simple example of how to use the `Sbox` environment:
1 2 3 4 5 6 7 8 9 10 11 12 | \documentclass{article} \usepackage{fancyvrb} \begin{document} \begin{Sbox} This is some verbatim text stored in a box. \end{Sbox} Now we can use the stored text: \theSbox \end{document} |
Testing if the previous output contains the string fancybox
: False