티스토리 뷰

반응형

이글은 쥬피터노트북에서 폰트를 변경하는 방법을 설명한다.

 

1. 우선 cmd 명령어 창에서 다음 명령어를 실행하여 .jupyter 폴더를 생성한다.

 

jupyter notebook --generate-config 

 

 

2. C:\Users\[사용자이름]\.jupyter\custom 폴더로 이동해서 custom 폴더를 새로 생성하고 이 폴더 안에

    custom.css 파일 생성한 다음 아래 <custom.css> 파일 내용을 입력하고 저장한 후

    jupyter notebook를 다시 시작하면 된다.

 

   여기서는 D2Coding 폰트로 변경하였다.

 

 

GitHub - naver/d2codingfont: D2 Coding 글꼴

D2 Coding 글꼴. Contribute to naver/d2codingfont development by creating an account on GitHub.

github.com

 

 

<cumstom.css> 파일 내용

.container { width:95% !important; }

div.CodeMirror,

div.CodeMirror pre { /*코드 블록*/
font-family: D2Coding, Consolas;
font-size: 11pt;
line-height: 150%;
}

.text_cell_render { /*마크다운*/
font-family: Consolas;
}

.input_prompt { /*줄번호*/
font-family: D2Coding, Consolas;
}

.output_result pre { /*출력결과-맨마지막 출력*/
font-family: D2Coding, Consolas;
}

.output_stdout pre { /*출력결과-긴출력, 중간출력*/
font-family: D2Coding, Consolas;
}

.output_area { /*표*/
font-family: D2Coding, Consolas;
}

.CodeMirror-dialog, .CodeMirror-dialog .CodeMirror-search-field, .terminal-app .terminal {
font-family: D2Coding, Consolas;
}
반응형
댓글