4

I am trying to reproduce the following:

My best attempt so far uses skak.

\begin{figure}
    \newgame
    \showallbut{P,p,K,k,R,r,Q,q,B,b,N,n}
    \showboard
    \caption{The Frontier Line}
\end{figure}

How to add the central line?

Note: Please do not consider font, caption…

1 Answers1

7
\documentclass{article}
\usepackage{chessboard}
\usepackage{tikz}
\begin{document}
\chessboard[pgfstyle=topborder,markregion={a4-h4}]
\end{document}

enter image description here

Ulrike Fischer
  • 327,261