Tentei usar \pageref
para mostrar o número da página ao fazer referência a uma figura/tabela, funciona bem onde tenho número arábico, mas para as tabelas que aparecem no meu apêndice os números não estão aparecendo. Não usei o pacote , mas appendix
antes do início do apêndice.\appendix
\pagenumbering{Roman}
\documentclass[12pt,a4paper,twoside,french]{article}
\usepackage{mathptmx}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{tabularx}
\usepackage{prettyref}
\begin{document}
\pagenumbering{gobble}
\maketitle
\pagenumbering{arabic}
\section{Section}
See figure \ref{tab:table} on page \pageref{tab:table}
\pagenumbering{Roman}
\section*{Appendix}
\begin{table}
\caption{caption}
\begin{tabularx}{10cm}{XXl}
.... table
\end{tabularx}
\label{tab:table}
\end{table}
\end{document}