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 |
Tags
- matrix-vector product
- nonhomogeneous linear system
- Big-O 예제
- NumPy
- 이진 탐색
- 코틀린 Hello World!
- Big Omega
- homogeneous linear system
- matrix fo a linear transformation
- 빅오메가
- linear dependence
- nontrivial solution
- 빅세타
- solutions of matrix equation
- 배열 섞기
- 알고리즘 분석의 실례
- 빅오 표기법
- 랜덤 순서 배열
- Big-Oh 예제
- matrix trnasformations
- itertools
- Big-Oh notation
- trivial solution
- recursive algorithms
- 코틀린 시작하기
- one-to-one
- python
- Big Theta
- 재귀함수
- 일차변환
Archives
- Today
- Total
코딩 연습
(emacs) AUCTeX cannot find a working TeX distribution 본문
반응형
리눅스에서 PATH 에 tex 디렉토리를 추가했음에도 불구하고
AUCTeX cannot find a working TeX distribution
라는 메세지를 만날 수 있다.
이런 메세지를 만난다면 init.el (doom emacs 의 경우는 config.el)에 다음의 내용을 추가하면 된다.
(setenv "PATH" (concat "/usr/local/texlive/2021/bin/x86_64-linux:" (getenv "PATH")))
(add-to-list 'exec-path "/usr/local/texlive/2021/bin/x86_64-linux")
반응형
'LaTeX' 카테고리의 다른 글
(LaTeX) 원문자 이상하게 나올 때 (0) | 2022.01.21 |
---|---|
(LaTeX) enumerate 에서 들여쓰기 (0) | 2022.01.21 |
(LaTeX) 문서의 일부분만 줄간격을 변경하고 싶을 때 (0) | 2021.07.19 |
svg 파일을 pdf 로 변환하기 (0) | 2021.07.15 |
enumerate 에 align 수식이 들어갈 때, 수직 정렬 문제 (0) | 2021.07.15 |
Comments