| [ CnUnix ] in KIDS 글 쓴 이(By): Lennon (Im A Gine) 날 짜 (Date): 1996년07월25일(목) 11시38분31초 KDT 제 목(Title): [A] 전 LaTeX고수는 아니지만... 안녕하세요. 만약 latex 2e 라면 multicol 환경을 이용하면 됩니다. 다음과 같이 해보세요. \documentstyle[multicol]{article} \renewcommand{\abstractname}{ } \newcommand{\narrowtext}{\begin{multicols}{2} \global\columnwidth20.5pc} \newcommand{\widetext}{\end{multicols} \global\columnwidth42.5pc} \multicolsep = 8pt plus 4pt minus 3pt \setlength{\topmargin}{-2.0cm} \setlength{\oddsidemargin}{-0.7cm} \setlength{\textheight}{23.5cm} \setlength{\textwidth}{18.0cm} \begin{document} \begin{center} {\Large \bf % TITLE HERE! } \end{center} \begin{center} { % AUTHOR NAME HERE! \footnote{ } \\ \it % ADDRESS HERE \\ }\\ \vskip 0.5cm % SECOND AUTHOR { \\ \it \\ }\\ \end{center} \vskip 1.0cm \narrowtext % MAIN TEXT HERE! % HERE IS THE END OF THE TEXT \widetext \end{document} \narrowtext 라고 한 곳부터 twocolumn 이 되어 나오고 \widetext 라고 하면 다시 onecolumn으로 돌아갑니다. 단, 이 환경의 경우 그림과 표는 onecolumn으로만 할 수 있으며 \begin{figure}나 \begin{table}이 아니라 *를 붙여서 \begin{figure*}, \begin{table*}로 해야 합니다. 위에서 \abstractname 을 다시 지정한 것은 제가 할 때는 Abstract라고 나오지 않게 하기 위한 것이니 필요에 따라 지우셔도 됩니다. margin이나 textwidth, textheight등도 맘에 안드시면 다시 정하세요. 어차피 이런 값들은 trial and error로 정하는 수밖에 없으니까. 그럼 도움 되셨길. ** Living is easy with eyes closed Misunderstanding all you see... - John Lennon ** |