일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- matrix fo a linear transformation
- 배열 섞기
- Big-Oh notation
- 빅오 표기법
- NumPy
- 페이지 겹칩
- Big-O 예제
- 랜덤 순서 배열
- 알고리즘 분석의 실례
- Big-Oh 예제
- includepdf
- homogeneous linear system
- 재귀함수
- one-to-one
- 이진 탐색
- Big Theta
- matrix trnasformations
- 일차변환
- python
- linear dependence
- 빅오메가
- 코틀린 Hello World!
- recursive algorithms
- itertools
- Big Omega
- nonhomogeneous linear system
- 코틀린 시작하기
- trivial solution
- nontrivial solution
- 빅세타
- Today
- Total
목록분류 전체보기 (159)
코딩 연습
문자를 숫자로 바꾸는 경우 julia> parse(Int64, "53") 53 julia> parse(Float64, "1.414") 1.414 julia> parse(Int64, "balck pink") ERROR: ArgumentError: invalid base 10 digit 'b' in "balck pink" 소수를 정수로 바꾸는 경우 julia> trunc(Int64, 3.141592) 3 julia> trunc(Int64, -3.141592) -3 숫자를 문자로 바꾸는 경우 julia> string(123) "123" julia> string(2.718) "2.718"
garuda 리눅스가 괜찮다는 소문을 듣고, 설치를 시도해 봤다. 다른 것은 모르겠는데, add/remove software 가 설치되어 있지 않은 것이 불편했다. 다음과 같이 설치할 수 있다. sudo pacman -Sy --needed base-devel git wget yajl git clone https://aur.archlinux.org/yay.git cd yay makepkg -si sudo yay -S pamac-aur

1. 자연수의 나눗셈 # longdivison 패키지를 사용하면 다음과 같은 결과를 얻을 수 있다. \documentclass[a4paper,10pt]{article} \usepackage{amsmath} \usepackage{longdivision} \begin{document} \intlongdivision{77}{3} \end{document} 2. 다항식의 나눗셈 # polynom 패키지를 사용하면 다음과 같은 결과를 얻을 수 있다. \documentclass[a4paper,10pt]{article} \usepackage{amsmath} \usepackage{polynom} \begin{document} \polylongdiv{2x^2-3x+1}{2x+1} \end{document} 뭔가 부자연스..

tasks 라는 패키지가 필요하다. \documentclass{article} \usepackage{tasks} \usepackage{kotex} \begin{document} \noindent 다음 중 동물의 새끼가 아닌 것은? \begin{tasks}[label=\textcircled{\scriptsize\arabic*}](3) \task 강아지 \task 송아지 \task 망아지 \task 병아리 \task 아지랑이 \end{tasks} \bigskip \noindent 다음 중 동물의 새끼가 아닌 것은? \begin{tasks}[label=\textcircled{\scriptsize\arabic*}](2) \task 강아지 \task 송아지 \task 망아지 \task 병아리 \task 아지랑이 ..

LaTeX 에서 수식은 가운데 정렬이 기본이다. 왼쪽 정렬을 하려면 다음과 같이 하면 된다. % 기본은 가운데 정렬이다. \begin{align*} x &= y^2 \\ &= z^3 \end{align*} %이렇게 하면 왼쪽 정렬이 된다. \begin{flalign*} x &= y^2 \\ &= z^3 && \end{flalign*} align 뒤에 * 를 붙인 것은 수식번호를 생략하기 위해서다. flalign 에서 fl 은 flushleft 가 아닐까 생각해 본다. 중요한 것은 수식의 맨 뒤에 && 를 붙여야 왼쪽 정렬이 된다는 것이다. 결과는 다음과 같다.

첫 번째 방법 \documentclass{oblivoir} \usepackage{dhucs-enumerate} \usepackage[most]{tcolorbox} \begin{document} \begin{tcolorbox}[enhanced,boxrule=0.2mm, title=보기, colframe=black,colback=white,colbacktitle=white, coltitle=black,attach boxed title to top center= {yshift=-0.25mm-\tcboxedtitleheight/2,yshifttext=2mm-\tcboxedtitleheight/2}, boxed title style={boxrule=-0.2mm, frame code={ \path[tcb fill ..

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

일단 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 의 종류는 다음과 같다.