How to change the font of math operators led to me wanting to find the slot numbers needed to redefine all possible math operator symbols. MWE:
\documentclass{standalone}
\usepackage{libertine}
\usepackage[libertine]{newtxmath}
\usepackage{textcomp}
\DeclareSymbolFont{operatorsB}{TS1}{\rmdefaultB}{m}{n}
\DeclareMathSymbol{+}{\mathbin}{operators}{43}
\DeclareMathSymbol{-}{\mathbin}{operatorsB}{61}
\DeclareMathSymbol{\pm}{\mathbin}{operatorsB}{177}
\usepackage{fonttable}
\begin{document}
x$=+-\pm$ +\textminus\textpm
%\fonttable{LinuxLibertineT-TLF}
%\xfonttable{TS1}{\rmdefaultB}{m}{n}
%\xfonttable{TS1}{LinuxLibertineT-TLF}{m}{n}
\end{document}
In the comments, T1enc.def and ts1enc.def files were proposed for this, but looking in the files wasn't helpful for me.
The other often found suggestion is using fonttable package. Activating any of the three fonttable commands in my MWE gives a slew of erros, even though I just used the settings from above or the working font specifiers for my microtype settings ({TS1}{LinuxLibertineT-TLF}{m}{n}).
Also suggested reading material was the fntguide, but I couldn't find the tables I need nor individual slot numbers (= for example ...).
So, how to find all possible math slot numbers of Linux Libertine (or any other font of a package) to work with them?


\pmis at the "wrong" place (261 instead of 177). My question is mainly about how to find "all" slot numbers of a given font, as this is a problem I face often. – lblb Apr 03 '17 at 17:22261is the octal representation. The decimal representation is in the cell itself and is 177. – egreg Apr 03 '17 at 17:25newtxmathsymbols. – egreg Apr 03 '17 at 17:30=that is not found in the table, what slot number / command is needed to use it? – lblb Apr 03 '17 at 17:36operatorssymbol font. – egreg Apr 03 '17 at 17:36\DeclareMathSymbol{=}{\mathrel}{operators}{`=}– egreg Apr 03 '17 at 17:41