用語集と写真?

用語集と写真?

ここで質問です。画像付きの用語集のようなものを作成するには、何が最善でしょうか?

実際、私はツールの説明を、片手にテキスト(難しいことは何もありません)で、もう片方の手には、それが何であるかを見たほうがよいので、それらの写真付きで持っています。

用語集を使ってやろうかと考えていましたが、それが最善の方法かどうかはわかりません。

何を(どのように)すべきか知っている人はいますか?

答え1

さて、ここではグラフィックを配置できるさまざまな場所の例を示します。

\documentclass{article}
\usepackage[nonumberlist]{glossaries}
\makeglossaries
\usepackage{graphicx,xcolor}

\newcommand\tigerdescription{a large animal. Some facts:
 \begin{itemize}
  \item Has stripes
  \item Its image: \colorbox{red}{\includegraphics[width=1cm]{tiger}}
 \end{itemize}}


\newglossaryentry{tiger}
  {name={\raisebox{-0.5cm}{\colorbox{green}{\includegraphics[width=1cm]{tiger}}}},
   sort=tiger,
   text={tiger (\protect\raisebox{-0.5em}{\protect\colorbox{blue}{\protect\includegraphics[width=1em]{tiger}}})},
   description={\tigerdescription}}%

\begin{document}

A \gls{tiger} is a large animal.

\printglossary[style=list]%
\end{document}

関連情報