I like to use runes and letters from other non-standard alphabets as mathematical symbols. However, now the allrunes package is interfering with my other mathematical typesetting. Take this minimal example:
\documentclass{article}
\usepackage{allrunes}
\begin{document}
$\bar{x}$
\end{document}
I get these error messages:
LaTeX Warning: Command \bar invalid in math mode on input line 6.
! LaTeX Error: Command \bar unavailable in encoding OT1.
I think that the problem lies in allrunes.sty, which redefines the \bar command:
\newcommand{\DeclareRuneSeparators}[1]{%
[..]
\DeclareTextSymbol{\bar}{#1}{33} % !
[..]
} % end of newcommand{\DeclareRuneSeparators}
Is there a way to prevent allrunes from redefining \bar, so that I can still use it as the usual math symbol? Or any other way of recovering the functionality of \bar?
The exact same happens not just for \bar, but also for \dot.
allrunesalso does some other redefinitions that are quite disputable. In particular it redefines\bfseriesand this can lead to severe problems. – egreg Dec 23 '13 at 12:34