I'm currently writing an internship report and I'd like to make an appendix with every pictures of my PDF and on le last page a glossary. But I'm in trouble the glossary print before or in the middle of the figures.
I'm not really good with strict rules, most of my solutions act like "fixes"
\appendix
\part{Annexes}
\newpage
\center
\begin{figure}%FT17
...
\end{figure}
%Glossary is shown here
\begin{figure}%Usines
...
\end{figure}
\begin{figure}%VentesElec1
...
\end{figure}
\begin{figure}%VentesElec2
...
\end{figure}
\begin{figure}%RenaultNissan
...
\end{figure}
\begin{figure}%COP21
...
\end{figure}
\begin{figure}%OrganigrammeDEAS
...Some Tikz Stuff...
\end{figure}
\printglossaries
\begin{figure}[H]from float package and it seem to work but I think it's a bit... harsh or disgusting (don't know the exact name) – Biboozz Jul 05 '16 at 14:33\includegraphicscan be set by itself, and a package such as\capt-ofused to include captions if you want them. also,\begin{center} ... \end{center}or\centeringshould be used instead of\center; and the centering needs to be rurned off before you print your glossary. – barbara beeton Jul 05 '16 at 14:37\label(\refstepcounter{figure}\label{#1}\addtocounter{figure}{-1}) and\ref({\hyperref[#1]{\textsc{Figure ~\ref{#1}}}) for each one. – Biboozz Jul 05 '16 at 14:41figureenvironment for the\labeland\ref? that's not actually true. it's the\captionthat identifies the\label, and captions provided with thecapt-ofpackage also support\ref. (if you are creating a list of figures, that might require some additional attention.) – barbara beeton Jul 05 '16 at 14:46\documentclass. your system seems rather unusual in that respect. – barbara beeton Jul 05 '16 at 14:52\clearpagebefore\printglossaries. That will cause a page break, but it will ensure all the floats are processed before the glossary. If you have a problem with the.glofile, trymakeglossariesguiit has some diagnostic tools that might work out what the problem is. (See this answer for examples.) – Nicola Talbot Jul 05 '16 at 17:03