2.1.5 나만의 단축키(User snippets)

Step 1. json file열기(Open a json file) - 1

Command Palette를 입력하여 'snippets'를 검색하고 'Snippets: Configure User Snippets'를 클릭합니다.

Type Command Palette to search for 'snippets' and click 'Snippets: Configure User Snippets'.

Step 2. json file열기(Open a json file) - 2

'latex'을 입력하고 'latex (LaTeX)' 혹은 'latex.jason'을 클릭합니다.

Type 'latex' and click 'latex (LaTeX)' or 'latex.jason'.


Step 3. json file열기(Open a json file) - 3

다음과 같은 화면을 확인할 수 있습니다. 

You can see the right screen.


Step 4. Snippets 만들기(Making Snippets)

적혀있는 문법을 학습하고 snippets를 만든 후 저장하면 됩니다. 예를 들면 아래와 같은 코드로 'equation'을 간단하게 입력할 수 있습니다. 

You can learn the grammar written, make snippets, and save them. For example, you can simply enter 'equation' with the code below

"Equation without numbering": {

"prefix": "eq",

"body": [

    "\\begin{equation*}",

    "    $0",

    "\\end{equation*}"

    ]

}

Tip. 제공된 json file 사용하기(Using the offered json file)

Section 1.5에서 제공된 기본 문서팩의 json file을 사용할 수 있습니다. 파일명은 'latex.json'입니다.  사용자의 OS에 따라 json file가 이동해야할 위치가 다릅니다. 경로는 다음과 같습니다. 해당 경로에 json을 옮기면 됩니다. 

You can use the JSON file from the default document pack provided in Section 1.5. The file name is 'latex.json'. The location where the JSON file needs to be moved may vary depending on the user's operating system. The path is as follows. Simply move the JSON file to the respective path.

참고자료. json 코드 작성(Writing json code)

json 코드를 작성하는 자세한 내용은 김장수 교수님의 'Visual Studio Code를 사용하여 편리한 LaTeX 환경 구축하기 - Lecture 1'을 첨부합니다. 강의는 1:02:52부터 보시면 되고,  강의 자료는 3. User Snippets부터 보시면 됩니다.
차이점은 이러합니다. 김장수 교수님의 강의에서는 엔터를 '\n'으로 작성하고, 본 강의에서는 '["", ""]'과 같이 작성합니다.