Text Formatting ⇒ Line breaks in URLs
Line breaks in URLs
I have the following problem:
\usepackage{url}
\usepackage{hyperref}
...
\url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
The thing is that the URL is too long and it's not broken into multiple lines. From what I've read, it seems that the url package should take care of this, but it doesn't. Do you know any way to force the splitting ? Thank you.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Line breaks in URLs
Code: Select all
\documentclass{minimal}
\usepackage[hyphens]{url}
\usepackage{hyperref}
\begin{document}
This is some filler text \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
\end{document}
Line breaks in URLs
how are you compiling? latex + dvips + ps2pdf does not automatically break URLs under hyperref, whereas pdflatex does. whith latex + dvips you also need breakurltuxx wrote:Hi,
I have the following problem:
\usepackage{url}
\usepackage{hyperref}
...
\url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
The thing is that the URL is too long and it's not broken into multiple lines. From what I've read, it seems that the url package should take care of this, but it doesn't. Do you know any way to force the splitting ? Thank you.
Line breaks in URLs
Code: Select all
\documentclass[10pt,a4paper]{article}
\usepackage[hyphens]{url}
\usepackage{hyperref}
\setlength{\parindent}{0em}
\setlength{\parskip}{1em}
\begin{document}
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
This is some filler text \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
a \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaaaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaaaaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaaaaaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaaaaaaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaaaaaaaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
aaaaaaaaaa \url{http://www.coreavc.com/index.php?option=com_content&task=view&id=27&Itemid=1}
\end{document}
Re: Line breaks in URLs
This can be seen if you add \sloppy at the start of the codument.
Re: Line breaks in URLs
Re: Line breaks in URLs
I used
1)
\usepackage[hyphens]{url}
2)
\begin{document}
\sloppy
But, in my latex file, I had a \url
\url{http://www.visionopen.com/products/JP_ASMAAMBuilding_media/
JP_ASMAAMBuilding.avi}
Since the url is too long that I can't put such a url in a single row of latex editor Kile. There is a "return carriage" before "JP_ASMAAMBuilding.avi".
Therefore, whenever after I built the .pdf file, I can't manage to link to the url I want, because there is a space just before "JP_ASMAAMBuilding.avi".
So, every time I got "Error 404: File Not Found".
which actually means
"http://www.visionopen.com/products/JP_ASMAAMBuilding_media/ JP_ASMAAMBuilding.avi" is not a file.
My question is how I can manage to remove the space before "JP_ASMAAMBuilding.avi" so that the link address is really an available one?
Urgent!!!
Rgds
JIA
Line breaks in URLs
Code: Select all
\documentclass{minimal}
\usepackage[hyphens]{url}
\begin{document}
\url{http://www.visionopen.com/products/JP_ASMAAMBuilding_media/
JP_ASMAAMBuilding.avi}
\end{document}Furthermore, the url package doesn't create hyperlinks, only hyperref does. The corresponding code
Code: Select all
\documentclass{minimal}
\usepackage[breaklinks]{hyperref}
\begin{document}
\url{http://www.visionopen.com/products/JP_ASMAAMBuilding_media/
JP_ASMAAMBuilding.avi}
\end{document}Re: Line breaks in URLs
I am using Kile under Linux. So, can you please tell me where I can specify "no space at the end of line" in Kile editor?
I tried all items under
Kile->Settings->Configure Kile,
but I can't find anything related to how to solve the problem encountering.
Can you please help to find out where I should change in the settings?
Thanks.
Best Regards
JIA
Re: Line breaks in URLs
Settings -> editor -> editing
at least it didn't work well in the (old) version I tested with the URL you specified.