I need to have a line break after \section number (I use Roman numbers), like:
I
Section
... some text ...
II
Section
I've tried \renewcommand{\thesection}{\Roman{section}\\}, but it only creates errors.
Thanks for your help!
EDIT: CODE SAMPLE
I use modified template from TexWorks
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[czech]{babel}
\usepackage{geometry}
\geometry{a4paper}
\geometry{margin=1.5cm}
\usepackage[parfill]{parskip}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\lhead{}\chead{}\rhead{}
\lfoot{}\cfoot{\thepage}\rfoot{}
\usepackage{sectsty}
\allsectionsfont{\centering}
\renewcommand{\thesection}{\Roman{section}}
\title{titlee}
\date{}
\begin{document}
\maketitle
\section{section}
Lorem ipsum dolor sit
\end{document}


\documentclass{article}– Gomi Oct 14 '15 at 19:39\renewcommand{\thesection}{\Roman{section}}– touhami Oct 14 '15 at 19:41