KTUGFaq
KTUG FAQ
You will be awarded some great honor.
FrontPage › KC2008/Other
[ÆíÁý]
°³¿ä ¶
[ÆíÁý]
¼³Ä¡ ¶
# (sudo) tlmgr --repository=http://ftp.ktug.or.kr/KTUG/texlive/2011 install collection-kotex
ȤÀº GUI¹öÀüÀÇ TeX Live Manager¸¦ ½ÇÇàÇÏ°í, tlmgr > Load other repository¿¡ 'http://ftp.ktug.or.kr/KTUG/texlive/2011'¶ó°í ÀÔ·ÂÇÑ µÚ
'OK'¸¦ ´©¸£¸é °»½ÅµÇ´Â ko.TeX ¼³Ä¡ ÆÐÅ°Áö ¸ñ·ÏÀ» È®ÀÎÇÏ°í °Å±â¼ ¼±ÅÃÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù.
[ÆíÁý]
¾÷µ¥ÀÌÆ® ¶
# (sudo) tlmgr --repository=http://ftp.ktug.or.kr/KTUG/texlive/2010 update --all
# (sudo) tlmgr --location=http://ftp.ktug.or.kr/KTUG/texlive/2009 update --all
[ÆíÁý]
ÅëÇÕ ¾÷µ¥ÀÌÆ® ½ºÅ©¸³Æ® ¶
#!/bin/sh PATH=/usr/local/texlive/2010/bin/i386-linux:$PATH TEXLIVE=http://ftp.ktug.or.kr/tex-archive/systems/texlive/tlnet KOTEXLIVE=http://ftp.ktug.or.kr/KTUG/texlive/2010 tlmgr --repository=$TEXLIVE update --all --self tlmgr --repository=$KOTEXLIVE update --all
#!/bin/sh PATH=/usr/local/texlive/2009/bin/i386-linux:$PATH TEXLIVE=http://ftp.ktug.or.kr/tex-archive/systems/texlive/tlnet KOTEXLIVE=http://ftp.ktug.or.kr/KTUG/texlive/2009 tlmgr --location=$TEXLIVE update --all --self tlmgr --location=$KOTEXLIVE update --all
i386-linux ºÎºÐÀº ÀÚ½ÅÀÇ ½Ã½ºÅÛ¿¡ ¸Â°Ô ¼öÁ¤ÇÑ´Ù.
[ÆíÁý]
PATH ¼³Á¤ ¶
MacTeXÀ¸·Î ¼³Ä¡ÇÑ ¶§´Â ´ÙÀ½ »çÇ×À» Àû¿ëÇÏÁö ¾Ê¾Æµµ µË´Ï´Ù.
Åë»óÀûÀÎ »ç¿ëÀ» À§Çؼ PATH ȯ°æº¯¼ö¸¦ ¼³Á¤Çصξî¾ß ÇÑ´Ù(¼³Ä¡½Ã /usr/local/bin À¸·Î ½Éº¼¸¯¸µÅ© Çϵµ·Ï Áö½ÃÇÏÁö ¾ÊÀº °æ¿ì). À̸¦Å׸é ~/.profile ³¡ºÎºÐ¿¡ ´ÙÀ½À» Ãß°¡ÇÑ´Ù.
if test ! `echo $PATH | grep texlive/2010/bin` ; then export PATH=/usr/local/texlive/2010/bin/i386-linux:$PATH export MANPATH=/usr/local/texlive/2010/texmf/doc/man:$MANPATH export INFOPATH=/usr/local/texlive/2010/texmf/doc/info:$INFOPATH fi
if test ! `echo $PATH | grep texlive/2009/bin` ; then export PATH=/usr/local/texlive/2009/bin/i386-linux:$PATH export MANPATH=/usr/local/texlive/2009/texmf/doc/man:$MANPATH export INFOPATH=/usr/local/texlive/2009/texmf/doc/info:$INFOPATH fi
i386-linux ºÎºÐÀº ÀÚ½ÅÀÇ ½Ã½ºÅÛ¿¡ ¸Â°Ô ¼öÁ¤ÇÑ´Ù.