Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- Big-Oh 예제
- 배열 섞기
- 이진 탐색
- Big Omega
- 빅오 표기법
- 재귀함수
- 빅세타
- 페이지 겹칩
- recursive algorithms
- 랜덤 순서 배열
- itertools
- matrix fo a linear transformation
- 빅오메가
- one-to-one
- nontrivial solution
- 알고리즘 분석의 실례
- nonhomogeneous linear system
- includepdf
- Big Theta
- homogeneous linear system
- linear dependence
- python
- NumPy
- 코틀린 시작하기
- 코틀린 Hello World!
- 일차변환
- Big-O 예제
- matrix trnasformations
- trivial solution
- Big-Oh notation
Archives
- Today
- Total
코딩 연습
enumerate 의 시작 번호를 변경하는 방법
enumerate 의 시작 번호를 2 로 하고 싶을 때는 \begin{enuerate}[start=2]\item 어쩌구 저쩌구\end{enumerate} 과 같이 start=(원하는 번호)를 추가하면 된다.
LaTeX
2024. 11. 16. 15:49
\documentclass{article} \usepackage{graphicx} \makeatletter \DeclareFontFamily{U}{tipa}{} \DeclareFontShape{U}{tipa}{m}{n}{tipa10}{} \newcommand{\arc@char}{{\usefont{U}{tipa}{m}{n}\symbol{62}}}% \newcommand{\arc}[1]{\mathpalette\arc@arc{#1}} \newcommand{\arc@arc}[2]{% \sbox0{$\m@th#1#2$}% \vbox{ \hbox{\resizebox{\wd0}{\height}{\arc@char}} \nointerlineskip \box0 }% } \makeatother \begin{document}..
LaTeX
2024. 3. 18. 14:25