Program

윈도우 10 LaTeX 설치 - TexLive 2021

흰라면 2021. 6. 17. 10:53

Tex Live 공식 홈페이지에 접속합니다.

http://tug.org/texlive/acquire-netinstall.html

 

Installing TeX Live over the Internet - TeX Users Group

Installing TeX Live over the Internet TeX Live 2021 was released on April 1. For typical needs, we recommend starting the TeX Live installation by downloading install-tl-windows.exe for Windows (~20mb), or install-tl-unx.tar.gz (~5mb) for everything else.

tug.org

2번째 문단 첫째줄에 있는 'install-tl-windows.exe' 하이퍼링크를 클릭하여 설치 파일을 다운받습니다.

다운받은 설치파일을 관리자 권한으로 실행시킵니다.

install을 진행합니다.

그후 Tex Live 창이 하나 생기는데 좌측 하단의 advanced를 클릭해줍니다.

Selctions - Scheme - Change 버튼을 클릭합니다.

small scheme을 선택 후 OK를 클릭합니다.

그 후, Selections - N. of collections - Customize 버튼을 클릭합니다.

Languages에서 Korean을 선택합니다.

그 후 Install을 계속 진행합니다.

시간이 약간 걸립니다.

기다리다 보면 어느덧 설치 막바지에 다다릅니다.

완료가 되면 close를 눌러 설치창을 종료합니다.

그 후 TeXstudio 홈페이지에 접속하여 설치파일을 다운받습니다.

https://texstudio.org/

 

TeXstudio - A LaTeX editor

Welcome to TeXstudio TeXstudio is an integrated writing environment for creating LaTeX documents. Our goal is to make writing LaTeX as easy and comfortable as possible. Therefore TeXstudio has numerous features like syntax-highlighting, integrated viewer,

texstudio.org

TeXstudio 설치를 완료합니다.

파일 - 새로만들기를 해서 새로운 LaTeX문서를 생성합니다.

% -*- coding: utf-8 -*- 
\documentclass{oblivoir} 
\usepackage[utf8]{inputenc} 
\usepackage{kotex} 
\title{First \LaTeX\ 문서} 
\author{Me}
 \begin{document} 
 	\maketitle \LaTeX\ 문서입니다. 한글을 사용하려면 \verb|\usepackage{kotex}|을 사용해야 합니다. 
 \end{document}

위와 같은 내용을 입력하고, 파일을 저장한뒤 F5를 눌러 컴파일을 진행합니다.

tex 파일 저장 위치에 pdf가 생성되면서 위와 같이 성공적으로 컴파일이 완료되는 것을 확인할 수 있습니다.