我目前正在写一份实习报告,我想为 PDF 的每一张图片制作一个附录,并在最后一页添加一个词汇表。但我遇到麻烦,词汇表打印在图片之前或中间。
我不太擅长遵守严格的规则,我的大部分解决方案都像“修复”一样
\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
答案1
这是(我的 .glo 有问题,所以我不知道它是否能正常工作,或者是不是我的问题)
\documentclass[]{article}
\usepackage{glossaries}
\usepackage{hyperref}
\newcommand{\figlabel}[1]{\refstepcounter{figure}\label{#1}\addtocounter{figure}{-1}}
\newcommand{\figref}[1]{\hyperref[#1]{\textsc{Figure ~\ref{#1}}}}
\begin{document}
\newacronym{POCM}{POCM}{Picture of My Cat}
Hello World! Here is a \gls{POCM} (\figref{fig:CAT} et \figref{fig:CAT2}).
\newpage
\appendix
\section{Appendix}
\newpage
\begin{figure}
\center
\figlabel{fig:CAT}
\fbox{Mew !}
\caption{Picture of my cat : Mew}
\end{figure}
\begin{figure}
\center
\figlabel{fig:CAT2}
\fbox{MewTwo !}
\caption{Picture of my other cat : MewTwo}
\end{figure}
\section{Glossaire}
\printglossaries
\end{document}