How to create two arrow breaks?
I'm trying to break a line in two places, to achieve something like this:

The example has rounded breaks but that's the idea. I have the following code, which generates only one break:
documentclass{article}
usepackage{tikz}
usetikzlibrary{automata,positioning,arrows,arrows.meta,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{automata,positioning,arrows,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{angles,quotes}
usetikzlibrary{decorations.pathreplacing,calc}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex']
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- (fp);
path [arrow] (pulse) |- (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
This code generates this figure:

I was trying to create the two breaks in the arrows connecting P and FP, P and RP, and an arrow from the bottom FP and RP connecting and pointing below. I've tried to create an auxiliary invisible node between, but this node still occupies space (which can be seen in the image, the gap between the lines).
How can I break these lines?
Thank you!
tikz-pgf tikz-arrows
add a comment |
I'm trying to break a line in two places, to achieve something like this:

The example has rounded breaks but that's the idea. I have the following code, which generates only one break:
documentclass{article}
usepackage{tikz}
usetikzlibrary{automata,positioning,arrows,arrows.meta,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{automata,positioning,arrows,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{angles,quotes}
usetikzlibrary{decorations.pathreplacing,calc}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex']
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- (fp);
path [arrow] (pulse) |- (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
This code generates this figure:

I was trying to create the two breaks in the arrows connecting P and FP, P and RP, and an arrow from the bottom FP and RP connecting and pointing below. I've tried to create an auxiliary invisible node between, but this node still occupies space (which can be seen in the image, the gap between the lines).
How can I break these lines?
Thank you!
tikz-pgf tikz-arrows
add a comment |
I'm trying to break a line in two places, to achieve something like this:

The example has rounded breaks but that's the idea. I have the following code, which generates only one break:
documentclass{article}
usepackage{tikz}
usetikzlibrary{automata,positioning,arrows,arrows.meta,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{automata,positioning,arrows,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{angles,quotes}
usetikzlibrary{decorations.pathreplacing,calc}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex']
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- (fp);
path [arrow] (pulse) |- (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
This code generates this figure:

I was trying to create the two breaks in the arrows connecting P and FP, P and RP, and an arrow from the bottom FP and RP connecting and pointing below. I've tried to create an auxiliary invisible node between, but this node still occupies space (which can be seen in the image, the gap between the lines).
How can I break these lines?
Thank you!
tikz-pgf tikz-arrows
I'm trying to break a line in two places, to achieve something like this:

The example has rounded breaks but that's the idea. I have the following code, which generates only one break:
documentclass{article}
usepackage{tikz}
usetikzlibrary{automata,positioning,arrows,arrows.meta,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{automata,positioning,arrows,shapes,decorations.pathreplacing,fit,calc}
usetikzlibrary{angles,quotes}
usetikzlibrary{decorations.pathreplacing,calc}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex']
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- (fp);
path [arrow] (pulse) |- (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
This code generates this figure:

I was trying to create the two breaks in the arrows connecting P and FP, P and RP, and an arrow from the bottom FP and RP connecting and pointing below. I've tried to create an auxiliary invisible node between, but this node still occupies space (which can be seen in the image, the gap between the lines).
How can I break these lines?
Thank you!
tikz-pgf tikz-arrows
tikz-pgf tikz-arrows
asked Nov 26 '18 at 8:44
HelHel
14218
14218
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Choose a point in the middle and 'break' again. Use rounded corners option if you don't want the sharp corners.

documentclass{article}
usepackage{tikz}
usetikzlibrary{shapes,calc,arrows}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex',rounded corners]
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (fp);
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
That's literally the code I posted... Am I missing something?
– Hel
Nov 26 '18 at 9:10
@Hel. See the line where paths are drawn from(pulse)to(fp)and(rp)
– nidhin
Nov 26 '18 at 9:12
@Hel. Also removed few tikz libraries which are needed for this code to run.
– nidhin
Nov 26 '18 at 9:19
thank you! I must be blind, I was looking at the bottom arrow and didn't even notice the top one. Thank you so much, that's exactly what I wanted. I've managed to fix the other as well. I copied them from the original doc, which has a lot of images, they're necessary for the others. Thank you again!
– Hel
Nov 26 '18 at 9:28
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%2f461790%2fhow-to-create-two-arrow-breaks%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
Choose a point in the middle and 'break' again. Use rounded corners option if you don't want the sharp corners.

documentclass{article}
usepackage{tikz}
usetikzlibrary{shapes,calc,arrows}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex',rounded corners]
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (fp);
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
That's literally the code I posted... Am I missing something?
– Hel
Nov 26 '18 at 9:10
@Hel. See the line where paths are drawn from(pulse)to(fp)and(rp)
– nidhin
Nov 26 '18 at 9:12
@Hel. Also removed few tikz libraries which are needed for this code to run.
– nidhin
Nov 26 '18 at 9:19
thank you! I must be blind, I was looking at the bottom arrow and didn't even notice the top one. Thank you so much, that's exactly what I wanted. I've managed to fix the other as well. I copied them from the original doc, which has a lot of images, they're necessary for the others. Thank you again!
– Hel
Nov 26 '18 at 9:28
add a comment |
Choose a point in the middle and 'break' again. Use rounded corners option if you don't want the sharp corners.

documentclass{article}
usepackage{tikz}
usetikzlibrary{shapes,calc,arrows}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex',rounded corners]
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (fp);
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
That's literally the code I posted... Am I missing something?
– Hel
Nov 26 '18 at 9:10
@Hel. See the line where paths are drawn from(pulse)to(fp)and(rp)
– nidhin
Nov 26 '18 at 9:12
@Hel. Also removed few tikz libraries which are needed for this code to run.
– nidhin
Nov 26 '18 at 9:19
thank you! I must be blind, I was looking at the bottom arrow and didn't even notice the top one. Thank you so much, that's exactly what I wanted. I've managed to fix the other as well. I copied them from the original doc, which has a lot of images, they're necessary for the others. Thank you again!
– Hel
Nov 26 '18 at 9:28
add a comment |
Choose a point in the middle and 'break' again. Use rounded corners option if you don't want the sharp corners.

documentclass{article}
usepackage{tikz}
usetikzlibrary{shapes,calc,arrows}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex',rounded corners]
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (fp);
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
Choose a point in the middle and 'break' again. Use rounded corners option if you don't want the sharp corners.

documentclass{article}
usepackage{tikz}
usetikzlibrary{shapes,calc,arrows}
begin{document}
% Define block styles
tikzstyle{decision} = [diamond, draw,
text width=4.8em, text centered, node distance=2cm, inner sep=0pt]
tikzstyle{block} = [rectangle, draw,
text width=7em, text centered, rounded corners, minimum height=2em]
tikzstyle{arrow} = [draw, -latex',rounded corners]
tikzstyle{line} = [draw]
tikzstyle{invisible4} = [rectangle]
tikzstyle{invisible5} = [rectangle]
tikzstyle{circular} = [draw, circle, radius=1.0cm,]
begin{figure}[h]
centering
begin{tikzpicture}[node distance = 2cm, auto, scale=1.0]
node [block] (pulse) {small P};
node [invisible4, below of=pulse] (aux2) {};
node [block, left of=aux2] (fp) {small FP};
node [block, right of=aux2] (rp) {small FP};
node [circular, below of=aux2] (minus) {small -};
node [decision, below of=minus] (threshold) {small $le T$ ?};
node [invisible4, below of=threshold] (aux3) {};
node [block, left of=aux3] (fp2) {small FP};
node [block, right of=aux3] (rp2) {small RP};
node [invisible4, below of=aux3, node distance=1.0cm] (aux) {};
node [invisible5, draw=none, below of=aux, node distance=1.0cm] (aux4) {};
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (fp);
path [arrow] (pulse) |- ($(pulse)+(0,-1)$) -| (rp);
path [arrow] (fp) |- (minus);
path [arrow] (rp) |- (minus);
path [arrow] (minus) -- (threshold);
path [arrow] (threshold) -| node [above, near start] {yes} (fp2);
path [arrow] (threshold) -| node [near start] {no} (rp2);
path [line] (fp2) |- (aux);
path [line] (rp2) |- (aux);
end{tikzpicture}
end{figure}
end{document}
edited Nov 26 '18 at 9:15
answered Nov 26 '18 at 9:03
nidhinnidhin
3,3521927
3,3521927
That's literally the code I posted... Am I missing something?
– Hel
Nov 26 '18 at 9:10
@Hel. See the line where paths are drawn from(pulse)to(fp)and(rp)
– nidhin
Nov 26 '18 at 9:12
@Hel. Also removed few tikz libraries which are needed for this code to run.
– nidhin
Nov 26 '18 at 9:19
thank you! I must be blind, I was looking at the bottom arrow and didn't even notice the top one. Thank you so much, that's exactly what I wanted. I've managed to fix the other as well. I copied them from the original doc, which has a lot of images, they're necessary for the others. Thank you again!
– Hel
Nov 26 '18 at 9:28
add a comment |
That's literally the code I posted... Am I missing something?
– Hel
Nov 26 '18 at 9:10
@Hel. See the line where paths are drawn from(pulse)to(fp)and(rp)
– nidhin
Nov 26 '18 at 9:12
@Hel. Also removed few tikz libraries which are needed for this code to run.
– nidhin
Nov 26 '18 at 9:19
thank you! I must be blind, I was looking at the bottom arrow and didn't even notice the top one. Thank you so much, that's exactly what I wanted. I've managed to fix the other as well. I copied them from the original doc, which has a lot of images, they're necessary for the others. Thank you again!
– Hel
Nov 26 '18 at 9:28
That's literally the code I posted... Am I missing something?
– Hel
Nov 26 '18 at 9:10
That's literally the code I posted... Am I missing something?
– Hel
Nov 26 '18 at 9:10
@Hel. See the line where paths are drawn from
(pulse) to (fp) and (rp)– nidhin
Nov 26 '18 at 9:12
@Hel. See the line where paths are drawn from
(pulse) to (fp) and (rp)– nidhin
Nov 26 '18 at 9:12
@Hel. Also removed few tikz libraries which are needed for this code to run.
– nidhin
Nov 26 '18 at 9:19
@Hel. Also removed few tikz libraries which are needed for this code to run.
– nidhin
Nov 26 '18 at 9:19
thank you! I must be blind, I was looking at the bottom arrow and didn't even notice the top one. Thank you so much, that's exactly what I wanted. I've managed to fix the other as well. I copied them from the original doc, which has a lot of images, they're necessary for the others. Thank you again!
– Hel
Nov 26 '18 at 9:28
thank you! I must be blind, I was looking at the bottom arrow and didn't even notice the top one. Thank you so much, that's exactly what I wanted. I've managed to fix the other as well. I copied them from the original doc, which has a lot of images, they're necessary for the others. Thank you again!
– Hel
Nov 26 '18 at 9:28
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%2f461790%2fhow-to-create-two-arrow-breaks%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