OS: Kubuntu 18.04
Lyx 2.2.3
Class: Article
I was testing adding a hyperlink in but when it outputs to pdf, it extends way too long across to the right of the page (see pic below). I tried inserting the same hyperlink to the 'text' field but it doesn't make a difference, it doesn't break it down to the next line.
Pic: https://imgur.com/a/2sUsKvX (the orange lines is my attempt to show the approx. margins)
Thanks in advance, let me know if I've missed anything.
LyX ⇒ pdflatex - hyperlink seems to extend too long across the page
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
pdflatex - hyperlink seems to extend too long across the page
I don't see the picture. Please upload it to the forum as an attachment.
For URLs, you should use the url package.
For URLs, you should use the url package.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
pdflatex - hyperlink seems to extend too long across the page
The picture is a link, can you try clicking again or viewing on a different browser?Johannes_B wrote:I don't see the picture. Please upload it to the forum as an attachment.
For URLs, you should use the url package.
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
pdflatex - hyperlink seems to extend too long across the page
Pictures should be uploaded as attachments here. I don't like link external stuff, full of advertisements and sometimes malware (those one click hosters). Putting the picture on imgur.com instead of here forces people to load and watch advertisements.
It's easy to attach a picture here. The "Attachments" link is below the text editing field, when writing a post.
Stefan
It's easy to attach a picture here. The "Attachments" link is below the text editing field, when writing a post.
Stefan
LaTeX.org admin
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
pdflatex - hyperlink seems to extend too long across the page
Here you can see how nicely it works at the margin by default:
Click on "Open in Overleaf" above the code, to see it.
Your document does something different. We can find it out, if you make a pdfLaTeX export in LyX and post it here, as attachment.
Stefan
Code: Select all
\documentclass{article}
\usepackage{url}
\begin{document}
\section{Test}
Some long test to see the justification of lest and right margin.
This is just a test. See:
\url{https://www.reddit.com/r/learnprogramming/comments/61oly8/new_read_me_first/}
\end{document}
Your document does something different. We can find it out, if you make a pdfLaTeX export in LyX and post it here, as attachment.
Stefan
LaTeX.org admin
pdflatex - hyperlink seems to extend too long across the page
Thank you so much again, I was using the hyperlink package rather than the URL package. That fixed the issue!