tex - Document doesn't display the list of figures (LaTeX) -
i have problem latex doesn't show list of figures , list of listings. don't know problem is.
i'm working texstudio , code defined follows:
\begin{document} \begin{lstlisting}[caption={testcode here}\label{lst:testcode here},frame=single] //here code \end{lstlisting} \begin{figure}[h] \centering \includegraphics[width=0.5\textwidth]{pic1.jpg} \caption{that pic} \label{fig: pic} \end{figure} \listoffigures \lstlistoflistings \end{document} both lists remain empty. can tell me problem is??
i able generate list of figures doing these modifications on file; adding these 2 lines beginning of file:
\documentclass{article} \usepackage{listings} and then, changing [h] [h] (lower case).
Comments
Post a Comment