我尝试\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}