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
                                        
                                    
                                    - nontrivial solution
- 랜덤 순서 배열
- 빅오메가
- Big-O 예제
- python
- includepdf
- 일차변환
- 빅오 표기법
- 코틀린 Hello World!
- Big-Oh 예제
- Big Theta
- 코틀린 시작하기
- one-to-one
- itertools
- 이진 탐색
- NumPy
- matrix trnasformations
- linear dependence
- 알고리즘 분석의 실례
- 배열 섞기
- Big Omega
- 재귀함수
- homogeneous linear system
- 빅세타
- nonhomogeneous linear system
- trivial solution
- 페이지 겹칩
- recursive algorithms
- matrix fo a linear transformation
- Big-Oh notation
                                        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