I am using scrartcl and I want to create a part in the center of a page like this
What should I do?
I think this is what you need,
\documentclass{article}
\usepackage{color}
\begin{document}
\thispagestyle{empty}
\null\vfill
\begin{center}
\textbf{Part II} \\ \vspace{1\baselineskip}
\textcolor{red}{\textbf{BEAUTIFUL RESULTS}}
\end{center}
\vfill\clearpage
\end{document}
You may see this question.
You should use the \part sectioning command and since you need parts and likely have a bigger document I’d say it is better to use scrbook or scrartcl:
\documentclass{scrbook}
\usepackage{xcolor}
% roman numbering
\renewcommand{\thepart}{\Roman{part}}
% remove dot after number
\renewcommand{\partformat}{\partname~\thepart}
% font for "Part X"
\setkomafont{partnumber}{\normalsize\rmfamily}
% font for part title
\setkomafont{part}{\Large\rmfamily\color{red}\MakeUppercase}
\begin{document}
\part{Beautiful result}
Test
\end{document}
If you want a part page in scrartcl see Make \part in scrartcl.
\partand adapt the layout (see my answer). – Tobi Mar 25 '16 at 07:56\tableofcontentsafter\begin{document}to get it in the content section. – ddas Mar 25 '16 at 08:08