How to disable automatic hyperlinking?
How do I tell the system to treat emails and hyperlinks as a pure text and not to create hyperlinks from its contents, so that I use hyperref package commands explicitly if I want my text to be hyperlinked?
hyperref
|
show 11 more comments
How do I tell the system to treat emails and hyperlinks as a pure text and not to create hyperlinks from its contents, so that I use hyperref package commands explicitly if I want my text to be hyperlinked?
hyperref
usepackage[hidelinks]{hyperref}
– user11232
Sep 9 '15 at 23:21
1
Welcome! Why don't you just not loadhyperref
and just loadurl
so that you can format them and not have them as links. This is what I use mostly, in fact.
– cfr
Sep 9 '15 at 23:25
1
@Lorehead: Nope, I think it's the Reader's feature to recognize a mail adresse and changing the cursor?
– Christian Hupfer
Sep 9 '15 at 23:47
1
@AndrejsIgumenovs This only confirms what I said: TeXShop and Preview use the same Apple PDF libraries; both try to isolate URI from the text and there's nothing you can do.
– egreg
Sep 9 '15 at 23:59
1
@AndrejsIgumenovs: Can you provide the community with a minimal working example (MWE) that replicates the result? Also, include an image that shows how your reading is currently rendering content as hyperlinks.
– Werner
Sep 10 '15 at 0:03
|
show 11 more comments
How do I tell the system to treat emails and hyperlinks as a pure text and not to create hyperlinks from its contents, so that I use hyperref package commands explicitly if I want my text to be hyperlinked?
hyperref
How do I tell the system to treat emails and hyperlinks as a pure text and not to create hyperlinks from its contents, so that I use hyperref package commands explicitly if I want my text to be hyperlinked?
hyperref
hyperref
asked Sep 9 '15 at 23:17
Andrew IgumenoffAndrew Igumenoff
61
61
usepackage[hidelinks]{hyperref}
– user11232
Sep 9 '15 at 23:21
1
Welcome! Why don't you just not loadhyperref
and just loadurl
so that you can format them and not have them as links. This is what I use mostly, in fact.
– cfr
Sep 9 '15 at 23:25
1
@Lorehead: Nope, I think it's the Reader's feature to recognize a mail adresse and changing the cursor?
– Christian Hupfer
Sep 9 '15 at 23:47
1
@AndrejsIgumenovs This only confirms what I said: TeXShop and Preview use the same Apple PDF libraries; both try to isolate URI from the text and there's nothing you can do.
– egreg
Sep 9 '15 at 23:59
1
@AndrejsIgumenovs: Can you provide the community with a minimal working example (MWE) that replicates the result? Also, include an image that shows how your reading is currently rendering content as hyperlinks.
– Werner
Sep 10 '15 at 0:03
|
show 11 more comments
usepackage[hidelinks]{hyperref}
– user11232
Sep 9 '15 at 23:21
1
Welcome! Why don't you just not loadhyperref
and just loadurl
so that you can format them and not have them as links. This is what I use mostly, in fact.
– cfr
Sep 9 '15 at 23:25
1
@Lorehead: Nope, I think it's the Reader's feature to recognize a mail adresse and changing the cursor?
– Christian Hupfer
Sep 9 '15 at 23:47
1
@AndrejsIgumenovs This only confirms what I said: TeXShop and Preview use the same Apple PDF libraries; both try to isolate URI from the text and there's nothing you can do.
– egreg
Sep 9 '15 at 23:59
1
@AndrejsIgumenovs: Can you provide the community with a minimal working example (MWE) that replicates the result? Also, include an image that shows how your reading is currently rendering content as hyperlinks.
– Werner
Sep 10 '15 at 0:03
usepackage[hidelinks]{hyperref}
– user11232
Sep 9 '15 at 23:21
usepackage[hidelinks]{hyperref}
– user11232
Sep 9 '15 at 23:21
1
1
Welcome! Why don't you just not load
hyperref
and just load url
so that you can format them and not have them as links. This is what I use mostly, in fact.– cfr
Sep 9 '15 at 23:25
Welcome! Why don't you just not load
hyperref
and just load url
so that you can format them and not have them as links. This is what I use mostly, in fact.– cfr
Sep 9 '15 at 23:25
1
1
@Lorehead: Nope, I think it's the Reader's feature to recognize a mail adresse and changing the cursor?
– Christian Hupfer
Sep 9 '15 at 23:47
@Lorehead: Nope, I think it's the Reader's feature to recognize a mail adresse and changing the cursor?
– Christian Hupfer
Sep 9 '15 at 23:47
1
1
@AndrejsIgumenovs This only confirms what I said: TeXShop and Preview use the same Apple PDF libraries; both try to isolate URI from the text and there's nothing you can do.
– egreg
Sep 9 '15 at 23:59
@AndrejsIgumenovs This only confirms what I said: TeXShop and Preview use the same Apple PDF libraries; both try to isolate URI from the text and there's nothing you can do.
– egreg
Sep 9 '15 at 23:59
1
1
@AndrejsIgumenovs: Can you provide the community with a minimal working example (MWE) that replicates the result? Also, include an image that shows how your reading is currently rendering content as hyperlinks.
– Werner
Sep 10 '15 at 0:03
@AndrejsIgumenovs: Can you provide the community with a minimal working example (MWE) that replicates the result? Also, include an image that shows how your reading is currently rendering content as hyperlinks.
– Werner
Sep 10 '15 at 0:03
|
show 11 more comments
3 Answers
3
active
oldest
votes
If you don't load hyperref
, LaTeX will not make hyperlinks. However, viewers such as Preview, Skim and the TeXShop one use the Apple PDF libraries and, unfortunately, try to find URL and email addresses in the text.
Compiling the simple example file
documentclass{article}
begin{document}
alice@bob.com
end{document}
will show a mailto:
link when the PDF is viewed with Preview or Skim, but not with Adobe Reader. I don't think it's possible to disable this annoying feature in Apple PDFKit based viewers.
That's true about your document. But if I remove the hyperref reference in my document, Adobe Reader still has the link. But yeah, probably it's on the viewer's side and not because of the TeX.
– Andrew Igumenoff
Sep 10 '15 at 0:17
add a comment |
You can use nolinkurl
on the links you want to hide.
1
Does this work for hyperlinks in the ToC, for example?
– Gonzalo Medina
Sep 9 '15 at 23:34
It does not help.
– Andrew Igumenoff
Sep 9 '15 at 23:37
hyperindex=false, hyperfootnotes=false
option, I think?
– Davislor
Sep 9 '15 at 23:40
add a comment |
An elegant solution using hyperref
usepackage[implicit=false, bookmarks=false]{hyperref}
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f266791%2fhow-to-disable-automatic-hyperlinking%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you don't load hyperref
, LaTeX will not make hyperlinks. However, viewers such as Preview, Skim and the TeXShop one use the Apple PDF libraries and, unfortunately, try to find URL and email addresses in the text.
Compiling the simple example file
documentclass{article}
begin{document}
alice@bob.com
end{document}
will show a mailto:
link when the PDF is viewed with Preview or Skim, but not with Adobe Reader. I don't think it's possible to disable this annoying feature in Apple PDFKit based viewers.
That's true about your document. But if I remove the hyperref reference in my document, Adobe Reader still has the link. But yeah, probably it's on the viewer's side and not because of the TeX.
– Andrew Igumenoff
Sep 10 '15 at 0:17
add a comment |
If you don't load hyperref
, LaTeX will not make hyperlinks. However, viewers such as Preview, Skim and the TeXShop one use the Apple PDF libraries and, unfortunately, try to find URL and email addresses in the text.
Compiling the simple example file
documentclass{article}
begin{document}
alice@bob.com
end{document}
will show a mailto:
link when the PDF is viewed with Preview or Skim, but not with Adobe Reader. I don't think it's possible to disable this annoying feature in Apple PDFKit based viewers.
That's true about your document. But if I remove the hyperref reference in my document, Adobe Reader still has the link. But yeah, probably it's on the viewer's side and not because of the TeX.
– Andrew Igumenoff
Sep 10 '15 at 0:17
add a comment |
If you don't load hyperref
, LaTeX will not make hyperlinks. However, viewers such as Preview, Skim and the TeXShop one use the Apple PDF libraries and, unfortunately, try to find URL and email addresses in the text.
Compiling the simple example file
documentclass{article}
begin{document}
alice@bob.com
end{document}
will show a mailto:
link when the PDF is viewed with Preview or Skim, but not with Adobe Reader. I don't think it's possible to disable this annoying feature in Apple PDFKit based viewers.
If you don't load hyperref
, LaTeX will not make hyperlinks. However, viewers such as Preview, Skim and the TeXShop one use the Apple PDF libraries and, unfortunately, try to find URL and email addresses in the text.
Compiling the simple example file
documentclass{article}
begin{document}
alice@bob.com
end{document}
will show a mailto:
link when the PDF is viewed with Preview or Skim, but not with Adobe Reader. I don't think it's possible to disable this annoying feature in Apple PDFKit based viewers.
answered Sep 10 '15 at 0:03
egregegreg
719k8719053204
719k8719053204
That's true about your document. But if I remove the hyperref reference in my document, Adobe Reader still has the link. But yeah, probably it's on the viewer's side and not because of the TeX.
– Andrew Igumenoff
Sep 10 '15 at 0:17
add a comment |
That's true about your document. But if I remove the hyperref reference in my document, Adobe Reader still has the link. But yeah, probably it's on the viewer's side and not because of the TeX.
– Andrew Igumenoff
Sep 10 '15 at 0:17
That's true about your document. But if I remove the hyperref reference in my document, Adobe Reader still has the link. But yeah, probably it's on the viewer's side and not because of the TeX.
– Andrew Igumenoff
Sep 10 '15 at 0:17
That's true about your document. But if I remove the hyperref reference in my document, Adobe Reader still has the link. But yeah, probably it's on the viewer's side and not because of the TeX.
– Andrew Igumenoff
Sep 10 '15 at 0:17
add a comment |
You can use nolinkurl
on the links you want to hide.
1
Does this work for hyperlinks in the ToC, for example?
– Gonzalo Medina
Sep 9 '15 at 23:34
It does not help.
– Andrew Igumenoff
Sep 9 '15 at 23:37
hyperindex=false, hyperfootnotes=false
option, I think?
– Davislor
Sep 9 '15 at 23:40
add a comment |
You can use nolinkurl
on the links you want to hide.
1
Does this work for hyperlinks in the ToC, for example?
– Gonzalo Medina
Sep 9 '15 at 23:34
It does not help.
– Andrew Igumenoff
Sep 9 '15 at 23:37
hyperindex=false, hyperfootnotes=false
option, I think?
– Davislor
Sep 9 '15 at 23:40
add a comment |
You can use nolinkurl
on the links you want to hide.
You can use nolinkurl
on the links you want to hide.
answered Sep 9 '15 at 23:30
DavislorDavislor
6,3611228
6,3611228
1
Does this work for hyperlinks in the ToC, for example?
– Gonzalo Medina
Sep 9 '15 at 23:34
It does not help.
– Andrew Igumenoff
Sep 9 '15 at 23:37
hyperindex=false, hyperfootnotes=false
option, I think?
– Davislor
Sep 9 '15 at 23:40
add a comment |
1
Does this work for hyperlinks in the ToC, for example?
– Gonzalo Medina
Sep 9 '15 at 23:34
It does not help.
– Andrew Igumenoff
Sep 9 '15 at 23:37
hyperindex=false, hyperfootnotes=false
option, I think?
– Davislor
Sep 9 '15 at 23:40
1
1
Does this work for hyperlinks in the ToC, for example?
– Gonzalo Medina
Sep 9 '15 at 23:34
Does this work for hyperlinks in the ToC, for example?
– Gonzalo Medina
Sep 9 '15 at 23:34
It does not help.
– Andrew Igumenoff
Sep 9 '15 at 23:37
It does not help.
– Andrew Igumenoff
Sep 9 '15 at 23:37
hyperindex=false, hyperfootnotes=false
option, I think?– Davislor
Sep 9 '15 at 23:40
hyperindex=false, hyperfootnotes=false
option, I think?– Davislor
Sep 9 '15 at 23:40
add a comment |
An elegant solution using hyperref
usepackage[implicit=false, bookmarks=false]{hyperref}
add a comment |
An elegant solution using hyperref
usepackage[implicit=false, bookmarks=false]{hyperref}
add a comment |
An elegant solution using hyperref
usepackage[implicit=false, bookmarks=false]{hyperref}
An elegant solution using hyperref
usepackage[implicit=false, bookmarks=false]{hyperref}
answered 13 mins ago
Farhad MalekiFarhad Maleki
1011
1011
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f266791%2fhow-to-disable-automatic-hyperlinking%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
usepackage[hidelinks]{hyperref}
– user11232
Sep 9 '15 at 23:21
1
Welcome! Why don't you just not load
hyperref
and just loadurl
so that you can format them and not have them as links. This is what I use mostly, in fact.– cfr
Sep 9 '15 at 23:25
1
@Lorehead: Nope, I think it's the Reader's feature to recognize a mail adresse and changing the cursor?
– Christian Hupfer
Sep 9 '15 at 23:47
1
@AndrejsIgumenovs This only confirms what I said: TeXShop and Preview use the same Apple PDF libraries; both try to isolate URI from the text and there's nothing you can do.
– egreg
Sep 9 '15 at 23:59
1
@AndrejsIgumenovs: Can you provide the community with a minimal working example (MWE) that replicates the result? Also, include an image that shows how your reading is currently rendering content as hyperlinks.
– Werner
Sep 10 '15 at 0:03