将抽认卡背面旋转 180 度

将抽认卡背面旋转 180 度

我正在尝试修改我发现的使用 flashcard 包的 LaTeX 文件:

\documentclass[avery5371,grid]{flashcards}

为了将每张卡片的背面旋转 180 度,我需要添加哪些包?您能给出以下代码片段吗?

\begin{flashcard}[Theorem]{properties of absolute values}
\vspace*{\stretch{1}}
\begin{enumerate}
\item $|ab| = |a||b|$
\item $\left| \dfrac{a}{b} \right| = \dfrac{|a|}{|b|}$
\item $|a+b| \leq |a| + |b|$
\item $|a-b| \geq ||a| - |b||$
\end{enumerate}
\vspace*{\stretch{1}}
\end{flashcard}

答案1

这涉及到内部的混乱flashcards,而且它完全没有经过测试(我的笔记本电脑必须送回去修理,哎呀),但我认为它会起作用。

\usepackage{rotating}
\makeatletter
\renewcommand{\flashcards@beginframebox}{\begin{turn}{180}}
\renewcommand{\flashcards@endframebox}{\end{turn}{180}}
\makeatother

相关内容