如何绘制以希腊符号表示方格的棋盘?

如何绘制以希腊符号表示方格的棋盘?

我怎样才能用希腊符号来排版棋盘上的方格?

我设法使用它来做到这一点moreenum,但它使用数学字体,而我更喜欢使用普通字体。有人知道吗?

如果可能的话,我宁愿有一个兼容 XeLaTeX 的解决方案

\documentclass[]{standalone}
\usepackage{chessboard}
\usepackage{moreenum}
\begin{document}
\chessboard[%
    setwhite={Qa1,Qd2},%
    showmover=true,%
    labelbottomformat=\greek{filelabel},%
]
\end{document}

在此处输入图片描述

答案1

您需要一些带有希腊字符的字体。

\documentclass[]{standalone}
\usepackage{chessboard}
\usepackage{fontspec}
\setmainfont{Lucida Sans Unicode}
\begin{document}

\def\mygreeklabelformat{\normalfont\char\numexpr944+\the\value{filelabel}\relax}


\chessboard[%
    setwhite={Qa1,Qd2},%
    showmover=true,%
    vlabelformat=\mygreeklabelformat,%
]
\end{document}

在此处输入图片描述

相关内容