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 fo a linear transformation
- recursive algorithms
- 빅오 표기법
- homogeneous linear system
- itertools
- Big-Oh 예제
- python
- 빅오메가
- 알고리즘 분석의 실례
- linear dependence
- 코틀린 Hello World!
- Big Omega
- 랜덤 순서 배열
- nontrivial solution
- 코틀린 시작하기
- trivial solution
- matrix trnasformations
- Big-Oh notation
- nonhomogeneous linear system
- 페이지 겹칩
- includepdf
- one-to-one
- Big Theta
- Big-O 예제
- NumPy
- 일차변환
- 배열 섞기
- 이진 탐색
- 빅세타
- 재귀함수
Archives
- Today
- Total
목록2025/09 (1)
코딩 연습
챕터별로 tex 파일 만들고 컴파일하기
latex 로 책을 만들 때, chap1.tex, chap2.tex, chap3.tex 로 tex 파일을 만들고 이 파일들을 book.tex 파일에서 하나로 합치는 구조로 작업을 하고 싶다면 다음과 같이 하면 된다. book.tex 파일은 아래와 같아야 한다.\documentclass{book}\usepackage{subfiles}\begin{document}\tableofcontents\subfile{chap1.tex}\subfile{chap2.tex}\subfile{chap3.tex}\end{document} chap1.tex 파일은 다음과 같아야 한다.\documentclass[book.tex]{subfiles}\begin{document}\chapter{첫 번째 장}여기에 chap1 내용이 들어갑..
LaTeX
2025. 9. 10. 00:40