[Etc] LaTeX/Overleaf 사용팁

2023. 10. 10. 18:24Run/Etc

 

 

1. 글 다음줄로 넘기기

//

 

 

2. 들여쓰기 제거

\noindent

 

3. 이미지

\begin{figure}[htb!]
\caption{캡션 내용}
\centerline{\includegraphics[width=너비cm]{이미지경로}}
\end{figure}
\begin{figure*}[htb!]
\centering
\caption{캡션 내용}
\subfigure{\includegraphics[width=이미지1너비cm]{이미지1경로}}
\subfigure{\includegraphics[width=이미지2너비]{이미지2경로}}
\end{figure*}

 

4. 표

https://www.tablesgenerator.com/ - 이 사이트에서 쉽게 생성할 수 있다.

 

5. 수식 (예시)

$$ P(40) = \frac{e^{-30} \times 30^{40}}{40!} = 0.013943463479968 $$
$$ \therefore  1.39\% \\ $$ \\

 

$$ n = 25, p = 0.6, q = 0.4 $$
$$ \sqrt{n \times p \times \ q} = \sqrt{25 \times 0.6 \times 0.4} = \sqrt{6}$$

 

$$ P(265 < Y < 280) = P(\frac{265 - 272}{9} < Z < \frac{280 - 272}{9}) = P(\frac{-7}{9}< Z < \frac{8}{9}) $$
$$ = P(-0.78 < Z < 0.89) = P(Z < 0.89) - P(Z < -0.78) = P(Z < 0.89) - (1 - P(Z < 0.78)) $$
$$ = 0.8133 - (1 - 0.7823) = 0.8133 - 0.2177 = 0.5956 $$
$$ \therefore  59.56\% \\ $$

 

'Run > Etc' 카테고리의 다른 글

[Etc] Render Pipeline Converter 없음  (0) 2023.10.11
[Etc] Mitsuba Renderer 설치  (0) 2023.10.11
[Etc] NeRF-pytorch 코드 실행하기  (1) 2023.10.10
[Etc] RSA decryption  (0) 2023.10.10
[Etc] One-time Pad  (0) 2023.10.10