I am writting a paper using article class, and using the \section command results in a large title compared to the 10pt font I used. How can I make the \section command results in a 10pt title that is \textsc, capital roman numbered, and centered in the middle of a two-column enviroment. Here is a code sample:
Code: Select all
\documentclass[a4paper]{article}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\section{Section One}
Hello, how are you? I am fine thank you.
I need this to be like this one
\begin{center}
I. \textsc{Section One}
\end{center}
Hello, how are you? I am fine thank you.
\end{multicols}
\end{document}
Thanks in advance