I'm new on linux (Fedora35), and have a problem compiling my first document.
A minimal example looks like this:
Code: Select all
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$\nless$
\end{document}
No pdf is produced. I installed texlive by "dnf install texlive-scheme-full".
What I tried so far:
1) On another computer (opensuse) this document compiles, and a file msbm10.pfb is found. Its path is
/net/TeXLive/2021/texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb
. On my system I found such a file as well, it's path is /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb
. It seems it is either not found, or the file with the ending .t3 is required instead.2) When replacing
\nless
by \Re
, the document is compiled correctly, reading a file /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb
. So it seems that the amsfonts directory is searched.3) I found a file called "
msbm10.t3
" here: https://ctan.math.washington.edu/tex-archive/fonts/mpfonts/type3/mpfonts-amsfonts/
. I downloaded it to the location of the msbm10.pfb
-file, but nothing changed. I then found that such a file already exists on my system, in "/usr/share/texlive/texmf-dist/fonts/type3/mpfonts
".4) I tried "
dnf install texlive-amsfonts.noarch
" and "dnf install texlive-mpfonts.noarch
", but both were installed already.5) Following some advice in a similar situation i executed texhash.
6) I reinstalled texlive using "
dnf reinstall texlive-scheme-full
".Now I'm out of ideas. Please let me know if you have any suggestions. Thanks a lot in advance

--Update--
7) A friend could compile the document on his Fedora system. The file
/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb
was read, which also exists on my system in the same location.