treeface99 wrote:Any ideas?
Happily for you I happen to know where the command
\lstset
is from. Next time it would be really helpful if you'd posted a
minimal working example, please!
(
Edit: I just saw you mentioned the package in the title of the post. Sorry...)
Did you have a look in the documentation of
listings? You'd find there section
4.11 Frames.
I quote the beginning of that section:
frame=<none|leftline|topline|bottomline|lines|single|shadowbox>
[default:]none
draws either no frame, a single line on the left, at the top, at the bottom, at the top and bottom, a whole single frame, or a shadowbox. Note that fancyvrb supports the same frame types except shadowbox. The shadow color is rulesepcolor, see below.
frame=<subset of trblTRBL>
[default:]ffff
The characters trblTRBL
designate lines at the top and bottom of a listing and to lines on the right and left. Upper case characters are used to draw double rules. So frame=tlrb
draws a single frame and frame=TL
double lines at the top and on the left. Note that frames usually reside outside the listing’s space.
Regards