Is it possible to have page numbers/footnote numberings in languages other than English?
Edited by Initiator
Edited by Initiator
@page main {
@bottom-left {
margin-bottom:20pt;
font-size:40pt;
color:#231F20;
content: prince-script(bengalicounter,counter(page))
}
Prince.addScriptFunc("bengalicounter", function(n) {
if (n == 1) return "one";
else if (n == 2) return "two";
else if (n == 3) return "three";
else return n;
});
$prince->setJavaScript(true);
for my instance of Prince for this to work.Edited by Initiator