| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- matrix fo a linear transformation
- matrix trnasformations
- homogeneous linear system
- recursive algorithms
- nonhomogeneous linear system
- includepdf
- Big-Oh 예제
- 알고리즘 분석의 실례
- Big Omega
- 빅오메가
- 코틀린 Hello World!
- itertools
- trivial solution
- 배열 섞기
- 페이지 겹칩
- 랜덤 순서 배열
- Big-Oh notation
- 재귀함수
- linear dependence
- one-to-one
- 일차변환
- nontrivial solution
- python
- NumPy
- 빅세타
- 코틀린 시작하기
- Big Theta
- 이진 탐색
- Big-O 예제
- 빅오 표기법
- Today
- Total
코딩 연습
f(x) = \begin{cases} \dfrac{x^2-a}{x-2} & (x \ne 2) \\ b & (x=2) \end{cases} 라고 했을 때, 다음과 같이 b의 위치가 왼쪽 정렬이 된 것을 볼 수 있다. b의 위치를 중앙으로 바꾸기 위해서는 b 앞에 /hfil 을 적어주면 된다. f(x) = \begin{cases} \dfrac{x^2-a}{x-2} & (x \ne 2) \\ \hfil b & (x=2) \end{cases}
$\left (a^{m} \right )^{n} = \underbrace{ \overbrace{(a \times \cdots \times a)}^{a\text{가 }m\text{개}} \times \overbrace{(a \times \cdots \times a)}^{a\text{가 }m\text{개}} \times \cdots \times \overbrace{(a \times \cdots \times a)}^{a\text{가 }m\text{개}}}_{\text{괄호가 }n\text{개} } =\underbrace{a \times a \times \cdots \times a}_{mn\text{개}} =a^{mn}$
TeX 에서 \textcircled{1} 을 사용하면 다음과 같이 원문자가 이상하게 나온다. 이때는 다음의 방법을 사용하면 된다. \documentclass{article} \usepackage{tikz} \newcommand*\circled[1]{\tikz[baseline=(char.base)]{ \node[shape=circle,draw,inner sep=1pt] (char) {#1};}} \begin{document} \circled{1} \circled{2} \circled{3} \end{document} 결과는 다음과 같다.