使用 Latex 进行专注力训练(纸牌游戏)

使用 Latex 进行专注力训练(纸牌游戏)

我想用 Latex 创建一个专注力纸牌游戏(配对游戏)。一侧应该有一个函数和配对图。另一侧应该有一个徽标。

我希望打印时正面和背面都一致。也就是说,打印后我只需剪下卡片即可。

我有一个带有表格的 MWE,但是:

  • 有没有更好的解决办法?
  • 例如,如果图表意外地太大,则前面和后面就不再匹配。
  • 图形未居中。
  • 是否可能存在现有的设置?
\documentclass[11pt, a4paper, parskip=half]{scrartcl}
\usepackage{tikz} 
\usepackage{pgfplots}
\usepackage{array}
\pgfplotsset{compat=1.12}

\begin{document}

\renewcommand\arraystretch{7}
{\centering
\begin{tabular}{|*{4}{>{\centering\arraybackslash}m{0.25\textwidth}|}}\hline
$f(x)=\frac{1}{x}$ &  \begin{tikzpicture}[scale=1,>=latex,font= \footnotesize]
\begin{axis}[axis lines = middle,domain=-2.3:2.3,xmin=-5.3,xmax=5.3,ymin=-5.3, ymax=5.3,x=.25cm,y=.25cm]
\addplot[very thick,blue ] {1/x};
\end{axis}
\end{tikzpicture} & & \\ \hline
& & & \\ \hline
& & & \\ \hline
& & & \\ \hline
& & & \\ \hline
& & & \\ \hline
\end{tabular}
}

\newpage 

\renewcommand\arraystretch{7}
\begin{tabular}{|*{4}{p{0.25\textwidth}|}}\hline
\includegraphics[width=1\linewidth]{example-image-1x1} & & & \\ \hline
& & & \\ \hline
& & & \\ \hline
& & & \\ \hline
& & & \\ \hline
& & & \\ \hline
\end{tabular}
\end{document}

相关内容