1

I'm using chessfss together with xskak package to make game's annotation, my favourite chess font is skaknew, but the figfont for the King look a bit complicated. Is there anyway to use Pirat font for the King fig?

Thanks p/s: I added a picture which I took from quality chess's book. The King's fig look simple very close to pirat font, so I came up with the idea.

[![\documentclass\[parskip\]{scrartcl}
\usepackage\[LSF,T1\]{fontenc}
\usepackage{bookman}
\pagestyle{empty}

\usepackage{xskak} \usepackage{fmtcount} \usepackage{latexsym} \usepackage[utf8]{inputenc}

\pdfmapfile{=chess-enpassant.map} \setchessboard{ boardfontfamily=skaknew, } \setfigfontfamily{skaknew}

\newcommand\piratking{\makealetter\fontfamily{pirat}\selectfont\cfss@symking} \renewcommand\symking{{piratking}}

\begin{document} \newchessgame \mainline{1. e4 e5 2.Ke2} \chessboard \end{document}]

This is my false attemp.

I take a picture from Quality's chess book. The King's fig look simple and very close to pirat font

1 Answers1

1

You can redefine the king with

\makeatletter
\renewcommand*\cfss@king@@LSB{{\fontencoding{LSF}\fontfamily{pirat}\selectfont K}}
\makeatother

But the result is rather awful. Compared to the other pieces the king is to narrow, the line width differ, the style is different, the placement too.

enter image description here

Ulrike Fischer
  • 327,261
  • Thank you Mrs @UlrikeFischer. You're right about the styling. I will try to adjust fontsize to see if it could be better. Or else, maybe I will just abandon the idea. – Nguyen Wanderoz Jun 16 '20 at 08:14