Using the wonderful hyperref package, I've been writing PDF files that I've been very happy with that contain links to web-based URLs so that while reading the PDF file using a PDF viewer, when a reader clicks the link in the PDF file, her web browser opens up and takes her to the page linked in the PDF. I have a large number of such files that I can't take the time to rework in any time-consuming way.
But now for the first time I need to send printed versions of these documents. Obviously, printing the PDF onto paper distills what would be active hypertext embedded in the PDF (if viewed in a PDF viewer) down to just colored ink on a piece of paper, which causes the URL embedded in the link to be absent from the printed version.
Is there any way (with a minimum of changes in the documents I have already produced) when compiling such a PDF to direct that for the production of this particular PDF (that I intend to send to the printer), instead of making embedded links in the PDF, the document should be produced with citation notes and a bibliography containing nothing but the printed URLs?
Here's the MWE of a TeX file that produces hypertext:
\PassOptionsToPackage{svgnames}{xcolor}
\documentclass[11pt]{article}
\usepackage[margin=2.54cm]{geometry}
\usepackage{tikz}
\usepackage{lipsum,xcolor,graphicx}
\usepackage{booktabs}
\usepackage[latin]{babel}
\usepackage{pullquote}
\usepackage{xcolor}
\usepackage{calc}
\definecolor{my-purple}{RGB}{105,60,94}
\definecolor{my-ltblue}{RGB}{0,92,184}
\colorlet{MyColorA}{my-ltblue}
\colorlet{MyColorB}{my-purple}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\usepackage{eso-pic}
\usepackage{xfrac}
\usepackage{mhchem}
\usepackage[colorlinks=true,urlbordercolor=green,urlcolor=MyColorA]{hyperref}
\usetikzlibrary{shapes,backgrounds,calc}
\begin{document}
This is a \href{http://en.wikipedia.org}{link to wikipedia}.
This is a \href{http://search.credoreference.com}{link to Credo}.
\end{document}
Though not strictly necessary for the MWE, I've left in several other packages because I am using them in the PDF documents in question, and I'd like to avoid using something that will conflict with one of these other packages.
My goal would be to add an option to a package I'm already using or else perhaps add a package that will somehow magically compile this file into a PDF that looks something like this:
This is a link to wikipedia[1]. This is a link to Credo[2].
References:
[1] http://en.wikipedia.org
[2] http://search.credoreference.com
Except maybe the [1] citation notes would be superscripted marks or something nice-looking like that. That way, the URL information (that would otherwise be lost upon printing) is preserved in a sane, sensical way for the reader in case they want to take the time to type the URL into a browser (unlikely I know, but at least the option is there).


pullquotefrom? Is it necessary at all? – Oct 09 '14 at 19:31pullquotefrom http://tex.stackexchange.com/questions/53073/two-column-text-with-circular-insert – TeXnewbie Oct 09 '14 at 19:53pullquote) has some thoughts to share? – TeXnewbie Oct 09 '14 at 20:14