1

Consider the following example:

\documentclass{article}

\usepackage{xskak}

\begin{document}

\newchessgame
\textsymfigsymbol{R}a1 versus Ra1

\end{document}

Does the xskak package have an option for globally switching between figure notation and algebraic notation in a document?

If the package doesn't have such an option, I would like to have a command that does this (not necessarily--but preferbably--globally) in a document.

Can anyone help me create such a command in case the package option doesn't exist?

1 Answers1

2

\textsymfigsymbol is not an xskak command but from chessfss, the underlaying package used to typeset chess symbols. Its output can be changed with the switches \usetextfig and \usesymfig. The switch also affect games set with \mainline:

\documentclass{article}

\usepackage{xskak}

\begin{document}
\usetextfig
\newchessgame

\mainline{1. Nf3}

\usesymfig
\newchessgame

\mainline{1. Nf3}

\usetextfig
\textsymfigsymbol{R}a1 versus 
\usesymfig
\textsymfigsymbol{R}a1

\end{document}

enter image description here

Ulrike Fischer
  • 327,261