Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(v3) Cannot load amsCd (wrong casing in filename on CDN?) #2209

Closed
nasosev opened this issue Oct 4, 2019 · 4 comments
Closed

(v3) Cannot load amsCd (wrong casing in filename on CDN?) #2209

nasosev opened this issue Oct 4, 2019 · 4 comments

Comments

@nasosev
Copy link

nasosev commented Oct 4, 2019

After updating to v3 I can't load amsCd anymore.
In the console output of my browser I get the error:
Loading failed for the <script> with source “https://cdn.jsdelivr.net/npm/mathjax@3/es5/input/tex/extensions/amsCd.js”

The filename on the server is https://cdn.jsdelivr.net/npm/mathjax@3/es5/input/tex/extensions/amsCd.js does not appear to exist, however amscd.js does (c is not capitalised`).

I tried changing the config in my HTML to

<script>
      MathJax = {
        loader: { load: ["[tex]/amscd"] },
        tex: { packages: { "[+]": ["amscd"] } }
      };
</script>

but it didn't help.

@dpvc
Copy link
Member

dpvc commented Oct 4, 2019

This is a duplicate of mathjax/MathJax-src#335, for which is fixed in the next release.

@dpvc dpvc added the Duplicate label Oct 4, 2019
@dpvc dpvc closed this as completed Oct 19, 2019
@nasosev
Copy link
Author

nasosev commented Dec 16, 2019

This is a duplicate of mathjax/MathJax-src#335, for which is fixed in the next release.

@dpvc Is there an ETA on the next release? It's been a couple of months now and the problem persists. Thanks.

@dpvc
Copy link
Member

dpvc commented Dec 17, 2019

@nasosev, I expect it to be in early January.

In the meantime, you can use

MathJax = {
  loader: {
    source: {
      '[tex]/amsCd': '[tex]/amscd'
    }
  }
};

to your configuration should allow you to load amsCd for now. You will need to remove this once the file is properly named, however.

@nasosev
Copy link
Author

nasosev commented Dec 18, 2019

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants