Markdown 연습

1 minute read

제목1

제목2

제목3

제목4

제목5
제목6

내용

내용

N위첨자

N아래첨자

글자색

글자색

글자색

글자색

굵은 글씨

기울임꼴

취소선

배경

‘표 만들기’ 이동

  • 리스트1
  • 리스트2
  • 리스트3
    • 하위 리스트1
    • 하위 리스트2
  1. 리스트1
  2. 리스트2
  3. 리스트3

링크

인용

코드
//java 코드
import java.util.Scanner;

public class Main_bj_2739_구구단 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();

        for (int i = 1; i <= 9; i++)
            System.out.println(n + " * " + i + " = " + (n * i));
    }
}

  • to-do1
  • to-do2
  • to-do3
  • to-do4

github gist

using html syntax

<script src="https://gist.github.com/shb0328/622c9e7f7020e104f1af94cdcad36cdb.js"></script>

using jekyll-gist

<script src="https://gist.github.com/shb0328/622c9e7f7020e104f1af94cdcad36cdb.js"> </script>

표 만들기

|1|2|3|
|:---|---:|:---:|
|왼쪽정렬|오른쪽정렬|중앙정렬|
||확장||
|**굵은 글씨**|<span style="color:red">빨간색</span>|`코드`|
1 2 3
왼쪽정렬 오른쪽정렬 중앙정렬
  확장  
굵은 글씨 빨간색 코드

Emoji

Emoji Cheat Sheet :heart: :green_heart: :blue_heart: :purple_heart: :smile:

vs code 에서 emoji 미리보기를 위한 extension download.

210625140119.png

수식 표현하기

1) https://latex.codecogs.com/eqneditor/editor.php 2) html : hθ(x) = θo x + θ1x
h<sub>&theta;</sub>(x) = &theta;<sub>o</sub> x + &theta;<sub>1</sub>x

그리스 문자 및 기호

명령 기호 설명 -  
&ap; &ap; 비슷하다 almost equal, asymptotic  
&fnof; ƒ 함수 function, florin  
&radic; 루트 square root, radical sign  
&infin; 무한대 infinity  
&alpha;, &Alpha; α, Α 알파    
&beta;, &Beta; β, Β 베타    
&delta;, &Delta; δ, Δ 델타    
&epsilon;, &Epsilon; ε, Ε 입실론    
&gamma;, &Gamma; γ, Γ 감마    
&sigma;, &Sigma; σ, Σ 시그마    
&omega;, &Omega; ω, Ω 오메가    
&lambda;, &Lambda; λ, Λ 람다    
&rho;, &Rho; ρ, Ρ 로우    
&sum;, &Sum; ∑, &Sum; 합계    
&int;, &Int; ∫, &Int; 인티그랄    
&eta;, &Eta; η, Η 에타    
&zeta;, &Zeta; ζ, Ζ 제타    
&theta;, &Theta; θ, Θ 세타    
&phi;, &Phi; φ, Φ      
&psi;, &Psi; ψ, Ψ      

출처 : https://github.com/zeuseyera/Markdown_TongDal-kr

Updated: