0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Astroで数式を使いたい!LaTeX数式を表示させる方法について解説します。

Last updated at Posted at 2024-10-11

Astroでブログを書いている中で、数式を使いたいと思い、KaTeXを使ってLaTeX形式の数式の表示を実装しました。以下、その手順をご紹介します。


ステップ1: プラグインのインストール

まず、rehype-katexremark-mathをインストールします。

npm install rehype-katex remark-math

次に、astro.config.mjsを編集して、プラグインを設定します。

import { defineConfig } from 'astro/config';
import remarkMath from 'remark-math';
import rehypeKatex from 'rehype-katex';

export default defineConfig({
  markdown: {
    remarkPlugins: [remarkMath],
    rehypePlugins: [rehypeKatex],
  },
});

ステップ2: CSSの追加

数式を綺麗に表示するために、KaTeXのCSSをプロジェクトに追加します。

// src/layouts/Layout.astro (または任意のコンポーネント)
<head>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.4/dist/katex.min.css" integrity="sha384-vZTGshhcJwVjMEcoCsoDhbLMegZbDrg6eRmFwhl/8tSru3CTb5EgGF9aFLPeANtO" crossorigin="anonymous">
</head>

ステップ3: KaTeXで数式をレンダリング

数式をKaTeXでレンダリングするには、以下のように数式を囲みます。

  • インライン数式: $...$で囲む
  • ブロック数式: $$...$$で囲む

例:

$\sqrt{3x-1}+(1+x)^2$

結果:
$\sqrt{3x-1}+(1+x)^2$


まとめ

この手順を使えば、AstroでKaTeXを利用して簡単に数式を表示できます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?