Hello lassies and lads!
I want to have customized numbering in my appendix. For example I want each page to be numbered as A.1, A.2, ..., A.n, for the first section, then B.1, B.2, ... for the second one etc.
I have prepared a minimal code where I show more or less how I can change the numbering, nonetheless, I am unable to do what I desire.
\documentclass[11pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage[width=0.00cm, height=0.00cm, left=1.00in, right=1.00in, top=1.00in, bottom=1.00in]{geometry}
\author{Doge of the Serene Republic}
\title{A Socio-economic Analysis of Naval Powers at the Italian Peninsula of the Medieval Period}
\begin{document}
\maketitle
\pagenumbering{arabic}
\thispagestyle{empty}
\begin{abstract}
This is my abstract ...
\end{abstract}
\newpage
\section{This is section one}
\newpage
\section{On the Economic Structure of Venice and the Neighbouring Naval States}
\newpage
\pagenumbering{Alph}
\appendix
\section{The Scientific Method}
\par Here I describe my method in detail ...
\end{document}