How can I make these arrows that point to something in the text?
How can I make these arrows that point to something in the text?
arrows
add a comment |
How can I make these arrows that point to something in the text?
arrows
1
Welcome to TeX.SX! Possibly related: tex.stackexchange.com/q/76506/134574
– Phelype Oleinik
Mar 7 at 17:34
1
Related: tex.stackexchange.com/questions/263480/…
– Steven B. Segletes
Mar 7 at 17:38
I would actually use the latest version oftikzmark
for that, which comes with thetikzmarknode
macro.
– marmot
Mar 7 at 18:01
where can I download it?
– Victor Daniel Mendoza Rubio
Mar 7 at 18:35
add a comment |
How can I make these arrows that point to something in the text?
arrows
How can I make these arrows that point to something in the text?
arrows
arrows
edited Mar 7 at 17:33
Phelype Oleinik
24.2k54688
24.2k54688
asked Mar 7 at 17:31
Victor Daniel Mendoza RubioVictor Daniel Mendoza Rubio
1
1
1
Welcome to TeX.SX! Possibly related: tex.stackexchange.com/q/76506/134574
– Phelype Oleinik
Mar 7 at 17:34
1
Related: tex.stackexchange.com/questions/263480/…
– Steven B. Segletes
Mar 7 at 17:38
I would actually use the latest version oftikzmark
for that, which comes with thetikzmarknode
macro.
– marmot
Mar 7 at 18:01
where can I download it?
– Victor Daniel Mendoza Rubio
Mar 7 at 18:35
add a comment |
1
Welcome to TeX.SX! Possibly related: tex.stackexchange.com/q/76506/134574
– Phelype Oleinik
Mar 7 at 17:34
1
Related: tex.stackexchange.com/questions/263480/…
– Steven B. Segletes
Mar 7 at 17:38
I would actually use the latest version oftikzmark
for that, which comes with thetikzmarknode
macro.
– marmot
Mar 7 at 18:01
where can I download it?
– Victor Daniel Mendoza Rubio
Mar 7 at 18:35
1
1
Welcome to TeX.SX! Possibly related: tex.stackexchange.com/q/76506/134574
– Phelype Oleinik
Mar 7 at 17:34
Welcome to TeX.SX! Possibly related: tex.stackexchange.com/q/76506/134574
– Phelype Oleinik
Mar 7 at 17:34
1
1
Related: tex.stackexchange.com/questions/263480/…
– Steven B. Segletes
Mar 7 at 17:38
Related: tex.stackexchange.com/questions/263480/…
– Steven B. Segletes
Mar 7 at 17:38
I would actually use the latest version of
tikzmark
for that, which comes with the tikzmarknode
macro.– marmot
Mar 7 at 18:01
I would actually use the latest version of
tikzmark
for that, which comes with the tikzmarknode
macro.– marmot
Mar 7 at 18:01
where can I download it?
– Victor Daniel Mendoza Rubio
Mar 7 at 18:35
where can I download it?
– Victor Daniel Mendoza Rubio
Mar 7 at 18:35
add a comment |
1 Answer
1
active
oldest
votes
Welcome to TeX-SE! I'd like to advertize tikzmark
for that, which comes with the tikzmarknode
macro. (EDIT: Arrows reversed, big thanks to @KJO!)
documentclass{article}
usepackage{mathtools}
DeclareMathOperator{Gr}{Gr}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
$Gr(tikzmarknode{f}{f})=left{bigl(x,f(x)bigr);~xin Aright}$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (f) |- ++(3em,-1.6em) node[right]{grafico de $f$};
end{tikzpicture}
bigskipbigskip
$displaystylelim_{begin{smallmatrix}xto x_0\
x>x_0end{smallmatrix}}f(x)=tikzmarknode{L}{L}dots$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (L) |- ++(3em,-1.6em) node[right]{numero real};
end{tikzpicture}
end{document}
1
Me again :-) OP gave example with arrowheads other end of leaders, how can leaders be most easily reversed I got a result with[-latex,<-]
but was that the correct way. PS worth mentioning two passes needed it threw me one or twice :-)
– KJO
Mar 7 at 19:43
@KJO Thanks! Really appreciate it! (Yes, I am not looking very carefully after I think that the conceptual problem is solved, but I definitely should.)
– marmot
Mar 7 at 19:45
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%2f478253%2fhow-can-i-make-these-arrows-that-point-to-something-in-the-text%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
Welcome to TeX-SE! I'd like to advertize tikzmark
for that, which comes with the tikzmarknode
macro. (EDIT: Arrows reversed, big thanks to @KJO!)
documentclass{article}
usepackage{mathtools}
DeclareMathOperator{Gr}{Gr}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
$Gr(tikzmarknode{f}{f})=left{bigl(x,f(x)bigr);~xin Aright}$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (f) |- ++(3em,-1.6em) node[right]{grafico de $f$};
end{tikzpicture}
bigskipbigskip
$displaystylelim_{begin{smallmatrix}xto x_0\
x>x_0end{smallmatrix}}f(x)=tikzmarknode{L}{L}dots$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (L) |- ++(3em,-1.6em) node[right]{numero real};
end{tikzpicture}
end{document}
1
Me again :-) OP gave example with arrowheads other end of leaders, how can leaders be most easily reversed I got a result with[-latex,<-]
but was that the correct way. PS worth mentioning two passes needed it threw me one or twice :-)
– KJO
Mar 7 at 19:43
@KJO Thanks! Really appreciate it! (Yes, I am not looking very carefully after I think that the conceptual problem is solved, but I definitely should.)
– marmot
Mar 7 at 19:45
add a comment |
Welcome to TeX-SE! I'd like to advertize tikzmark
for that, which comes with the tikzmarknode
macro. (EDIT: Arrows reversed, big thanks to @KJO!)
documentclass{article}
usepackage{mathtools}
DeclareMathOperator{Gr}{Gr}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
$Gr(tikzmarknode{f}{f})=left{bigl(x,f(x)bigr);~xin Aright}$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (f) |- ++(3em,-1.6em) node[right]{grafico de $f$};
end{tikzpicture}
bigskipbigskip
$displaystylelim_{begin{smallmatrix}xto x_0\
x>x_0end{smallmatrix}}f(x)=tikzmarknode{L}{L}dots$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (L) |- ++(3em,-1.6em) node[right]{numero real};
end{tikzpicture}
end{document}
1
Me again :-) OP gave example with arrowheads other end of leaders, how can leaders be most easily reversed I got a result with[-latex,<-]
but was that the correct way. PS worth mentioning two passes needed it threw me one or twice :-)
– KJO
Mar 7 at 19:43
@KJO Thanks! Really appreciate it! (Yes, I am not looking very carefully after I think that the conceptual problem is solved, but I definitely should.)
– marmot
Mar 7 at 19:45
add a comment |
Welcome to TeX-SE! I'd like to advertize tikzmark
for that, which comes with the tikzmarknode
macro. (EDIT: Arrows reversed, big thanks to @KJO!)
documentclass{article}
usepackage{mathtools}
DeclareMathOperator{Gr}{Gr}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
$Gr(tikzmarknode{f}{f})=left{bigl(x,f(x)bigr);~xin Aright}$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (f) |- ++(3em,-1.6em) node[right]{grafico de $f$};
end{tikzpicture}
bigskipbigskip
$displaystylelim_{begin{smallmatrix}xto x_0\
x>x_0end{smallmatrix}}f(x)=tikzmarknode{L}{L}dots$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (L) |- ++(3em,-1.6em) node[right]{numero real};
end{tikzpicture}
end{document}
Welcome to TeX-SE! I'd like to advertize tikzmark
for that, which comes with the tikzmarknode
macro. (EDIT: Arrows reversed, big thanks to @KJO!)
documentclass{article}
usepackage{mathtools}
DeclareMathOperator{Gr}{Gr}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
$Gr(tikzmarknode{f}{f})=left{bigl(x,f(x)bigr);~xin Aright}$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (f) |- ++(3em,-1.6em) node[right]{grafico de $f$};
end{tikzpicture}
bigskipbigskip
$displaystylelim_{begin{smallmatrix}xto x_0\
x>x_0end{smallmatrix}}f(x)=tikzmarknode{L}{L}dots$
begin{tikzpicture}[overlay,remember picture]
draw[latex-] (L) |- ++(3em,-1.6em) node[right]{numero real};
end{tikzpicture}
end{document}
edited Mar 7 at 19:47
answered Mar 7 at 18:20
marmotmarmot
109k5133251
109k5133251
1
Me again :-) OP gave example with arrowheads other end of leaders, how can leaders be most easily reversed I got a result with[-latex,<-]
but was that the correct way. PS worth mentioning two passes needed it threw me one or twice :-)
– KJO
Mar 7 at 19:43
@KJO Thanks! Really appreciate it! (Yes, I am not looking very carefully after I think that the conceptual problem is solved, but I definitely should.)
– marmot
Mar 7 at 19:45
add a comment |
1
Me again :-) OP gave example with arrowheads other end of leaders, how can leaders be most easily reversed I got a result with[-latex,<-]
but was that the correct way. PS worth mentioning two passes needed it threw me one or twice :-)
– KJO
Mar 7 at 19:43
@KJO Thanks! Really appreciate it! (Yes, I am not looking very carefully after I think that the conceptual problem is solved, but I definitely should.)
– marmot
Mar 7 at 19:45
1
1
Me again :-) OP gave example with arrowheads other end of leaders, how can leaders be most easily reversed I got a result with
[-latex,<-]
but was that the correct way. PS worth mentioning two passes needed it threw me one or twice :-)– KJO
Mar 7 at 19:43
Me again :-) OP gave example with arrowheads other end of leaders, how can leaders be most easily reversed I got a result with
[-latex,<-]
but was that the correct way. PS worth mentioning two passes needed it threw me one or twice :-)– KJO
Mar 7 at 19:43
@KJO Thanks! Really appreciate it! (Yes, I am not looking very carefully after I think that the conceptual problem is solved, but I definitely should.)
– marmot
Mar 7 at 19:45
@KJO Thanks! Really appreciate it! (Yes, I am not looking very carefully after I think that the conceptual problem is solved, but I definitely should.)
– marmot
Mar 7 at 19:45
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%2f478253%2fhow-can-i-make-these-arrows-that-point-to-something-in-the-text%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
Welcome to TeX.SX! Possibly related: tex.stackexchange.com/q/76506/134574
– Phelype Oleinik
Mar 7 at 17:34
1
Related: tex.stackexchange.com/questions/263480/…
– Steven B. Segletes
Mar 7 at 17:38
I would actually use the latest version of
tikzmark
for that, which comes with thetikzmarknode
macro.– marmot
Mar 7 at 18:01
where can I download it?
– Victor Daniel Mendoza Rubio
Mar 7 at 18:35