Code: Select all
\documentclass[10pt]{amsart}
\usepackage{hyperref}
\usepackage{latexsym,amsfonts,amssymb,amsmath,amsthm,graphicx}
\begin{document}
MY DOCUMENT HERE
\bibliographystyle{plain}
\bibliography{citations}
\end{document}
[1]
[2]
[3] working fine from here on
I have pics though I can't seem to add attachments. I do have the two entries in my citation file. They look like this and they are the only two links of the form misc:
Code: Select all
@misc{sloane,
AUTHOR = {Paul Barry , Mar 22 2003 Lookup | Welcome | Wiki | Register |},
TITLE = {The {O}n-{L}ine {E}ncyclopedia of {I}nteger {S}equences},
HOWPUBLISHED = {\href{http://oeis.org/A081567}{A081567}},
MONTH = {},
YEAR = {},
NOTE = {Second binomial transform of F(n+1).}
}
@misc{unifsloane,
AUTHOR = {N. J. A. Sloane .},
TITLE = {The {O}n-{L}ine {E}ncyclopedia of {I}nteger {S}equences},
HOWPUBLISHED = {\href{http://oeis.org/A001519}{A001519}},
MONTH = {},
YEAR = {},
NOTE = {a(n) = 3*a(n-1) - a(n-2), with a(0) = a(1) = 1.}
}
\href
commands were causing me problems, so I switched one out for the following:Code: Select all
@misc{sloane,
AUTHOR = {Paul Barry , Mar 22 2003 Lookup | Welcome | Wiki | Register |},
TITLE = {The {O}n-{L}ine {E}ncyclopedia of {I}nteger {S}equences},
HOWPUBLISHED = {A081567},
MONTH = {},
YEAR = {},
NOTE = {Second binomial transform of F(n+1).}
}