{{{#!latex \TeX{} }}} 수학, 자연과학, 공학분야의 문서를 조판하는 프로그램. DonaldKnuth에 의해 개발됨. [[PDF]]포맷의 문서도 만들수 있다. 최근 [[XML]], DocBook등으로 확장중 http://www.tug.org 참고사이트 * 한글TeX사용자그룹 : [[KTUG]] * http://knot.kaist.ac.kr/htex/ * http://faq.ktug.or.kr/mywiki/ ---- == 수식테스트 == MoinMoin에서 TeX를 써먹을 수 있다. 수식, 화학식 작성시 유용하리라 짐작할 수 있다. 수식을 쓸때는 latex파서에 수식을 의미하는 $ $ 안에 쓴다. {{{ $$ {\pi^2 \over 6 }= 1 + {1 \over 2^2} + {1 \over 3^2} + ... + { 1 \over n^2} + ... $$ }}} {{{#!latex $$ {\pi^2 \over 6 }= 1 + {1 \over 2^2} + {1 \over 3^2} + ... + { 1 \over n^2} + ... $$ }}} {{{ $$ c^{2}=a^{2}+b^{2} $$ }}} {{{#!latex $$ c^{2}=a^{2}+b^{2} $$ }}} {{{ $$ \lim_{n \to \infty} \sum_{k=1}^n \frac{1}{k^2} = \frac{\pi^2}{6} $$ }}} {{{#!latex $$ \lim_{n \to \infty} \sum_{k=1}^n \frac{1}{k^2} = \frac{\pi^2}{6} $$ }}} SeeAlso [[attachment:lshort-kr-sandol.pdf]] : TeX에서의 수식 == 명령행방식의 전형적인 방식 == [[ASCII]]로 [[TeX]]소스파일을 만든다. {{{ # cat foo.tex \documentclass[a4paper,11pt]{article} % define the title \author{H.~Partl} \title{Minimalism} \begin{document} % generates the title \maketitle % insert the table of contents \tableofcontents \section{Start} Well, and here begins my lovely article. \section{End} \ldots{} and here it ends. \end{document} }}} latex실행 {{{ # latex foo.tex }}} DVI파일 화면보기 {{{ # xdvi foo.dvi }}} PS파일 변환 {{{ dvips -Pcmz foo.dvi -o foo.ps }}} [[PDF]]파일 변환 {{{ dvipdf foo.dvi foo.pdf }}} PS파일을 PNG파일로 변환 {{{ convert -crop 0x0 -density 120x120 foo.ps foo.png }}} ---- CategoryProgram