내 해부학 노트를 플래시카드로 만들고 싶은데, flashcards
수업을 이용해야 할 것 같아요. 하지만 내 문제는 플래시카드에 그림/이미지를 넣을 수 없어서 컴파일되지 않는다는 것입니다. 오류가 발생합니다.
"정의되지 않은 제어 순서"
내가 도대체 뭘 잘못하고있는 겁니까?
\documentclass[avery5388,grid,frame]{flashcards}
\cardfrontstyle[\large\slshape]{headings}
\cardbackstyle{empty}
\begin{document}
\cardfrontfoot{Functional Analysis}
\begin{flashcard}[Definition]{Lever celler}
\includegraphics[width=.8\linewidth]{billeder/0604}
\end{flashcard}
\begin{flashcard}[Definition]{Inner Product}
Let $X$ be a complex linear space. An \emph{inner product} on $X$ is
a mapping that associates to each pair of vectors $x$, $y$ a scalar,
denoted $(x,y)$, that satisfies the following properties:
\medskip
\begin{description}
\item [Additivity] $(x+y,z) = (x,z) + (y,z)$,
\item [Homogeneity] $(\alpha \: x, y) = \alpha (x,y)$,
\item [Symmetry] $(x,y) = \overline{(y,x)}$,
\item [Positive Definiteness] $(x,x) > 0$, when $x\neq0$.
\end{description}
\end{flashcard}
\end{document}
감사해요