[Tex/LaTex] Simple footer with fancyhdr and pagestyle fancy, article with frontmatter etc

fancyhdrfront-matterheader-footer

I am trying to get a simple on every page but excluding title page. Now I only get footer in front matter and excluding title page. The main matter do not get footer.

Edit: I want a simple footer (same footer) on every page except the title page. Abstract and table of contents, etc shall have roman numbers, the rest Arabic numbers. And I want to use headings to get chapter in top and subchapter when it is a subchapter. I shall look at KOMA-script and if I have to read The LaTeX Companion again. So right now you can wait with answers to I have tried some time. I am coming back with a solution in the weekend. Thanks everybody for the directions I got and for the editing of the code.

Sorry for the confusing first post. I have some postoperative pain and health problem now. But I am feeling better for every day now.

\documentclass{article}
\usepackage{fancyhdr}
\fancyhead{}
\fancyfoot{}
\fancyfoot[LE, LO]{Footer}
\title{My awesome title}
\author{Myself}
\begin{document}
\pagestyle{fancy}
\maketitle
\thispagestyle{empty}
\newpage
\pagenumbering{roman}
\begin{abstract}
Hello world.
\end{abstract}
\newpage
\tableofcontents
\listoffigures
\newpage
\pagestyle{headings}
\fancyfoot{}
\newpage
\pagenumbering{arabic}
Foo bar baz.
\end{document}

output

I think I shall use renew command after \pagestyle{headings} or something to get the footer in the main matter. But how?

Best Answer

It's not entirely clear to me from the question (I'd use a report- or book-like class for this type of thing), but perhaps

\documentclass[]{article}
\usepackage{fancyhdr}
\fancypagestyle{plain}{%
  \fancyfoot{}%
  \fancyhead{}%
}
\fancyhead{}
\fancyhead[L]{\leftmark}
\fancyfoot{}
\fancyfoot[L]{Footer}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\title{My awesome title}
\renewcommand*{\sectionmark}[1]{\markboth{\MakeUppercase{#1}}{}}
\author{Myself}
\begin{document}
\pagestyle{empty}
\maketitle
\newpage
\pagestyle{fancy}
\pagenumbering{roman}
\begin{abstract}
Hello world.
\end{abstract}
\newpage
\tableofcontents
\listoffigures
\clearpage
\section{A demo}
\pagenumbering{arabic}
Foo bar baz.
\end{document}

is about what you are after.