Label a word or sentence?
Is it possible to refer to a word in a sentence?
Example: Hi, I lovelabel{Word: Love} learning so I ask a lot of questions.
I would like to refer to the word "love" in the above sentence. For instance:
"I `ref{Word: Love}` you" would then read "I love you" but with "love" being clickable etc.
Is this possible?
(I know there are some related question here, but they are too complicated and different from the present one. I believe I have a simple and to the point question. )
hyperref cross-referencing labels
add a comment |
Is it possible to refer to a word in a sentence?
Example: Hi, I lovelabel{Word: Love} learning so I ask a lot of questions.
I would like to refer to the word "love" in the above sentence. For instance:
"I `ref{Word: Love}` you" would then read "I love you" but with "love" being clickable etc.
Is this possible?
(I know there are some related question here, but they are too complicated and different from the present one. I believe I have a simple and to the point question. )
hyperref cross-referencing labels
1
hyperlinkandhypertarget?
– egreg
Feb 25 '15 at 19:09
hyperlink links to the given word but I want the name of the linked word to show as in equations e.g. (ref{Eq: NewtonsSecond}) would automatically be written (9) if it happens that Newtons Second Law is the ninth equation in my paper. But I would like to refer to a word where the word is written out as in ref{Word: Word1} would give "Amazing" if I define Word1 = "Amazing". Maybe I'm still unclear?
– Your Majesty
Feb 25 '15 at 19:21
Just to clarify: you want the "love" in "I love you" to be clickable and the link brings you to the sentence "I love learning...", and that the "love" in "I love learning..." is not clickable. Is this correct?
– Herr K.
Feb 25 '15 at 19:48
add a comment |
Is it possible to refer to a word in a sentence?
Example: Hi, I lovelabel{Word: Love} learning so I ask a lot of questions.
I would like to refer to the word "love" in the above sentence. For instance:
"I `ref{Word: Love}` you" would then read "I love you" but with "love" being clickable etc.
Is this possible?
(I know there are some related question here, but they are too complicated and different from the present one. I believe I have a simple and to the point question. )
hyperref cross-referencing labels
Is it possible to refer to a word in a sentence?
Example: Hi, I lovelabel{Word: Love} learning so I ask a lot of questions.
I would like to refer to the word "love" in the above sentence. For instance:
"I `ref{Word: Love}` you" would then read "I love you" but with "love" being clickable etc.
Is this possible?
(I know there are some related question here, but they are too complicated and different from the present one. I believe I have a simple and to the point question. )
hyperref cross-referencing labels
hyperref cross-referencing labels
edited Feb 25 '15 at 20:38
Christian Hupfer
151k15199396
151k15199396
asked Feb 25 '15 at 17:56
Your MajestyYour Majesty
908926
908926
1
hyperlinkandhypertarget?
– egreg
Feb 25 '15 at 19:09
hyperlink links to the given word but I want the name of the linked word to show as in equations e.g. (ref{Eq: NewtonsSecond}) would automatically be written (9) if it happens that Newtons Second Law is the ninth equation in my paper. But I would like to refer to a word where the word is written out as in ref{Word: Word1} would give "Amazing" if I define Word1 = "Amazing". Maybe I'm still unclear?
– Your Majesty
Feb 25 '15 at 19:21
Just to clarify: you want the "love" in "I love you" to be clickable and the link brings you to the sentence "I love learning...", and that the "love" in "I love learning..." is not clickable. Is this correct?
– Herr K.
Feb 25 '15 at 19:48
add a comment |
1
hyperlinkandhypertarget?
– egreg
Feb 25 '15 at 19:09
hyperlink links to the given word but I want the name of the linked word to show as in equations e.g. (ref{Eq: NewtonsSecond}) would automatically be written (9) if it happens that Newtons Second Law is the ninth equation in my paper. But I would like to refer to a word where the word is written out as in ref{Word: Word1} would give "Amazing" if I define Word1 = "Amazing". Maybe I'm still unclear?
– Your Majesty
Feb 25 '15 at 19:21
Just to clarify: you want the "love" in "I love you" to be clickable and the link brings you to the sentence "I love learning...", and that the "love" in "I love learning..." is not clickable. Is this correct?
– Herr K.
Feb 25 '15 at 19:48
1
1
hyperlink and hypertarget?– egreg
Feb 25 '15 at 19:09
hyperlink and hypertarget?– egreg
Feb 25 '15 at 19:09
hyperlink links to the given word but I want the name of the linked word to show as in equations e.g. (ref{Eq: NewtonsSecond}) would automatically be written (9) if it happens that Newtons Second Law is the ninth equation in my paper. But I would like to refer to a word where the word is written out as in ref{Word: Word1} would give "Amazing" if I define Word1 = "Amazing". Maybe I'm still unclear?
– Your Majesty
Feb 25 '15 at 19:21
hyperlink links to the given word but I want the name of the linked word to show as in equations e.g. (ref{Eq: NewtonsSecond}) would automatically be written (9) if it happens that Newtons Second Law is the ninth equation in my paper. But I would like to refer to a word where the word is written out as in ref{Word: Word1} would give "Amazing" if I define Word1 = "Amazing". Maybe I'm still unclear?
– Your Majesty
Feb 25 '15 at 19:21
Just to clarify: you want the "love" in "I love you" to be clickable and the link brings you to the sentence "I love learning...", and that the "love" in "I love learning..." is not clickable. Is this correct?
– Herr K.
Feb 25 '15 at 19:48
Just to clarify: you want the "love" in "I love you" to be clickable and the link brings you to the sentence "I love learning...", and that the "love" in "I love learning..." is not clickable. Is this correct?
– Herr K.
Feb 25 '15 at 19:48
add a comment |
1 Answer
1
active
oldest
votes
You have somehow to mark the word you want to refer to:
documentclass{article}
usepackage[a6paper]{geometry}
usepackage[colorlinks]{hyperref}
makeatletter
newcommand{setword}[2]{%
phantomsection
#1def@currentlabel{unexpanded{#1}}label{#2}%
}
makeatother
begin{document}
Some text just to see where the link will point to
Hi, I setword{l'ove}{Word:Love} learning so I ask a lot of questions.
newpage
"I ref{Word:Love} you"
end{document}
Note the usage of the accent in order to show that it works even with special characters.

5
That's just a perfect answer. Your code will now permeate spacetime and remain long after the Sun burns out.
– Your Majesty
Feb 25 '15 at 21:39
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%2f230149%2flabel-a-word-or-sentence%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have somehow to mark the word you want to refer to:
documentclass{article}
usepackage[a6paper]{geometry}
usepackage[colorlinks]{hyperref}
makeatletter
newcommand{setword}[2]{%
phantomsection
#1def@currentlabel{unexpanded{#1}}label{#2}%
}
makeatother
begin{document}
Some text just to see where the link will point to
Hi, I setword{l'ove}{Word:Love} learning so I ask a lot of questions.
newpage
"I ref{Word:Love} you"
end{document}
Note the usage of the accent in order to show that it works even with special characters.

5
That's just a perfect answer. Your code will now permeate spacetime and remain long after the Sun burns out.
– Your Majesty
Feb 25 '15 at 21:39
add a comment |
You have somehow to mark the word you want to refer to:
documentclass{article}
usepackage[a6paper]{geometry}
usepackage[colorlinks]{hyperref}
makeatletter
newcommand{setword}[2]{%
phantomsection
#1def@currentlabel{unexpanded{#1}}label{#2}%
}
makeatother
begin{document}
Some text just to see where the link will point to
Hi, I setword{l'ove}{Word:Love} learning so I ask a lot of questions.
newpage
"I ref{Word:Love} you"
end{document}
Note the usage of the accent in order to show that it works even with special characters.

5
That's just a perfect answer. Your code will now permeate spacetime and remain long after the Sun burns out.
– Your Majesty
Feb 25 '15 at 21:39
add a comment |
You have somehow to mark the word you want to refer to:
documentclass{article}
usepackage[a6paper]{geometry}
usepackage[colorlinks]{hyperref}
makeatletter
newcommand{setword}[2]{%
phantomsection
#1def@currentlabel{unexpanded{#1}}label{#2}%
}
makeatother
begin{document}
Some text just to see where the link will point to
Hi, I setword{l'ove}{Word:Love} learning so I ask a lot of questions.
newpage
"I ref{Word:Love} you"
end{document}
Note the usage of the accent in order to show that it works even with special characters.

You have somehow to mark the word you want to refer to:
documentclass{article}
usepackage[a6paper]{geometry}
usepackage[colorlinks]{hyperref}
makeatletter
newcommand{setword}[2]{%
phantomsection
#1def@currentlabel{unexpanded{#1}}label{#2}%
}
makeatother
begin{document}
Some text just to see where the link will point to
Hi, I setword{l'ove}{Word:Love} learning so I ask a lot of questions.
newpage
"I ref{Word:Love} you"
end{document}
Note the usage of the accent in order to show that it works even with special characters.

answered Feb 25 '15 at 20:50
egregegreg
724k8819173222
724k8819173222
5
That's just a perfect answer. Your code will now permeate spacetime and remain long after the Sun burns out.
– Your Majesty
Feb 25 '15 at 21:39
add a comment |
5
That's just a perfect answer. Your code will now permeate spacetime and remain long after the Sun burns out.
– Your Majesty
Feb 25 '15 at 21:39
5
5
That's just a perfect answer. Your code will now permeate spacetime and remain long after the Sun burns out.
– Your Majesty
Feb 25 '15 at 21:39
That's just a perfect answer. Your code will now permeate spacetime and remain long after the Sun burns out.
– Your Majesty
Feb 25 '15 at 21:39
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%2f230149%2flabel-a-word-or-sentence%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
1
hyperlinkandhypertarget?– egreg
Feb 25 '15 at 19:09
hyperlink links to the given word but I want the name of the linked word to show as in equations e.g. (ref{Eq: NewtonsSecond}) would automatically be written (9) if it happens that Newtons Second Law is the ninth equation in my paper. But I would like to refer to a word where the word is written out as in ref{Word: Word1} would give "Amazing" if I define Word1 = "Amazing". Maybe I'm still unclear?
– Your Majesty
Feb 25 '15 at 19:21
Just to clarify: you want the "love" in "I love you" to be clickable and the link brings you to the sentence "I love learning...", and that the "love" in "I love learning..." is not clickable. Is this correct?
– Herr K.
Feb 25 '15 at 19:48