I am very new to LaTeX.
I am inserting a listing as follows:
\lstinputlisting[float=hk,
caption=My Caption comes here,
captionpos=b,
label=MyLabel]{media/MyFile.xml}
media is my project directory where all my files and images are stored. One of those files is MyFile.xml which is a code snippet.
The problem is the caption of this listing is very close to it. I would like to add some spacing between the two of them.
Any pointers?
\lstinputlisting[belowskip=4ex, ...]– Daniel Jun 27 '12 at 13:43