Bug 2223293
| Summary: | Missing number, treated as zero when using package "wasysym" | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Attila <bugs.kde.attila> |
| Component: | texlive | Assignee: | Tom "spot" Callaway <spotrh> |
| Status: | CLOSED EOL | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 38 | CC: | caznaranl, spotrh, tdawson, than |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2024-05-28 13:31:22 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Fedora Linux 38 entered end-of-life (EOL) status on 2024-05-21. Fedora Linux 38 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug. If you can reproduce this bug against a currently maintained version of Fedora Linux please feel free to reopen this bug against that version. Note that the version field may be hidden. Click the "Show advanced fields" button if you do not see the version field. If you are unable to reopen this bug, please file a new report against an active release. Thank you for reporting this bug and we are sorry it could not be fixed. |
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.