|
HTML HTML5 HTMLタグ スマートフォン |
CSS CSSプロパティ CSS・HTML便利ツール |
HTML色見本 配色組み合わせツール 特殊文字 |
JAVA Android |
PHP Smarty修飾子 EXCEL |
*このページは web-dou.com のアーカイブです。(2025年 サイト統合)
(式1)
\[ f(x) = \sum_{n=1}^\infty\frac{1}{n^x} \](式2)
\[ \int_0^{2\pi} \sin x \mathrm{d}x = 0 \](式3)
文章中に \( f(x) f'(x) = ax + by + C \) のような数式も表示できます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<!-- ①ヘッダにMathJaxを定義 //-->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ["\(","\)"]] } });
</script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script>
</head>
<body>
<!-- ②数式を記述 //-->
\[ \int_0^{2\pi} \sin x \mathrm{d}x = 0 \]
\[ 3x + 4y = 10 \]
</body>
</html>