Drawing grid lines to show vertical position of text











up vote
1
down vote

favorite












I have text where I want to adjust the space above the first line. I want to overlay grid lines to show where the vertical position of the text is.



The MWE below with the following line commented is the standard output. The red horizontal lines are integer multiples of baselineskip from the top.



%defIncludeDesiredTopSkip{}


enter image description here



However, if I uncomment this line (which applies the DesiredTopSkip, which is set to 0pt here), I obtain the following:



defIncludeDesiredTopSkip{}


enter image description here



Note that the baseline now is exactly on the line.



Question:



What am I missing that would explain this discrepancy in the two cases and how do I get both cases to properly display the baseline?



Note:




  • In case anyone is curious as to why I want to do this: These lines are then used to compute the parshape parameters based on where these lines intersect the particular shape.


References:




  • Why does vspace*{0pt} add vertical space?.


  • Confused with TeX terminology: height, depth, width



Code:



%defIncludeDesiredTopSkip{}
documentclass{article}
usepackage{showframe}
usepackage{tikz}

usepackage[paperwidth=7.0cm]{geometry}

newcommand*{DesiredTopSkip}{0pt}

newcommand*{ShowTextGuideLines}[1]{%
begin{tikzpicture}[remember picture, overlay]
coordinate (X) at ([
xshift=1.0in+hoffset+oddsidemargin,
yshift=-1.0in-voffset-topmargin-headheight-headsep%
]current page.north west);

node [draw=red, fill=yellow] at (X) {X};%% DEBUGGING: Ensure (X) is the correct spot.

foreach X in {1, ..., #1} {%
draw [thin, red] ([yshift=-Xbaselineskip-DesiredTopSkip]X) -- ++ (hsize,0);
}%
end{tikzpicture}%
}%

begin{document}
ifdefinedIncludeDesiredTopSkip
%% See comments in https://tex.stackexchange.com/q/7676/4301
hbox{}kern-topskip%
vspace*{DesiredTopSkip}%
fi
First line. abcdefghij
par
Second line. abcdefghij
ShowTextGuideLines{3}
end{document}









share|improve this question






















  • But you already know that the problem is topskip: The first line is not at a distance of baselineskip (12pt) from the x but of topskip (10pt if there is nothing large in the line).
    – Ulrike Fischer
    38 mins ago















up vote
1
down vote

favorite












I have text where I want to adjust the space above the first line. I want to overlay grid lines to show where the vertical position of the text is.



The MWE below with the following line commented is the standard output. The red horizontal lines are integer multiples of baselineskip from the top.



%defIncludeDesiredTopSkip{}


enter image description here



However, if I uncomment this line (which applies the DesiredTopSkip, which is set to 0pt here), I obtain the following:



defIncludeDesiredTopSkip{}


enter image description here



Note that the baseline now is exactly on the line.



Question:



What am I missing that would explain this discrepancy in the two cases and how do I get both cases to properly display the baseline?



Note:




  • In case anyone is curious as to why I want to do this: These lines are then used to compute the parshape parameters based on where these lines intersect the particular shape.


References:




  • Why does vspace*{0pt} add vertical space?.


  • Confused with TeX terminology: height, depth, width



Code:



%defIncludeDesiredTopSkip{}
documentclass{article}
usepackage{showframe}
usepackage{tikz}

usepackage[paperwidth=7.0cm]{geometry}

newcommand*{DesiredTopSkip}{0pt}

newcommand*{ShowTextGuideLines}[1]{%
begin{tikzpicture}[remember picture, overlay]
coordinate (X) at ([
xshift=1.0in+hoffset+oddsidemargin,
yshift=-1.0in-voffset-topmargin-headheight-headsep%
]current page.north west);

node [draw=red, fill=yellow] at (X) {X};%% DEBUGGING: Ensure (X) is the correct spot.

foreach X in {1, ..., #1} {%
draw [thin, red] ([yshift=-Xbaselineskip-DesiredTopSkip]X) -- ++ (hsize,0);
}%
end{tikzpicture}%
}%

begin{document}
ifdefinedIncludeDesiredTopSkip
%% See comments in https://tex.stackexchange.com/q/7676/4301
hbox{}kern-topskip%
vspace*{DesiredTopSkip}%
fi
First line. abcdefghij
par
Second line. abcdefghij
ShowTextGuideLines{3}
end{document}









share|improve this question






















  • But you already know that the problem is topskip: The first line is not at a distance of baselineskip (12pt) from the x but of topskip (10pt if there is nothing large in the line).
    – Ulrike Fischer
    38 mins ago













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have text where I want to adjust the space above the first line. I want to overlay grid lines to show where the vertical position of the text is.



The MWE below with the following line commented is the standard output. The red horizontal lines are integer multiples of baselineskip from the top.



%defIncludeDesiredTopSkip{}


enter image description here



