번들을 사용하여 맵 셀을 병합하는 데 문제가 있습니다.
나는 이 결과를 얻으려고 노력 중입니다.
하지만 이 코드를 사용하면 다음과 같은 결과를 얻습니다.
누군가 내 실수가 무엇인지 말해 줄 수 있습니까?
\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}