+1 vote
in General IT Tips by (56.8k points)

When I compile my latex document, it throws the following error: "undefined control sequence \newblock \url". How can I fix it?

1 Answer

+1 vote
by (71.8k points)
selected by
 
Best answer

According to the compilation error, the latex is not able to understand the \url macro. It seems that you have not included the url package. 

Add the following to your latex document to include the url package. It should fix the error.

\usepackage{url}

Related questions

+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer

...