tor-browser

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

displaystyle-012-ref.html (753B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>displaystyle</title>
      5    <meta charset="utf-8">
      6    <link rel="stylesheet" href="/fonts/ahem.css">
      7    <style>
      8      math {
      9          font: 25px Ahem;
     10      }
     11    </style>
     12  </head>
     13  <body>
     14 
     15    <!-- Test the effect of displaystyle on munder, mover and munderover -->
     16    <math>
     17      <mstyle displaystyle="true">
     18        <munder><mo>O</mo><mo>O</mo></munder>
     19        <mover><mo>O</mo><mo>O</mo></mover>
     20        <munderover><mo>O</mo><mo>O</mo><mo>O</mo></munderover>
     21      </mstyle>
     22      <mstyle displaystyle="false">
     23        <msub><mo>O</mo><mo>O</mo></msub>
     24        <msup><mo>O</mo><mo>O</mo></msup>
     25        <msubsup><mo>O</mo><mo>O</mo><mo>O</mo></msubsup>
     26      </mstyle>
     27    </math>
     28 
     29  </body>
     30 </html>