I'm using hyperref and am trying to add a link to a samba share in a doc but get an error. This is what I'm doing:
Code: Select all
\documentclass{article}
\usepackage[letterpaper,hmargin=1.25in,vmargin=1.25in,vcentering]{geometry}
\usepackage{fancyhdr,makeidx,latexsym,amssymb}
\usepackage{color}
\usepackage[final]{graphicx}
\usepackage{multirow,hhline,threeparttable,rotating}
\usepackage{hyperref}
\urlstyle{same}
\hypersetup{%
pdfnewwindow=true, % links in new window
colorlinks=true, % false: boxed links; true: colored links
linkcolor=black, % color of internal links
urlcolor=blue % color of external links
}
\begin{document}
The software resides at \url{loramab00001001:\samba\csg}
\end{document}
Code: Select all
\begin{document}
The software resides at \url{loramab00001001:/samba/csg}
\end{document}
Alex