opened 08:54PM - 20 Feb 22 UTC
closed 02:46PM - 12 Jun 22 UTC
The following LaTeX document is reduced from what scribble generates from a hell…o world document. With
newtxmath.sty 1.7 (2021/12/18), it generates an error because \widebar is already defined. Uncomenting the let
for widebar seems to "fix" it, no idea if that's the best approach.
```latex
\documentclass{article}
\usepackage{amsmath}
\usepackage{mathabx}
\let\widering=\relax
%\let\widebar=\relax
\usepackage{newtxmath}
\begin{document}
hello world
\end{document}
```
Here's the scribble document.
```racket
#lang scribble/base
@(require scribble/core
scribble/manual)
hello world
```