KTUGFaq

KTUG FAQ

·Î±×ÀÎ:
ºñ¹Ð¹øÈ£:
°¡ÀÔ
Like winter snow on summer lawn, time past is time gone.
FrontPage › ProcessorExamples

r1.1°ú ÇöÀç ¹öÀüÀÇ Â÷ÀÌÁ¡

@@ -118,7 +118,8 @@

{{{#!latex
\begin{enumerate}
\item Áø¸®´Â Æò¹üÇÑ µ¥ ÀÖ´Ù.
¹®ÀåÀÇ ±Ã±ØÀº ¾Ë¸Â°Ô ¸¸µé¾îÁö´Â °Í»ÓÀÌ°í
ÀÎÇ°ÀÇ ±Ã±ØÀº Àΰ£ º»·¡ÀÇ ¸ð½À, Áï º»¿¬Áö¼ºÀ» º¸Á¸ÇÏ´Â °ÍÀÏ µû¸§ÀÌ´Ù.
\begin{enumerate}
\item ³²ÀÇ ÀÛÀº Çã¹°À» Ã¥ÇÏÁö ¸»¸ç



#!vim

tex

#!vim tex
\documentclass{article}
\usepackage{hangul}
\begin{document}

\documentclass{article}
\usepackage{hangul}
\begin{document}

c

#!vim c
void main() {
  printf("Hello world!\n");

}

void main() {
  printf("Hello world!\n");

}

Python

#!vim python
def printHello: 
    print "Hello"  

def printHello:
    print "Hello"

#!gnuplot

#!gnuplot
set parametric
#set pm3d
set isosamples 50,30
set hidden
set view 40,20 ,1.7
set noborder
set nokey
set noxtics
set noytics
set noztics
set urange [-pi:pi]
set vrange [-pi:pi]
set size 0.5,0.5
splot cos(u)+.5*cos(u)*cos(v),sin(u)+.5*sin(u)*cos(v),.5*sin(v) with lines, 1+cos(u)+.5*cos(u)*cos(v),.5*sin(v),sin(u)+.5*sin(u)*cos(v) with lines

gnuplot
#!gnuplot
plot sin(x)

gnuplot

LaTeX


#!latex
$$ \alpha \beta \beta \gamma $$

$$ \alpha \beta \beta \gamma $$
ÇѱÛLaTeX Processor

#!latex
\begin{enumerate}
\item Áø¸®´Â Æò¹üÇÑ µ¥ ÀÖ´Ù. ¹®ÀåÀÇ ±Ã±ØÀº ¾Ë¸Â°Ô ¸¸µé¾îÁö´Â °Í»ÓÀÌ°í
ÀÎÇ°ÀÇ ±Ã±ØÀº Àΰ£ º»·¡ÀÇ ¸ð½À, Áï º»¿¬Áö¼ºÀ» º¸Á¸ÇÏ´Â °ÍÀÏ µû¸§ÀÌ´Ù.
\begin{enumerate}
 \item ³²ÀÇ ÀÛÀº Çã¹°À» Ã¥ÇÏÁö ¸»¸ç
 \item ³²ÀÇ ºñ¹ÐÀ» µå·¯³»Áö ¸»¸ç
 \item ³²ÀÇ Áö³­ À߸øÀ» »ý°¢ÇÏÁö ¸»¶ó
\end{enumerate}
\item ÝÕô¡ìÑá³Î¦,
\item ÝÕÛ¡ìÑëäÞç,
\item ÝÕÒ·ìÑÏÁäÂ.
\end{enumerate}
ß²íº,ʦì¤å×Óì,æ²Ê¦ì¤êÀúª.(ä±Ù´ã)

\begin{enumerate}
\item Áø¸®´Â Æò¹üÇÑ µ¥ ÀÖ´Ù. 
¹®ÀåÀÇ ±Ã±ØÀº ¾Ë¸Â°Ô ¸¸µé¾îÁö´Â °Í»ÓÀÌ°í
ÀÎÇ°ÀÇ ±Ã±ØÀº Àΰ£ º»·¡ÀÇ ¸ð½À, Áï º»¿¬Áö¼ºÀ» º¸Á¸ÇÏ´Â °ÍÀÏ µû¸§ÀÌ´Ù.
\begin{enumerate}
 \item ³²ÀÇ ÀÛÀº Çã¹°À» Ã¥ÇÏÁö ¸»¸ç
 \item ³²ÀÇ ºñ¹ÐÀ» µå·¯³»Áö ¸»¸ç
 \item ³²ÀÇ Áö³­ À߸øÀ» »ý°¢ÇÏÁö ¸»¶ó
\end{enumerate}
\item ÝÕô¡ìÑá³Î¦,
\item ÝÕÛ¡ìÑëäÞç,
\item ÝÕÒ·ìÑÏÁäÂ.
\end{enumerate}
ß²íº,ʦì¤å×Óì,æ²Ê¦ì¤êÀúª.(ä±Ù´ã)

MetaPost


#!metapost
  u:=1cm;
  path a,b,c;
  a = fullcircle scaled 2u shifted (.5u,0);
  b = a rotated (360/3);
  c = b rotated (360/3);
  fill a withcolor red;
  fill b withcolor green;
  fill c withcolor blue;
  fill buildcycle(a,b) withcolor red + green;
  fill buildcycle(b,c) withcolor green + blue;
  fill buildcycle(c,a) withcolor blue + red;
  fill buildcycle(a,b,c) withcolor white;
  draw a; draw b; draw c;

mp

^
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2005-12-28 21:13:15
Processing time 0.0533 sec