| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 코틀린 Hello World!
- Big Theta
- linear dependence
- one-to-one
- Big-Oh 예제
- 빅오메가
- 페이지 겹칩
- 코틀린 시작하기
- nontrivial solution
- 빅오 표기법
- trivial solution
- 빅세타
- matrix trnasformations
- 일차변환
- matrix fo a linear transformation
- Big-Oh notation
- homogeneous linear system
- 이진 탐색
- itertools
- NumPy
- python
- recursive algorithms
- 재귀함수
- 랜덤 순서 배열
- 배열 섞기
- 알고리즘 분석의 실례
- includepdf
- Big-O 예제
- nonhomogeneous linear system
- Big Omega
- Today
- Total
코딩 연습
enumerate 에서 들여쓰기를 하고 싶으면 다음과 같이 \begin{enumerate} 다음에 \setlength{\itemindent}{1cm} 를 적어주면 된다. 두 함수 $f \; : \; X \to Y$, $g \; : \; U \to V$에서 정의역, 공역 그리고 함숫값이 같을 때, 즉 \begin{enumerate}[(1)]\setlength{\itemindent}{1cm} \item $X=U$, $Y=V$ \item 정의역의 모든 원소에 대하여 $f(x)=g(x)$이다. \end{enumerate} 를 만족할 때, 두 함수 $f$와 $g$는 서로 같다고 하며 $f=g$로 나타낸다. 결과는 다음과 같다.
리눅스에서 PATH 에 tex 디렉토리를 추가했음에도 불구하고 AUCTeX cannot find a working TeX distribution 라는 메세지를 만날 수 있다. 이런 메세지를 만난다면 init.el (doom emacs 의 경우는 config.el)에 다음의 내용을 추가하면 된다. (setenv "PATH" (concat "/usr/local/texlive/2021/bin/x86_64-linux:" (getenv "PATH"))) (add-to-list 'exec-path "/usr/local/texlive/2021/bin/x86_64-linux")
spacevim 에서 julia layer 를 설정하고 "이름.jl" 파일을 편집하면 리턴키를 누를 때마다 recursive mapping이라는 메세지만 뜨고 다음줄로 넘어가지 않는 현상이 발생한다. 이 문제를 해결하기 위해서는 ~/.SpaceVim/autoload/SpaceVim/layers/lang/julia.vim 파일을 열어서 다음과 같이 수정해야 한다. let g:latex_to_unicode_auto = 1 위와 같은 부분을 찾아서 "1" 부분을 "0"으로 설정해주면 된다.