我遇到的问题是LaTeX没有显示数据列表和列表清单。我不知道问题出在哪里。
我正在使用TeXstudio,代码定义如下:
\begin{document}
\begin{lstlisting}[caption={Testcode is here}\label{lst:Testcode is here},frame=single]
//here is the code
\end{lstlisting}
\begin{figure}[H]
\centering
\includegraphics[width=0.5\textwidth]{pic1.jpg}
\caption{That is a pic}
\label{fig: That is a pic}
\end{figure}
\listoffigures
\lstlistoflistings
\end{document}
两个清单都是空的。谁能告诉我这是什么问题?
答案 0 :(得分:0)
我可以通过对您的文件进行这些修改来生成数据列表; 将这两行添加到文件的最开头:
\documentclass{article}
\usepackage{listings}
然后,将[H]
更改为[h]
(小写)。