tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

displaystyle-015-ref.html (1176B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>displaystyle and display</title>
      6  </head>
      7  <body>
      8    <math>
      9      <munderover>
     10        <mo></mo>
     11        <mi>b</mi>
     12        <mi>c</mi>
     13      </munderover>
     14    </math>
     15    <math displaystyle="true">
     16      <munderover>
     17        <mo></mo>
     18        <mi>b</mi>
     19        <mi>c</mi>
     20      </munderover>
     21    </math>
     22    <math display="inline" displaystyle="true">
     23      <munderover>
     24        <mo></mo>
     25        <mi>b</mi>
     26        <mi>c</mi>
     27      </munderover>
     28    </math>
     29    <math display="block" displaystyle="true">
     30      <munderover>
     31        <mo></mo>
     32        <mi>b</mi>
     33        <mi>c</mi>
     34      </munderover>
     35    </math>
     36    <math displaystyle="false">
     37      <munderover>
     38        <mo></mo>
     39        <mi>b</mi>
     40        <mi>c</mi>
     41      </munderover>
     42    </math>
     43    <math display="inline" displaystyle="false">
     44      <munderover>
     45        <mo></mo>
     46        <mi>b</mi>
     47        <mi>c</mi>
     48      </munderover>
     49    </math>
     50    <math display="block" displaystyle="false">
     51      <munderover>
     52        <mo></mo>
     53        <mi>b</mi>
     54        <mi>c</mi>
     55      </munderover>
     56    </math>
     57  </body>
     58 </html>