상세 컨텐츠

본문 제목

Latex 수식 기록

문서

by Riella 2023. 9. 5. 11:51

본문

728x90

*모르는거 생길때마다 업데이트 할 예정

[수식에서 띄어쓰기] Spacing in math mode

\quad
\qquad

\qquad\qquad\qquad
위처럼 붙여쓰는것도 가능

 

[가로 3점(...) 세로 3점 넣기] Inserting Ellipses

가운데 점 3개
세로 점 3개

\ldots (...)
\cdots (가운데 점 3개)
\vdots (세로로 점 3개)
\ddots (대각선 점 3개 - matrix등에 활용)

 

[수식 왼쪽 괄호로 묶기] How to align left bracket equation

여러 방법이 있겠지만 cases를 활용하면 된다.

\begin{equation*}
    T(n) = 
    \begin{cases}
        \Theta(1) \qquad\qquad\qquad (n = 1) \\
        2T(n/2) + \Theta(n) \quad (n > 1)
    \end{cases}
\end{equation*}

 

[수식 줄바꿈 하기] Why does \\ not return a new line in an equation?

수식모드에서 수식을 적을때 equation같은 경우는 수식 줄 바꿈이 안된다.

그래서 aligned를 활용했다.

\begin{equation*}
    \begin{aligned}
    a + b = c \\
    d + e = f
    \end{aligned}
\end{equation*}


[limit 밑단에 화살표 넣기] Limits Correct arrow for mathematical limits

 

$ \lim_{n \to \infty}^{hehe} f(x)$

\[
    \lim_{n \to \infty} f(x)
\]

 

[mathematical symbols]

\infty # 무한대
\Theta \theta # Θ θ
\Omega \omega # Ω ω
\text{O} \text{o} # O o

 

*Tree depth와 level 둘다 root는 0임. (트리 패키지 적을때 추후 사용)

[mathematical operations]

$3\times2 = 6$

[코드 추가] Code listing

아래는 그냥 새로운 레이텍 파일을 만들어도 돌아가게 해둠

\documentclass{article}
\usepackage{listings} % begin{document} 위에 패키지 불러와야함
\usepackage{xcolor} % 색 설정을 위해
% 이건 스타일 서식임. 설정 안하면 그냥 검정색으로 보임
\lstdefinestyle{codestyle}{
	frame=single,
	basicstyle=\ttfamily\footnotesize,
	keywordstyle=\bfseries\color{cyan},
	commentstyle=\itshape\color{teal},
	stringstyle=\color{orange},
	numberstyle=\sffamily\scriptsize\color{gray},
	showspaces=false,
	showstringspaces=false,
	showtabs=false,
	tabsize=4,
	breakatwhitespace=false,
	breaklines=true,
	keepspaces=true,
	captionpos=b,
	numbers=left,
	numbersep=5pt}
\lstset{style=codestyle}



\begin{document}
\begin{lstlisting}[language=Python]
import numpy as np

# This is example python code
A = np.arange(10)
print(A)
B = "I want to rest"
print(B)
if A[0] == 0:
    print("A[0] = zero")
\end{lstlisting}
\end{document}

서식 설정을 하지 않은 경우
서식 설정을 한 경우

[Page reference] pageref

레이블이 있는 페이지를 레퍼런스 하는거임

해당 페이지 안
\label{squirtle}

--------------
쓸때
page \pageref{squirtle}

[Arrow]

\leftarrow
\rightarrow
\leftrightarrow

관련글 더보기

댓글 영역