Cummulative spacing after runsubsection











up vote
1
down vote

favorite












I'm new to Latex and I'm adapting Deedy resume template trying to add dots joined by lines to spot dates using Tikz. After each runsubsection command nodes are placed after vertical spacing that appears to be linear to the current subsection number.



The code is showing node borders in order to show the problem. I'm attaching an image with the spacing marked with a red ellipse.



enter image description here



My code:



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (,1) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (,2) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (,3) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document} documentclass{article}


What am I missing?










share|improve this question




















  • 1




    Thanks, Marmot! I have updated the code and the image.
    – Rod
    Nov 28 at 3:33










  • Please remove documentclass{article} in the end. (Unfortunately I cannot help you since I do not have the document class and do not follow external links. What strikes me odd, though are all the missing x coordinates as in at (,0), I've not seen that before in a working code.)
    – marmot
    Nov 28 at 3:35










  • You have been taken in by a common misconception. What is referred to on the internet as “LaTeX templates” are in reality other people's documents which are tailored to their specific needs. Therefore it is close to impossible to perform any modifications on these without breaking the entire thing. They are really only meant to exchange their content with yours. Any other adjustment is simply out of scope.
    – Henri Menke
    Nov 28 at 3:42










  • Thanks again @Marmot, I am generating my latex with an erb template and I added a bug when I was trimming it for this questions. I have added a link to overleaf to show the problem.
    – Rod
    Nov 28 at 4:16












  • Maybe tikzstyle{every picture}+=[remember picture] is changing of value every time we have a remember picture?
    – manooooh
    Nov 28 at 4:49















up vote
1
down vote

favorite












I'm new to Latex and I'm adapting Deedy resume template trying to add dots joined by lines to spot dates using Tikz. After each runsubsection command nodes are placed after vertical spacing that appears to be linear to the current subsection number.



The code is showing node borders in order to show the problem. I'm attaching an image with the spacing marked with a red ellipse.



enter image description here



My code:



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (,1) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (,2) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (,3) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document} documentclass{article}


What am I missing?










share|improve this question




















  • 1




    Thanks, Marmot! I have updated the code and the image.
    – Rod
    Nov 28 at 3:33










  • Please remove documentclass{article} in the end. (Unfortunately I cannot help you since I do not have the document class and do not follow external links. What strikes me odd, though are all the missing x coordinates as in at (,0), I've not seen that before in a working code.)
    – marmot
    Nov 28 at 3:35










  • You have been taken in by a common misconception. What is referred to on the internet as “LaTeX templates” are in reality other people's documents which are tailored to their specific needs. Therefore it is close to impossible to perform any modifications on these without breaking the entire thing. They are really only meant to exchange their content with yours. Any other adjustment is simply out of scope.
    – Henri Menke
    Nov 28 at 3:42










  • Thanks again @Marmot, I am generating my latex with an erb template and I added a bug when I was trimming it for this questions. I have added a link to overleaf to show the problem.
    – Rod
    Nov 28 at 4:16












  • Maybe tikzstyle{every picture}+=[remember picture] is changing of value every time we have a remember picture?
    – manooooh
    Nov 28 at 4:49













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I'm new to Latex and I'm adapting Deedy resume template trying to add dots joined by lines to spot dates using Tikz. After each runsubsection command nodes are placed after vertical spacing that appears to be linear to the current subsection number.



The code is showing node borders in order to show the problem. I'm attaching an image with the spacing marked with a red ellipse.



enter image description here



My code:



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (,1) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (,2) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (,3) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document} documentclass{article}


What am I missing?










share|improve this question















I'm new to Latex and I'm adapting Deedy resume template trying to add dots joined by lines to spot dates using Tikz. After each runsubsection command nodes are placed after vertical spacing that appears to be linear to the current subsection number.



The code is showing node borders in order to show the problem. I'm attaching an image with the spacing marked with a red ellipse.



enter image description here



