I am new to latex and trying to make the document. I am using the biblatex to create Bibliography chapter. I am able to get the bibliography list but for some reason the displayed url comes with spaces in Bibliography due to which the URL do not act as the hyperlink. Although when URLs are short such as https://google.com then it works correctly as the URL is displayed in single line but when the URL spans multiple lines then they do not work.
Also I am facing one more issue when I click on the [1 p.1] in the cited section it does not take me to the bibliography section for some reason. Can someone please help me know to resolve the issue. I tried searching but could not find the resolution hence posting the same.
My bibliography example:
@misc{1,
AUTHOR = "John Mortimer Logsdon",
TITLE = "Why space science and exploration benefit everyone",
MONTH = "August",
YEAR = "1998",
url = "https://www.researchgate.net/publication/222505708_Why_space_science_and_exploration_benefit_everyone",
urldate = "2020-08-25",
},
I have used the packages \usepackage{hyperref} and \usepackage[hyphens]{url} and \usepackage{url} but still no luck.
Following is my code, I am just posting the sample code as I am using the template provided my advisor for making the document.
\documentclass[a4paper,
final,
draft,
% oneside, % einseitiges Layout für kleinere Arbeiten
12pt]{book}
\usepackage{url}
\usepackage[
backend=biber,
style=ieee,
urldate=long,
dateabbrev=false
]{biblatex}
\addbibresource{literatur.bib}
\usepackage{hyperref}
\usepackage[a-1b]{pdfx}
\begin{document}
It stars with one thing, I don't know why \cite[p.~1]{1}.
\end{document}
The URL looks something like this in Bibliography section:

https:/ /www. researchgate.net /publication/ 222505708_ Why_ space_science _and_exploration_benefit_everyone
compile FAST (draft)? Actually I tried downloading the PDF then tried to access them but still no luck the links either do not work or they work only till certain chapraters where there is no spaces due to which I get page not found error. – BATMAN_2008 Oct 09 '20 at 13:50draftoption is turned on,hyperrefdoes not generate any links. If you can click the URL and are sent to some site then that is a heuristic in your PDF viewer and not ahyperreffeature. It is not inconceivable that the heuristics don't get this URL right due to the line breaks. If you remove thedraftoption,hyperrefbecomes active, does its thing and properly links the URL. – moewe Oct 09 '20 at 14:29finalanddraftoption at the same time. In a wayfinalis the opposite ofdraft. (Though I would use neither in the actual final version of my document unless explicitly required by some odd configuration.) – moewe Oct 09 '20 at 14:30FINALdo actually is there any difference if I remove both of them and just keep\documentclass[a4paper,12pt]{book}? Also, I am seeing one more problem my even page contents are a bit left aligned compared to odd page contents which are properly center aligned. Since I am using the template provided already I am unable to figure out what exactly is wrong. – BATMAN_2008 Oct 09 '20 at 15:36finaldoes nothing, since it is overridden by thedraftthat comes later. I'd just remove both and be done with it. That is usually the best course of action. But if you have a very weird setup, load odd configuration code you have no control over or have to use badly coded packages, you may needfinalafter all. – moewe Oct 09 '20 at 15:43oneside),bookshould use a setup for two-sided printing with mirrored margins for even and odd pages (larger outer margin and smaller inner margin). If you don't want that (e.g. because you don't print your document or only print it one-sided), you may want to activate theonesideoption. See also https://tex.stackexchange.com/q/482568/35864 – moewe Oct 09 '20 at 15:44\documentclass[a4paper,12pt]{book}but still I am seeing thatevenpages are centred properly and odd pages arelittlebit left-aligned. Am I missing something from your answer? I feel like I have checked and corrected everything. – BATMAN_2008 Oct 09 '20 at 19:08