\documentclass{article}
% make four margins to be 1 inch
\usepackage{fullpage}
% use UTF8 encoding
\usepackage[utf8]{inputenc}
% use KoTeX package for Korean
\usepackage{kotex}
% for the fancy \koTeX logo
\usepackage{kotex-logo}
% for multiple columns
\usepackage{multicol}
% for poem typing
\usepackage{verse}
% add an information about the author of a poem
\newcommand{\attrib}[1]{%
\nopagebreak{\raggedleft\footnotesize #1\par}}
\begin{document}
\title{\koTeX }
이 문서는 CJK 패키지를 사용하지 않고 \koTeX\ 패키지로 한글을 입력하는 예제입니다.
\vspace{2cm}
\begin{multicols}{2}
\settowidth{\versewidth}{人之愛正士}
\poemtitle{偶吟}
\attrib{南冥 曺植}
\begin{verse}[\versewidth]
人之愛正士 \\
好虎皮相似 \\
生則欲殺之 \\
死後方稱美
\end{verse}
\poemtitle{우연히 읊다}
\attrib{남명 조식 (1501 -- 1572)}
\begin{verse}
사람들이 바른 선비를 아끼는 것은 \\
호랑이 가죽을 좋아하는 것과 같구나 \\
살아있을 때는 죽이려 들더니 \\
죽고 나니 아름답다 칭하네
\end{verse}
\end{multicols}
\end{document}