This file is indexed.

/usr/share/doc/libjs-mathjax-doc/html/_sources/options/other/MatchWebFonts.rst.txt is in libjs-mathjax-doc 2.7+20171212-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.. _configure-MatchWebFonts:

*****************************
The Match Web Fonts extension
*****************************

The options below control the operation of the `MatchWebFonts`
extension that is run when you include ``"MatchWebFonts.js"`` in the
`extensions` array of your configuration.  They are listed with their
default values.  To set any of these options, include a
``MatchWebFonts`` section in your :meth:`MathJax.Hub.Config()` call.
For example

.. code-block:: javascript

    MathJax.Hub.Config({
      MatchWebFonts: {
        matchFor: {
          "HTML-CSS": true,
          NativeMML: false,
          SVG: false
        },
        fontCheckDelay: 2000,
        fontCheckTimeout: 30 * 1000
      }
    });

would ask to apply font size matching for the `HTML-CSS` output mode
but not for the `NativeMML` or `SVG` modes. It would also tell the
extension to wait 2 seconds before starting to look for web font
arrivals, and to continue checking for 30 seconds.

This extension is designed for pages that have mathematics within text
that is displayed using webfonts, and works around a basic problem of
webfonts -- a missing API. Webfonts often don't appear until after a
delay, and the browser will substitute another font until then;
unfortunately there is no signal for when the font becomes
available. Since the arrival of the webfonts can significantly change
ex and em sizes (and MathJax checks these to match them with its own
font size), this extension will check for changes of em and ex sizes
(indicating the arrival of webfonts) and rerender equations if
necessary.

.. describe:: matchFor: { ... }

    This block controls whether to apply font size matching for each output mode.

    .. describe:: "HTML-CSS": "true"

       Whether to match the font size for the `HTML-CSS` output.

    .. describe:: NativeMML: "true"

       Whether to match the font size for the `NativeMML` output.

    .. describe:: SVG: "true"

       Whether to match the font size for the `SVG` output.

.. describe:: fontCheckDelay: 500

       Initial delay before the first check for web fonts (in milliseconds).

.. describe:: fontCheckTimeout: 15 * 1000

       How long to keep looking for fonts (in milliseconds).