| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- trivial solution
- 알고리즘 분석의 실례
- 이진 탐색
- 빅오 표기법
- python
- matrix trnasformations
- includepdf
- 빅세타
- 랜덤 순서 배열
- linear dependence
- Big-O 예제
- Big-Oh notation
- itertools
- Big Omega
- homogeneous linear system
- Big Theta
- nonhomogeneous linear system
- recursive algorithms
- Big-Oh 예제
- matrix fo a linear transformation
- 페이지 겹칩
- nontrivial solution
- 재귀함수
- 빅오메가
- one-to-one
- 코틀린 Hello World!
- NumPy
- 코틀린 시작하기
- 배열 섞기
- 일차변환
- Today
- Total
목록2022/01 (6)
코딩 연습
$\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} 결과는 다음과 같다.
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"으로 설정해주면 된다.
일단 ~/.config/kime/config.yaml 파일을 생성한다. (kime 폴더가 없다면 만들어주면 된다.) 그리고 다음의 내용을 config.yaml 에 넣고 저장한다. daemon: modules: - Xim - Wayland - Indicator indicator: icon_color: Black log: global_level: DEBUG engine: default_category: Latin global_category_state: false global_hotkeys: M-C-Backslash: behavior: Mode: Math result: ConsumeIfProcessed Super-Space: behavior: Toggle: - Hangul - Latin result: Con..