卡诺图,无法连接特定单元格

卡诺图,无法连接特定单元格

我需要用 来\usepackage{karnaugh-map}绘制一些卡诺图。在此表中:

\begin{karnaugh-map}

    \manualterms{1,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1}

\end{karnaugh-map}

我想操作如图所示的逻辑连接

enter image description here

但我真的不知道如何操作0和8之间的链接,以及3和11之间的链接。有没有办法得到像图片中这样的东西

答案1

在手册中(见卡诺图) 您可以在蕴涵项部分找到如何绘制蕴涵项;-)。

对于你的例子你可以做类似的事情

\begin{karnaugh-map}
  \manualterms{1,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1}
  \implicant{13}{11}
  \implicant{15}{10}
  \implicantedge{0}{0}{8}{8}
  \implicantedge{3}{3}{11}{11}
\end{karnaugh-map}

enter image description here

相关内容