기록하는삶

[Jupyter notebook/주피터노트북] 테마 설정, 목차 활성화 본문

AI/개발환경

[Jupyter notebook/주피터노트북] 테마 설정, 목차 활성화

mingchin 2021. 11. 17. 16:53
728x90
반응형

anaconda prompt에서 아래의 코드를 실행하면 된다.

 

1) 테마 설정

# jupyter notebook, jupyterthemes 설치

conda install jupyter notebook

pip install jupyterthemes

# onedork 테마 및 폰트 사이즈, 라인 간격 등 설정
jt -t onedork -T -N -kl -f roboto -fs 12 -tfs 11 -nfs 14 -tfs 14 -ofs 10 -cellw 90% -lineh 170 -cursc r -cursw 6

2) 목차 활성화

# extensions 설치

pip install jupyter_contrib_nbextensions

# Nbextensions 활성화

jupyter contrib nbextension install --user

위 코드를 실행하고 나면, jupyter notebook 홈에 다음과 같이 Nbextensions가 생긴다.

해당 탭에서 Table of Contents를 활성화하면, 아래와 같이 Markdown으로 목차를 활용할 수 있다.

 

728x90
반응형