\pageref로 표시되지 않는 로마 숫자

\pageref로 표시되지 않는 로마 숫자

그림/표를 참조할 때 페이지 번호를 표시하기 위해 를 사용하려고 했는데 \pageref아라비아 숫자가 있는 경우에는 잘 작동하지만 부록에 나타나는 표의 경우 숫자가 표시되지 않습니다. 패키지를 사용하지 않았지만 appendix부록 이 시작되기 전입니다 \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}

관련 정보