Kvmap 捆绑问题

Kvmap 捆绑问题

我在使用捆绑包合并地图单元时遇到问题。

我正在尝试获得这个结果:

在此处输入图片描述

但是使用此代码,我得到了这个结果:

在此处输入图片描述

有人能告诉我我的错误是什么吗?

\documentclass[a4paper,11pt]{extarticle}                                                                                                                                                                          
\usepackage[utf8]{inputenc}                                                                                                                                                                                       
\usepackage[T2A]{fontenc}                                                                                                                                                                                         
\usepackage[english,russian]{babel}                                                                                                                                                                               

\usepackage{kvmap}                                                                                                                                                                                                
\usepackage{xcolor}                                                                                                                                                                                               

\begin{document}                                                                                                                                                                                                  
      \begin{kvmap}                                                                                                                                                                                               
      \begin{kvmatrix}{C,B,A,E,D}                                                                                                                                                                                 
          {\textcolor{red}{1}} & 0 & 0 & 1 & 1 & 0 & 0 & {\textcolor{red}{1}} \\                                                                                                                                  
          {\textcolor{red}{1}} & 0 & 0 & 1 & 1 & 0 & 0 & {\textcolor{red}{1}} \\                                                                                                                                  
          {\textcolor{red}{d}} & d & d & d & d & d & d & {\textcolor{red}{d}} \\                                                                                                                                  
          {\textcolor{red}{1}} & 0 & 0 & 1 & 0 & d & 0 & {\textcolor{red}{1}}                                                                                                                                     
      \end{kvmatrix}                                                                                                                                                                                              
      \bundle[invert=true]{0}{0}{7}{3}                                                                                                                                                                           
      \end{kvmap}                                                                                                                                                                                                 
\end{document}             

答案1

的问题kvmap是它无法猜测应该进行水平反演还是垂直反演。在版本 0.3.3 中(正在向 CTAN 发送,可从项目存储库工件),有新的按键来控制行为。

正确反转

使用新版本,您可以像这样编码:

\documentclass[a4paper,11pt]{extarticle}
\usepackage[utf8]{inputenc}
\usepackage[T2A]{fontenc}
\usepackage[english,russian]{babel}

\usepackage{kvmap}
\usepackage{xcolor}

\begin{document}
      \begin{kvmap}
      \begin{kvmatrix}{C,B,A,E,D}
          {\textcolor{red}{1}} & 0 & 0 & 1 & 1 & 0 & 0 & {\textcolor{red}{1}} \\
          {\textcolor{red}{1}} & 0 & 0 & 1 & 1 & 0 & 0 & {\textcolor{red}{1}} \\
          {\textcolor{red}{d}} & d & d & d & d & d & d & {\textcolor{red}{d}} \\
          {\textcolor{red}{1}} & 0 & 0 & 1 & 0 & d & 0 & {\textcolor{red}{1}}
      \end{kvmatrix}
      \bundle[invert=true, vinvert=false, overlapmargins=6pt]{0}{0}{7}{3}
      \end{kvmap}
\end{document}

相关内容