However, if I uncomment this line (which applies the DesiredTopSkip, which is set to 0pt here), I obtain the following:



defIncludeDesiredTopSkip{}


enter image description here



Note that the baseline now is exactly on the line.



Question:



What am I missing that would explain this discrepancy in the two cases and how do I get both cases to properly display the baseline?



Note:




  • In case anyone is curious as to why I want to do this: These lines are then used to compute the parshape parameters based on where these lines intersect the particular shape.


References:




  • Why does vspace*{0pt} add vertical space?.


  • Confused with TeX terminology: height, depth, width



Code:



%defIncludeDesiredTopSkip{}
documentclass{article}
usepackage{showframe}
usepackage{tikz}

usepackage[paperwidth=7.0cm]{geometry}

newcommand*{DesiredTopSkip}{0pt}

newcommand*{ShowTextGuideLines}[1]{%
begin{tikzpicture}[remember picture, overlay]
coordinate (X) at ([
xshift=1.0in+hoffset+oddsidemargin,
yshift=-1.0in-voffset-topmargin-headheight-headsep%
]current page.north west);

node [draw=red, fill=yellow] at (X) {X};%% DEBUGGING: Ensure (X) is the correct spot.

foreach X in {1, ..., #1} {%
draw [thin, red] ([yshift=-Xbaselineskip-DesiredTopSkip]X) -- ++ (hsize,0);
}%
end{tikzpicture}%
}%

begin{document}
ifdefinedIncludeDesiredTopSkip
%% See comments in https://tex.stackexchange.com/q/7676/4301
hbox{}kern-topskip%
vspace*{DesiredTopSkip}%
fi
First line. abcdefghij
par
Second line. abcdefghij
ShowTextGuideLines{3}
end{document}









share|improve this question













I have text where I want to adjust the space above the first line. I want to overlay grid lines to show where the vertical position of the text is.



The MWE below with the following line commented is the standard output. The red horizontal lines are integer multiples of baselineskip from the top.



%defIncludeDesiredTopSkip{}


enter image description here



However, if I uncomment this line (which applies the DesiredTopSkip, which is set to 0pt here), I obtain the following:



defIncludeDesiredTopSkip{}


enter image description here



Note that the baseline now is exactly on the line.



Question:



What am I missing that would explain this discrepancy in the two cases and how do I get both cases to properly display the baseline?



Note:




  • In case anyone is curious as to why I want to do this: These lines are then used to compute the parshape parameters based on where these lines intersect the particular shape.


References:




  • Why does vspace*{0pt} add vertical space?.


  • Confused with TeX terminology: height, depth, width



Code:



%defIncludeDesiredTopSkip{}
documentclass{article}
usepackage{showframe}
usepackage{tikz}

usepackage[paperwidth=7.0cm]{geometry}

newcommand*{DesiredTopSkip}{0pt}

newcommand*{ShowTextGuideLines}[1]{%
begin{tikzpicture}[remember picture, overlay]
coordinate (X) at ([
xshift=1.0in+hoffset+oddsidemargin,
yshift=-1.0in-voffset-topmargin-headheight-headsep%
]current page.north west);

node [draw=red, fill=yellow] at (X) {X};%% DEBUGGING: Ensure (X) is the correct spot.

foreach X in {1, ..., #1} {%
draw [thin, red] ([yshift=-Xbaselineskip-DesiredTopSkip]X) -- ++ (hsize,0);
}%
end{tikzpicture}%
}%

begin{document}
ifdefinedIncludeDesiredTopSkip
%% See comments in https://tex.stackexchange.com/q/7676/4301
hbox{}kern-topskip%
vspace*{DesiredTopSkip}%
fi
First line. abcdefghij
par
Second line. abcdefghij
ShowTextGuideLines{3}
end{document}






spacing vertical-alignment boxes dimensions






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 1 hour ago









Peter Grill

163k24432740




163k24432740












  • But you already know that the problem is topskip: The first line is not at a distance of baselineskip (12pt) from the x but of topskip (10pt if there is nothing large in the line).
    – Ulrike Fischer
    38 mins ago


















  • But you already know that the problem is topskip: The first line is not at a distance of baselineskip (12pt) from the x but of topskip (10pt if there is nothing large in the line).
    – Ulrike Fischer
    38 mins ago
















But you already know that the problem is topskip: The first line is not at a distance of baselineskip (12pt) from the x but of topskip (10pt if there is nothing large in the line).
– Ulrike Fischer
38 mins ago




But you already know that the problem is topskip: The first line is not at a distance of baselineskip (12pt) from the x but of topskip (10pt if there is nothing large in the line).
– Ulrike Fischer
38 mins ago















active

oldest

votes











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%2f461069%2fdrawing-grid-lines-to-show-vertical-position-of-text%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461069%2fdrawing-grid-lines-to-show-vertical-position-of-text%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

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks