I'm relatively new to Latex and tried to include an URL into my bibliography. Whenever I try to open it from the PDF unfortunately the link does not work (I guess because it thinks there's a space where the line break is)
\documentclass[12pt] {article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{setspace}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{stackengine}
\usepackage{tabularx}
\usepackage{tikz}
\usepackage{url}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning,decorations.pathreplacing}
\usepackage{graphicx}
\usepackage{caption}
\usepackage[toc,page]{appendix}
\linespread{1.35}
\begin{document}
Author (2017): ``titel,''. Retrieved from: {\url{http://tex.stackexchange.com}} [Accessed: 1 January 2000]
\end{document}
Many thanks for your help in advance!
hyperref. I think now what you are seeing is your PDF previewer trying to be smart and guessing that this is an URL attempting to making it clickable, and as you mention, getting confused by the line break. – daleif Sep 13 '17 at 12:46