My code:



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (,1) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (,2) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (,3) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document} documentclass{article}


What am I missing?







spacing templates deedy-resume






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 28 at 8:32









sztruks

1,445717




1,445717










asked Nov 28 at 2:52









Rod

1345




1345








  • 1




    Thanks, Marmot! I have updated the code and the image.
    – Rod
    Nov 28 at 3:33










  • Please remove documentclass{article} in the end. (Unfortunately I cannot help you since I do not have the document class and do not follow external links. What strikes me odd, though are all the missing x coordinates as in at (,0), I've not seen that before in a working code.)
    – marmot
    Nov 28 at 3:35










  • You have been taken in by a common misconception. What is referred to on the internet as “LaTeX templates” are in reality other people's documents which are tailored to their specific needs. Therefore it is close to impossible to perform any modifications on these without breaking the entire thing. They are really only meant to exchange their content with yours. Any other adjustment is simply out of scope.
    – Henri Menke
    Nov 28 at 3:42










  • Thanks again @Marmot, I am generating my latex with an erb template and I added a bug when I was trimming it for this questions. I have added a link to overleaf to show the problem.
    – Rod
    Nov 28 at 4:16












  • Maybe tikzstyle{every picture}+=[remember picture] is changing of value every time we have a remember picture?
    – manooooh
    Nov 28 at 4:49














  • 1




    Thanks, Marmot! I have updated the code and the image.
    – Rod
    Nov 28 at 3:33










  • Please remove documentclass{article} in the end. (Unfortunately I cannot help you since I do not have the document class and do not follow external links. What strikes me odd, though are all the missing x coordinates as in at (,0), I've not seen that before in a working code.)
    – marmot
    Nov 28 at 3:35










  • You have been taken in by a common misconception. What is referred to on the internet as “LaTeX templates” are in reality other people's documents which are tailored to their specific needs. Therefore it is close to impossible to perform any modifications on these without breaking the entire thing. They are really only meant to exchange their content with yours. Any other adjustment is simply out of scope.
    – Henri Menke
    Nov 28 at 3:42










  • Thanks again @Marmot, I am generating my latex with an erb template and I added a bug when I was trimming it for this questions. I have added a link to overleaf to show the problem.
    – Rod
    Nov 28 at 4:16












  • Maybe tikzstyle{every picture}+=[remember picture] is changing of value every time we have a remember picture?
    – manooooh
    Nov 28 at 4:49








1




1




Thanks, Marmot! I have updated the code and the image.
– Rod
Nov 28 at 3:33




Thanks, Marmot! I have updated the code and the image.
– Rod
Nov 28 at 3:33












Please remove documentclass{article} in the end. (Unfortunately I cannot help you since I do not have the document class and do not follow external links. What strikes me odd, though are all the missing x coordinates as in at (,0), I've not seen that before in a working code.)
– marmot
Nov 28 at 3:35




Please remove documentclass{article} in the end. (Unfortunately I cannot help you since I do not have the document class and do not follow external links. What strikes me odd, though are all the missing x coordinates as in at (,0), I've not seen that before in a working code.)
– marmot
Nov 28 at 3:35












You have been taken in by a common misconception. What is referred to on the internet as “LaTeX templates” are in reality other people's documents which are tailored to their specific needs. Therefore it is close to impossible to perform any modifications on these without breaking the entire thing. They are really only meant to exchange their content with yours. Any other adjustment is simply out of scope.
– Henri Menke
Nov 28 at 3:42




You have been taken in by a common misconception. What is referred to on the internet as “LaTeX templates” are in reality other people's documents which are tailored to their specific needs. Therefore it is close to impossible to perform any modifications on these without breaking the entire thing. They are really only meant to exchange their content with yours. Any other adjustment is simply out of scope.
– Henri Menke
Nov 28 at 3:42












Thanks again @Marmot, I am generating my latex with an erb template and I added a bug when I was trimming it for this questions. I have added a link to overleaf to show the problem.
– Rod
Nov 28 at 4:16






Thanks again @Marmot, I am generating my latex with an erb template and I added a bug when I was trimming it for this questions. I have added a link to overleaf to show the problem.
– Rod
Nov 28 at 4:16














Maybe tikzstyle{every picture}+=[remember picture] is changing of value every time we have a remember picture?
– manooooh
Nov 28 at 4:49




Maybe tikzstyle{every picture}+=[remember picture] is changing of value every time we have a remember picture?
– manooooh
Nov 28 at 4:49










1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










Just use node[...] at (0,0) everywhere (or leave out at (0,0) altogether)



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document}


Live example on Overleaf






share|improve this answer





















  • Nice tool. I have cloned your project to show my problem when I try to join nodes with lines: v1.overleaf.com/22634957hydkptwgmmyn#/74549583
    – Rod
    Nov 28 at 4:07












  • @Rod Why aren't you doing as I suggested in the answer and set at (0,0) for all the nodes? v1.overleaf.com/read/bjsttjywtkcr
    – Henri Menke
    Nov 28 at 4:20










  • I have done it and it is almost finished, thanks for your support @Henri. Just one misalignment in the line "some problem HERE!". By any chance do you know what's the issue there?
    – Rod
    Nov 28 at 4:25












  • @Rod location{some problem HERE!}parvspace{topsep} It's always fun using this “template” garbage.
    – Henri Menke
    Nov 28 at 4:37











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',
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f462099%2fcummulative-spacing-after-runsubsection%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








up vote
1
down vote



accepted










Just use node[...] at (0,0) everywhere (or leave out at (0,0) altogether)



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document}


Live example on Overleaf






share|improve this answer





















  • Nice tool. I have cloned your project to show my problem when I try to join nodes with lines: v1.overleaf.com/22634957hydkptwgmmyn#/74549583
    – Rod
    Nov 28 at 4:07












  • @Rod Why aren't you doing as I suggested in the answer and set at (0,0) for all the nodes? v1.overleaf.com/read/bjsttjywtkcr
    – Henri Menke
    Nov 28 at 4:20










  • I have done it and it is almost finished, thanks for your support @Henri. Just one misalignment in the line "some problem HERE!". By any chance do you know what's the issue there?
    – Rod
    Nov 28 at 4:25












  • @Rod location{some problem HERE!}parvspace{topsep} It's always fun using this “template” garbage.
    – Henri Menke
    Nov 28 at 4:37















up vote
1
down vote



accepted










Just use node[...] at (0,0) everywhere (or leave out at (0,0) altogether)



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document}


Live example on Overleaf






share|improve this answer





















  • Nice tool. I have cloned your project to show my problem when I try to join nodes with lines: v1.overleaf.com/22634957hydkptwgmmyn#/74549583
    – Rod
    Nov 28 at 4:07












  • @Rod Why aren't you doing as I suggested in the answer and set at (0,0) for all the nodes? v1.overleaf.com/read/bjsttjywtkcr
    – Henri Menke
    Nov 28 at 4:20










  • I have done it and it is almost finished, thanks for your support @Henri. Just one misalignment in the line "some problem HERE!". By any chance do you know what's the issue there?
    – Rod
    Nov 28 at 4:25












  • @Rod location{some problem HERE!}parvspace{topsep} It's always fun using this “template” garbage.
    – Henri Menke
    Nov 28 at 4:37













up vote
1
down vote



accepted







up vote
1
down vote



accepted






Just use node[...] at (0,0) everywhere (or leave out at (0,0) altogether)



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document}


