I am creating document containing a list of quotations from a very long book, each quotation associated with a page number (from the book). I would like to create an index to the document containing the page numbers of the book itself, not the page numbers of the document I am creating. The following code generates a document with an index, all the entries pointing, naturally, to page number 1. I would like them, rather, to point to pages 5, 14, and 17.
\documentclass[10pt]{article}%
\usepackage{marginnote}
\usepackage[margin=1.5in]{geometry}
\usepackage{changepage}
\usepackage{imakeidx}
\makeindex[columns=2]
\setlength{\marginparsep}{-0.4em}
\setlength{\marginparwidth}{3em}
\setlength{\parindent}{0em}
\setlength{\parskip}{0.5\baselineskip}
\newcommand{\nt}[1]{\reversemarginpar\marginpar{\begin{footnotesize}#1 \end{footnotesize}}}
\begin{document}
\begin{footnotesize}
Truly man is a marvelously vain, diverse, and undulating object.\nt{5}\index{Diversity}
I am almost ready to vow irreconcilable hatred against all democratic
rule.\nt{14}\index{Democracy}
What causes do we not invent for the misfortunes that befall us?\nt{17}\index{Causes}
\end{footnotesize}
\cleardoublepage
\printindex
\end{document}
