Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- matrix trnasformations
- python
- 빅세타
- nonhomogeneous linear system
- 코틀린 Hello World!
- Big Theta
- 알고리즘 분석의 실례
- 빅오 표기법
- 재귀함수
- 일차변환
- one-to-one
- Big Omega
- matrix fo a linear transformation
- Big-Oh notation
- Big-O 예제
- 이진 탐색
- trivial solution
- itertools
- linear dependence
- matrix-vector product
- Big-Oh 예제
- NumPy
- 배열 섞기
- 빅오메가
- solutions of matrix equation
- nontrivial solution
- homogeneous linear system
- recursive algorithms
- 랜덤 순서 배열
- 코틀린 시작하기
Archives
- Today
- Total
코딩 연습
취소선 (cancel)
\documentclass{article}\usepackage{cancel}\begin{document}$\dfrac{a \cancel{b}}{\cancel{b}}=a$\end{document} 결과는 다음과 같다. \cancel 대신 다음 것들도 사용이 가능하다. \bcancel : 역슬래쉬로 지우기\xcancel : X 로 지우기
LaTeX
2024. 11. 19. 13:59
enumerate 의 시작 번호를 변경하는 방법
enumerate 의 시작 번호를 2 로 하고 싶을 때는 \begin{enuerate}[start=2]\item 어쩌구 저쩌구\end{enumerate} 과 같이 start=(원하는 번호)를 추가하면 된다.
LaTeX
2024. 11. 16. 15:49
부채꼴 "호" 를 나타내는 arc 를 제대로 표현하기
\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}..
LaTeX
2024. 3. 18. 14:25