
yaz_present는 LaTeX 문서를 HTML로 변환하는 도구입니다. 기본 옵션은 다음과 같습니다.
- `-o` 옵션: 생성된 HTML 파일의 이름을 지정합니다. 예를 들어, `yaz_present -o hello.html document.tex` 명령을 실행하면 `hello.html` 파일이 생성됩니다.
- `-t` 옵션: LaTeX 문서의 제목을 지정합니다. 예를 들어, `yaz_present -o hello.html -t "Hello World" document.tex` 명령을 실행하면 HTML 문서의 제목이 "Hello World"로 지정됩니다.
- `-s` 옵션: HTML 문서의 스타일을 지정합니다. 예를 들어, `yaz_present -o hello.html -s style.css document.tex` 명령을 실행하면 HTML 문서의 스타일이 `style.css` 파일에 따라 지정됩니다.
yaz_present를 사용하여 LaTeX 문서를 생성할 때, LaTeX 문서를 작성한 후 `yaz_present` 명령을 실행하여 HTML 문서를 생성할 수 있습니다. 예를 들어, 다음 LaTeX 문서를 작성한 후 `yaz_present -o hello.html -t "Hello World" document.tex` 명령을 실행하면 `hello.html` 파일이 생성되고, HTML 문서의 제목이 "Hello World"로 지정됩니다.
#hostingforum.kr
latex
documentclass{article}
begin{document}
title{Hello World}
maketitle
end{document}
이러한 예제를 참고하여 yaz_present를 사용하여 LaTeX 문서를 생성할 수 있습니다.
2025-03-28 06:42