Bug 2223293 - Missing number, treated as zero when using package "wasysym"
Summary: Missing number, treated as zero when using package "wasysym"
Keywords:
Status: NEW
Alias: None
Product: Fedora
Classification: Fedora
Component: texlive
Version: 38
Hardware: x86_64
OS: Linux
unspecified
medium
Target Milestone: ---
Assignee: Tom "spot" Callaway
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2023-07-17 09:41 UTC by Attila
Modified: 2023-07-17 10:06 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed:
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Attila 2023-07-17 09:41:22 UTC
pdflatex throws out an error on Fedora 38 when I try to create a PDF document from a tex file.
It no longer works since I upgraded from Fedora 36 to Feodra 38.


Reproducible: Always

Steps to Reproduce:
1. Create a tex file like

\documentclass[12pt,a4paper]{article}
\usepackage{ae}
\usepackage{german}
\usepackage{wasysym}
\begin{document}
{\Large \Square} ~Test
\end{document}

2. Execute the command pdflatex
Actual Results:  
! Missing number, treated as zero.
<to be read again> 
                   \protect 
l.226 ...eMathSymbol\mho     {\mathord}{wasy}{"30}

Expected Results:  
pdflatex should create the PDF document.

It works if I change the order of the packages from "german", "wasysym" to "wasysym", "german".

\documentclass[12pt,a4paper]{article}
\usepackage{ae}
\usepackage{wasysym}
\usepackage{german}
\begin{document}
{\Large \Square} ~Test
\end{document}


Like I mentioned, the order of the packages did not matter on Fedora 36.


Note You need to log in before you can comment on or make changes to this bug.