%
% code from VietTUG code corner ( http://viettug.org/code/ )
% author: kyanh
% date: Tue, 20 Mar 2007 07:12:33 +0700
% description:
%	môi trường tương đương enumerate, 4 cột, với label được khoanh tròn nhờ textcomp
% view: http://viettug.org/code/code.7db796a3f0.html
% download: http://viettug.org/code/code.7db796a3f0.txt
%
\documentclass{article}
\usepackage{textcomp,multicol}
\newcounter{myans}
\def\mylabel#1{%
\addtocounter{myans}1
\hspace{\labelsep}\textcircled{\Alph{myans}}}
\newenvironment{ans}%
{%
\setcounter{myans}0
\begin{multicols}{4}
\begin{list}%
  {}%
  {\let\makelabel\mylabel}
  \ignorespaces %
  {}%
}%
{\end{list}\end{multicols}}
\begin{document}
% dùng môi trường ans thay cho môi trường enumerate
\begin{ans}
\item thứ nhất
\item thứ hai
\item thú ba
\end{ans}
\end{document}