용어와 그림?

용어와 그림?

여기 제 질문이 있습니다. 그림과 함께 일종의 용어집을 만들려면 무엇이 가장 좋을까요?

사실, 한 손에는 텍스트(여기서는 어렵지 않음)가 포함된 만들기 도구 설명이 있고, 다른 한 손에는 그것이 무엇인지 그림과 함께 보는 것이 더 낫기 때문에 다른 손에는 도구 설명이 있습니다.

용어집으로 하려고 했는데 그게 최선의 방법인지 잘 모르겠습니다.

내가 무엇을 (그리고 어떻게) 해야 하는지 아는 사람이 있나요?

답변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}

관련 정보