Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
jupyter notebook 커스터마이징 본문
[출처] https://frhyme.github.io/python-lib/jupyter_notebook_font_change/
나는 custom.css 파일을 아래와 같이 설정했다.
.CodeMirror pre {font-family: D2Coding; font-size: 12pt; line-height: 140%;}
/* .container { width:100% !important; } */
div.output pre, div.output_area pre {
font-family: Consolas;
font-size: 12pt;
}
< 2019-09-04 >
Jupyter Notebook에서 어두운 테마를 사용하다가 다시 원래대로 돌아왔고, 폰트 교체를 위해 다음과 같이 custom.css 파일을 교체했다.
custom.css 파일의 위치: C:\Users\{사용자이름}\.jupyter\custom\custom.css
Anaconda 에서 환경을 만들어서 activate 하고 사용하고 있어도 상관없이 저 위치에 custom.css 파일을 갖다놓으면
Jupyter Notebook 에서 적용이 된다.
.CodeMirror, div.CodeMirror-code, div.output_area pre, div.output_wrapper pre {
font-family: D2Coding !important;
font-size: 14px;
}
div#notebook, div.prompt {
font-family: D2Coding !important;
font-size: 14px;
}
'Python' 카테고리의 다른 글
Jupyter Notebook - 디버깅, PixieDebugger (0) | 2019.08.10 |
---|---|
matplotlib 한글폰트 사용하기 (2) | 2019.03.31 |
Jupyter notebook 테마(theme) 적용하기 (0) | 2019.01.21 |
Python for Econometrics (0) | 2018.06.13 |
python 프로그램 redirect 시 파일 쓰기 지연의 해결책 (1) | 2018.01.26 |
Comments