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?

Qiita Markdown Latex CheatSheet(自分用)

Last updated at Posted at 2024-07-27

はじめに

私がQiitaなどで記事を投稿する際に困ったことを簡単にメモして記載します。
随時更新します。

Markdown

Latex

文章内に数式を入力したい

\$と\$で文字を囲む

例:

    $f_j(x)$

出力
$f_j(x)$

数式の開始位置を揃えたい

alignを使う

開始位置を揃えたい場所に「&」、改行を「\\\」で入力し、align で囲う
例: 

    \begin{align}
    x &= 4
    x^2  &= 16
    \end{align}

出力:

    \begin{align}
    x &= 4 \\
    x^2  &= 16
    \end{align}

全般

脚注を入れたい

入れたい箇所に[^1], 下部に [^1]:説明 を記載する

例:

    hogehoge [^1]
    ....
    [^1]: 脚注の使い方の説明

出力:
hogehoge1

折りたたみたい

/details と入力する

参考

align

脚注

折りたたみ

  1. 脚注の使い方の説明

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?