ThesisTemplate

(★ 20)

No description available.

파일 탐색기

  • .gitignore
  • main.tex
  • Makefile
  • Preview.pdf
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

git submodule

설명 보기 ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

latex

설명 보기 ▼

LaTeX 소스 파일에서 DVI 문서를 컴파일합니다.
더 많은 정보: <https://texdoc.org/serve/tex.man1.pdf/0>.

latex {{source.tex}}

DVI 문서 컴파일:

latex -output-directory={{path/to/directory}} {{source.tex}}

출력 디렉토리를 지정하여 DVI 문서 컴파일:

latex -halt-on-error {{source.tex}}

각 오류 발생 시 종료하며 DVI 문서 컴파일:

🔍

pdflatex

설명 보기 ▼

LaTeX 소스 파일을 PDF 문서로 컴파일.
더 많은 정보: <https://manned.org/pdflatex>.

pdflatex {{source.tex}}

PDF 문서 컴파일:

pdflatex -output-directory={{path/to/directory}} {{source.tex}}

출력 디렉토리를 지정하여 PDF 문서 컴파일:

pdflatex -halt-on-error {{source.tex}}

각 오류에서 중지하며 PDF 문서 컴파일:

// repository documentation