\overline doesn't appear on print
Created by: Mathebibel
Issue Summary
\overline{}
doesn't appear on print (pdf).
- Issue only appears in Firefox (tested with Mozilla Firefox for Linux Mint 89.0.1 (64-Bit))
- Issue only appears with MathJax 3 (not MathJax 2)
- Issue only appears with tex-chtml.js (not tex-svg.js)
Steps to Reproduce:
- Save the following as
test.html
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width">
<title>MathJax v3 with TeX input and HTML output</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script>
MathJax = {
tex: {inlineMath: [['$', '$'], ['\\(', '\\)']]},
chtml: {displayAlign: 'left'}
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>
</head>
<body>
<h1>Testing...</h1>
<h2>.../overline</h2>
<p>
\[\overline{A}\]
</p>
<p>
Inline \(\overline{A}\) Inline
</p>
<h2>...\bar</h2>
<p>
\[\bar{A}\]
</p>
<p>
Inline \(\bar{A}\) Inline
</p>
</body>
</html>
- Open
test.html
with Firefox - Save page to pdf via print dialog (CTRL+P)
- Open the pdf file
-
\overline
doesn't appear.\bar
does appear.