我像这样将一些代码加载到我的文档中:\lstinputlisting{MergeSort.txt}
。这很完美,但是我想在源代码底部的 footnotesize 中添加一个标题(没有任何标签,如“清单 1:”)。我该怎么做?
答案1
使用title
键值选项listings
:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{MergeSort.txt}
This is a merge sort algorithm
\end{filecontents*}
\usepackage{listings}
\lstset{basicstyle=\ttfamily}
\begin{document}
\lstinputlisting[captionpos=b,title={\footnotesize Merge Sort}]{MergeSort.txt}
\end{document}
title
定位是使用 来调整的captionpos
。