\documentclass[notitlepage, 12pt]{amsart}
\usepackage{amsthm, amsmath, amsaddr, amssymb, graphicx, dsfont,}
\usepackage[dvipsnames]{xcolor}
\usepackage[
colorlinks=true,
linkcolor=Blue,
citecolor=Brown]{hyperref}
\renewcommand{\baselinestretch}{1.2}
\usepackage{natbib}
\usepackage{caption}
\raggedbottom
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{proposition}{Proposition}
\newtheorem{corollary}{Corollary}
\newtheorem{definition}{Definition}
\newtheorem{example}{Example}
\newtheorem{remark}{Remark}
\newtheorem{assumption}{Assumption}
\usepackage{geometry}
\geometry{
body={6.5in, 9.0in},
left=1.25in,
right=1.25in,
top=1.25in,
bottom=1.25in
}
%\usepackage{footmisc}
%\setlength{\footnotesep}{0.4cm} %footnote spacing
\DeclareMathOperator*{\argmax}{arg\,max}
\DeclareMathOperator{\ima}{Im}
\newcommand{\namedthm}[2]{\theoremstyle{plain}
\newtheorem*{thm#1}{Theorem #1}\begin{thm#1}#2\end{thm#1}}
\usepackage{float}
\title[Test]{Test}\thanks{Test}
\author[A]{A}\address{University of LaTeX}
\author[B]{B}\address{University of LaTeX}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
Test
\end{abstract}
\pagenumbering{alpha}
\thispagestyle{empty}
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
\section{Introduction}
Test
\section{General Results}\label{General}\bigskip
\begin{theorem}
\begin{itemize}
\item[(i)] a.
\item[(ii)] b.
\item[(iii)] c.
\item[(iv)] d.
\item[(v)] e.
\end{itemize}
\label{main}
\end{theorem}\bigskip
Theorem \ref{main}.\bigskip
\end{document}
In the pdf generated, when one clicks the "1" in "Theorem 1", it jumps to the title page rather than where the Theorem 1 is. How shall I fix this? Thanks!
hyperref, but I'm quite sure thathyperrefshould be closer to\begin{document}. – barbara beeton Dec 28 '22 at 16:58