ThesisTemplate
No description available.
파일 탐색기
- CODEOWNERS
- 0_abstract.tex
- 0_acknowledgments.tex
- 0_resume.tex
- 1_introduction.tex
- X_appendix_X.tex
- X_chapter.tex
- X_conclusion.tex
- 1_Memento_thesesPUN_Ciaco.pdf
- 2_Thesis_BondeCommande_SubmissionForm.xlsx
- 3_TheseCouverture.xlsx
- cs_faculty_logo.png
- droit-color.svg
- droit-gray.svg
- eco-color.svg
- eco-gray.svg
- info-color.svg
- info-gray.svg
- med-color.svg
- med-gray.svg
- philo-color.svg
- philo-gray.svg
- sciences-color.svg
- sciences-gray.svg
- unamur-black.svg
- unamur-color.svg
- unamur-gray.svg
- bibliography.bib
- citation.tex
- glossary.tex
- presse_universitaire_namur.tex
- index.ist
- umemoir.cls
- return_color_pages.py
- .gitignore
- main.tex
- Makefile
- Preview.pdf
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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
설명 보기 ▼
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
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
설명 보기 ▼
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 문서 컴파일:
