일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Big-Oh notation
- Big Theta
- 코틀린 Hello World!
- 알고리즘 분석의 실례
- trivial solution
- nonhomogeneous linear system
- Big Omega
- nontrivial solution
- 빅오 표기법
- 랜덤 순서 배열
- 빅세타
- 재귀함수
- Big-Oh 예제
- matrix fo a linear transformation
- 배열 섞기
- Big-O 예제
- solutions of matrix equation
- recursive algorithms
- python
- 빅오메가
- itertools
- 이진 탐색
- 코틀린 시작하기
- NumPy
- one-to-one
- 일차변환
- linear dependence
- matrix-vector product
- homogeneous linear system
- matrix trnasformations
- Today
- Total
목록분류 전체보기 (156)
코딩 연습
emacs doom 에서 yas-snippets을 잘 사용하고 있었는데, 어느날 갑자기 내가 만든 custom snippets 들이 로딩이 안되어 사용이 불가능한 상황이 발생했다.새롭게 만들어 넣으면 맨 마지막 snippet 만 로딩이 되고, 앞선 snippet 들은 모두 언로딩되는 현상이 반복되어,검색에 검색을 거듭해본 결과 snippet 파일에서 uuid 부분을 설정해주면 해결된다는 사실을 알아냈다. # -*- mode: snippet -*-# name: choice box# uuid: JK_choose_box# key: >cb# condition: t# --\begin{ChooseBox}{보기} \begin{enumerate}[ㄱ.] \end{enumerate}\end{ChooseBox} uuid:
emacs doom 을 사용할 때는 config.el 에 다음을 추가해주며 된다. (add-to-list 'auto-mode-alist '("\\.tex\\'" . latex-mode))
\documentclass{article}\usepackage{cancel}\begin{document}$\dfrac{a \cancel{b}}{\cancel{b}}=a$\end{document} 결과는 다음과 같다. \cancel 대신 다음 것들도 사용이 가능하다. \bcancel : 역슬래쉬로 지우기\xcancel : X 로 지우기
enumerate 의 시작 번호를 2 로 하고 싶을 때는 \begin{enuerate}[start=2]\item 어쩌구 저쩌구\end{enumerate} 과 같이 start=(원하는 번호)를 추가하면 된다.
\documentclass{article} \usepackage{graphicx} \makeatletter \DeclareFontFamily{U}{tipa}{} \DeclareFontShape{U}{tipa}{m}{n}{tipa10}{} \newcommand{\arc@char}{{\usefont{U}{tipa}{m}{n}\symbol{62}}}% \newcommand{\arc}[1]{\mathpalette\arc@arc{#1}} \newcommand{\arc@arc}[2]{% \sbox0{$\m@th#1#2$}% \vbox{ \hbox{\resizebox{\wd0}{\height}{\arc@char}} \nointerlineskip \box0 }% } \makeatother \begin{document}..
코딩연습 블로그에서는 어떠한 개인정보도 수집하고 있지 않습니다. 다만 구글 광고가 게재되고 있는 관계로 구글에서 여러분의 개인정보를 수집할 가능성이 있습니다. 자세한 사항은 구글 개인정보처림방침을 확인하시기 바랍니다.
일단 패키지 추가 \usepackage{endnotes} 미주 넣고자 하는 위치에 \endnote{내용} 미주가 들어갈 파일의 맨 마지막 \end{document} 전에 \newpage \theendnotes 미주의 번호가 윗첨자로 들어가는 것이 짜증날 때 \usepackage{xpatch} 를 추가한 후, \makeatletter \xpretocmd{\theendnotes}{% \xpatchcmd{\@makeenmark}{\hbox{\@textsuperscript{\normalfont\@theenmark}}}{% \hbox{\normalfont\theenmark.\space}% }{}{}% }{}{} \makeatother 미주 제목(?) "Note" 를 다른 것으로 바꾸고 싶을 때 \renewcomm..
extensions 를 열고 "Legacy (GTK3) Theme Scheme Auto Switcher" 를 끄면 문제 해결!!!
\setlength{\parindent}{0pt}
\usepackage{multicol} \setlength\columnsep{10mm} \setlength\columnseprule{0.4pt} 을 사용하여 다단을 나누게 되면 단 구분선이 아래 그림 처럼 내용에 맞게 잘려 나온다. 이 구분선을 페이지의 끝까지 나오게 하려면 \usepackage{multicolrule} 로 바꾼 후, \begin{document} 윗 줄에 \SetMCRule{width=0.5pt,line-style=solid,extend-fill, extend-reserve=10pt} 을 넣어주면 된다. 이때 extend-reserve = 10pt 는 페이지 아래쪽에서 10pt 떨어진 지점까지만 구분선을 넣겠다는 뜻이다.