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 |
31 |
Tags
- 배열 섞기
- 빅오 표기법
- 코틀린 시작하기
- NumPy
- Big-Oh notation
- 랜덤 순서 배열
- 빅오메가
- one-to-one
- Big Theta
- itertools
- matrix fo a linear transformation
- 이진 탐색
- 알고리즘 분석의 실례
- homogeneous linear system
- Big Omega
- python
- 일차변환
- Big-Oh 예제
- linear dependence
- includepdf
- 페이지 겹칩
- matrix trnasformations
- Big-O 예제
- 코틀린 Hello World!
- 빅세타
- nonhomogeneous linear system
- recursive algorithms
- nontrivial solution
- trivial solution
- 재귀함수
Archives
- Today
- Total
목록LaTeX (23)
코딩 연습

일단 다음과 같이 설정하고, 패키지를 추가한다. \documentclass{oblivoir} \usepackage{dhucs-enumerate} 다음과 같은 형식으로 항목 머리의 첫 글자를 옵션으로 지정한다. \begin{enumerate}[(가)] \item 강아지 \item 송아지 \item 망아지 \end{enumerate} 결과는 다음과 같다. \begin{enumerate}[ㄱ.] \item 강아지 \item 송아지 \item 망아지 \end{enumerate} 결과는 다음과 같다. 옵션으로 가능한 것은 가, ㄱ, ㉠, ㉮, ㈀, ㈎, ①, ⑴, ⒜, ⓐ, ⅰ, Ⅰ 등이 있다.
LaTeX
2021. 7. 6. 12:17

일단 preamble 에 \usepackage{pifont} 추가하고 다음과 같이 사용하면 된다. \begin{dinglist}{43} \item The first item in the list \item The second item in the list \item The third item in the list \end{dinglist} \begin{dingautolist}{192} \item The first item \item The second item \item The third item \end{dingautolist} 사용할 수 있는 bullet 의 종류는 다음과 같다.
LaTeX
2021. 7. 6. 02:56