Live example on Overleaf






share|improve this answer












Just use node[...] at (0,0) everywhere (or leave out at (0,0) altogether)



documentclass{deedy-resume-openfont}
usepackage{fancyhdr}
usepackage{blindtext}
usepackage{enumitem}
usepackage{tikz}
usepackage{varwidth}
usetikzlibrary{shapes,snakes}

usetikzlibrary{shapes,arrows,backgrounds,positioning}

pagestyle{fancy}
fancyhf{}

begin{document}

namesection{doo}{bar}{ urlstyle{same}href{https://foo} \
}


section{Section}
tikzstyle{every picture}+=[remember picture]

%n0
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n0) at (,0) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n1
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n1) at (,1) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n2
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n2) at (,2) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

%n3
%tikz[baseline] node[circle,label=left:label,fill=black,inner sep=3pt] (n3) at (,3) {};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
vbox{
runsubsection{runsubsection}descript{| descript }
}
};
tikz[baseline] node[draw,fill=none,align=left] at (0,0) {
hspace*{15mm}vbox{
blindtext
}
};

sectionsep
end{document}


Live example on Overleaf







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 28 at 3:41









Henri Menke

68.1k7152255




68.1k7152255












  • Nice tool. I have cloned your project to show my problem when I try to join nodes with lines: v1.overleaf.com/22634957hydkptwgmmyn#/74549583
    – Rod
    Nov 28 at 4:07












  • @Rod Why aren't you doing as I suggested in the answer and set at (0,0) for all the nodes? v1.overleaf.com/read/bjsttjywtkcr
    – Henri Menke
    Nov 28 at 4:20










  • I have done it and it is almost finished, thanks for your support @Henri. Just one misalignment in the line "some problem HERE!". By any chance do you know what's the issue there?
    – Rod
    Nov 28 at 4:25












  • @Rod location{some problem HERE!}parvspace{topsep} It's always fun using this “template” garbage.
    – Henri Menke
    Nov 28 at 4:37


















  • Nice tool. I have cloned your project to show my problem when I try to join nodes with lines: v1.overleaf.com/22634957hydkptwgmmyn#/74549583
    – Rod
    Nov 28 at 4:07












  • @Rod Why aren't you doing as I suggested in the answer and set at (0,0) for all the nodes? v1.overleaf.com/read/bjsttjywtkcr
    – Henri Menke
    Nov 28 at 4:20










  • I have done it and it is almost finished, thanks for your support @Henri. Just one misalignment in the line "some problem HERE!". By any chance do you know what's the issue there?
    – Rod
    Nov 28 at 4:25












  • @Rod location{some problem HERE!}parvspace{topsep} It's always fun using this “template” garbage.
    – Henri Menke
    Nov 28 at 4:37
















