displaystyle-2-ref.html 630 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>displaystyle</title>
  5. <meta charset="utf-8"/>
  6. </head>
  7. <body>
  8. <!-- Test the effect of displaystyle on munder, mover and munderover -->
  9. <math>
  10. <mstyle displaystyle="true">
  11. <munder><mo>O</mo><mo>O</mo></munder>
  12. <mover><mo>O</mo><mo>O</mo></mover>
  13. <munderover><mo>O</mo><mo>O</mo><mo>O</mo></munderover>
  14. </mstyle>
  15. <mstyle displaystyle="false">
  16. <msub><mo>O</mo><mo>O</mo></msub>
  17. <msup><mo>O</mo><mo>O</mo></msup>
  18. <msubsup><mo>O</mo><mo>O</mo><mo>O</mo></msubsup>
  19. </mstyle>
  20. </math>
  21. </body>
  22. </html>