The polynom style (version “2006/04/20 0.17 (CH,HA)” from texlive 2012) has to be told about which tokens represent variables. The manual has an example like this:
\polyset{vars=XYZ\xi, % make X, Y, Z, and \xi into variables
delims={[}{]}}% nongrowing brackets
When I try to typeset this in a minimal document
\documentclass{article}
\usepackage{polynom,amsmath,amssymb}
\begin{document}
\polyset{vars=XYZ\xi,delims={[}{]}}
\polylongdiv{\xi^2-1}{\xi-1}
\end{document}
I get the following error message:
! Missing \endcsname inserted.
<to be read again>
\xi
l.4 \polyset{vars=XYZ\xi,delims={[}{]}}
So there appears to be a problem trating greek letters as variable tokens. Can anyone suggest a way to resolve this, i.e. to actually typeset a ξ or similar greek letter as a variable in a polynom long division?