Nice tool. I have cloned your project to show my problem when I try to join nodes with lines: v1.overleaf.com/22634957hydkptwgmmyn#/74549583
– Rod
Nov 28 at 4:07






Nice tool. I have cloned your project to show my problem when I try to join nodes with lines: v1.overleaf.com/22634957hydkptwgmmyn#/74549583
– Rod
Nov 28 at 4:07














@Rod Why aren't you doing as I suggested in the answer and set at (0,0) for all the nodes? v1.overleaf.com/read/bjsttjywtkcr
– Henri Menke
Nov 28 at 4:20




@Rod Why aren't you doing as I suggested in the answer and set at (0,0) for all the nodes? v1.overleaf.com/read/bjsttjywtkcr
– Henri Menke
Nov 28 at 4:20












I have done it and it is almost finished, thanks for your support @Henri. Just one misalignment in the line "some problem HERE!". By any chance do you know what's the issue there?
– Rod
Nov 28 at 4:25






I have done it and it is almost finished, thanks for your support @Henri. Just one misalignment in the line "some problem HERE!". By any chance do you know what's the issue there?
– Rod
Nov 28 at 4:25














@Rod location{some problem HERE!}parvspace{topsep} It's always fun using this “template” garbage.
– Henri Menke
Nov 28 at 4:37




@Rod location{some problem HERE!}parvspace{topsep} It's always fun using this “template” garbage.
– Henri Menke
Nov 28 at 4:37


















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f462099%2fcummulative-spacing-after-runsubsection%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?