Discontinuous table border line appearing while using tabular The Next CEO of Stack OverflowIncrease LaTeX table row heightExhaustive Information about text alignment in TabularRemove whitespace around an enumeration in a tableIncorrect vertical line spacing after changing font size in tableLearning latex; not satisfied with my tablesDiscontinuous line using multirowDiscontinuous borders in tableProblem aligning decimals in multi-column tableGap under top border of table while using hhlineHow to set longtable width to text width so that the text in cell wraps around automatically?horizontal line in table does not cover full width
Won the lottery - how do I keep the money?
Why do airplanes bank sharply to the right after air-to-air refueling?
Does Germany produce more waste than the US?
Are police here, aren't itthey?
Is it convenient to ask the journal's editor for two additional days to complete a review?
How do I align (1) and (2)?
Unclear about dynamic binding
What is the value of α and β in a triangle?
Do I need to write [sic] when a number is less than 10 but isn't written out?
Is micro rebar a better way to reinforce concrete than rebar?
Method for adding error messages to a dictionary given a key
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
Why does standard notation not preserve intervals (visually)
How to install OpenCV on Raspbian Stretch?
What connection does MS Office have to Netscape Navigator?
How to place nodes around a circle from some initial angle?
Where do students learn to solve polynomial equations these days?
Why, when going from special to general relativity, do we just replace partial derivatives with covariant derivatives?
Why didn't Khan get resurrected in the Genesis Explosion?
Is a distribution that is normal, but highly skewed considered Gaussian?
Some questions about different axiomatic systems for neighbourhoods
I want to delete every two lines after 3rd lines in file contain very large number of lines :
Rotate a column
Powershell. How to parse gci Name?
Discontinuous table border line appearing while using tabular
The Next CEO of Stack OverflowIncrease LaTeX table row heightExhaustive Information about text alignment in TabularRemove whitespace around an enumeration in a tableIncorrect vertical line spacing after changing font size in tableLearning latex; not satisfied with my tablesDiscontinuous line using multirowDiscontinuous borders in tableProblem aligning decimals in multi-column tableGap under top border of table while using hhlineHow to set longtable width to text width so that the text in cell wraps around automatically?horizontal line in table does not cover full width
I was trying to increase the thickness of the cell by giving extra space at the bottom of cell but that gives me discontinuos line at the table border. How can I get rid of this. Solution using only the tabular package is preferrable.
Here is what I have tried
begincenter
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ \ hline
Number of Variables&17 \hline
endtabular
endcenter
Any help would be highly appreciated.
tables hline
New contributor
add a comment |
I was trying to increase the thickness of the cell by giving extra space at the bottom of cell but that gives me discontinuos line at the table border. How can I get rid of this. Solution using only the tabular package is preferrable.
Here is what I have tried
begincenter
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ \ hline
Number of Variables&17 \hline
endtabular
endcenter
Any help would be highly appreciated.
tables hline
New contributor
1
Regarding table row height see: Increase LaTeX table row height
– leandriis
7 hours ago
But I said I don't want to use any package for this. Can you explain this using tabular
– Himanshu Poddar
7 hours ago
Number of Observations&51,717\ &\ hline
Just add the missing&
in the row of the empty line.
– koleygr
7 hours ago
Thanks @koleygr it worked
– Himanshu Poddar
7 hours ago
add a comment |
I was trying to increase the thickness of the cell by giving extra space at the bottom of cell but that gives me discontinuos line at the table border. How can I get rid of this. Solution using only the tabular package is preferrable.
Here is what I have tried
begincenter
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ \ hline
Number of Variables&17 \hline
endtabular
endcenter
Any help would be highly appreciated.
tables hline
New contributor
I was trying to increase the thickness of the cell by giving extra space at the bottom of cell but that gives me discontinuos line at the table border. How can I get rid of this. Solution using only the tabular package is preferrable.
Here is what I have tried
begincenter
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ \ hline
Number of Variables&17 \hline
endtabular
endcenter
Any help would be highly appreciated.
tables hline
tables hline
New contributor
New contributor
edited 7 hours ago
leandriis
10.9k1732
10.9k1732
New contributor
asked 7 hours ago
Himanshu PoddarHimanshu Poddar
1033
1033
New contributor
New contributor
1
Regarding table row height see: Increase LaTeX table row height
– leandriis
7 hours ago
But I said I don't want to use any package for this. Can you explain this using tabular
– Himanshu Poddar
7 hours ago
Number of Observations&51,717\ &\ hline
Just add the missing&
in the row of the empty line.
– koleygr
7 hours ago
Thanks @koleygr it worked
– Himanshu Poddar
7 hours ago
add a comment |
1
Regarding table row height see: Increase LaTeX table row height
– leandriis
7 hours ago
But I said I don't want to use any package for this. Can you explain this using tabular
– Himanshu Poddar
7 hours ago
Number of Observations&51,717\ &\ hline
Just add the missing&
in the row of the empty line.
– koleygr
7 hours ago
Thanks @koleygr it worked
– Himanshu Poddar
7 hours ago
1
1
Regarding table row height see: Increase LaTeX table row height
– leandriis
7 hours ago
Regarding table row height see: Increase LaTeX table row height
– leandriis
7 hours ago
But I said I don't want to use any package for this. Can you explain this using tabular
– Himanshu Poddar
7 hours ago
But I said I don't want to use any package for this. Can you explain this using tabular
– Himanshu Poddar
7 hours ago
Number of Observations&51,717\ &\ hline
Just add the missing &
in the row of the empty line.– koleygr
7 hours ago
Number of Observations&51,717\ &\ hline
Just add the missing &
in the row of the empty line.– koleygr
7 hours ago
Thanks @koleygr it worked
– Himanshu Poddar
7 hours ago
Thanks @koleygr it worked
– Himanshu Poddar
7 hours ago
add a comment |
2 Answers
2
active
oldest
votes
The problem why the line isn't continuous is because the rule is actually drawn by the cell to its left. If you don't have a cell there, no rule is drawn. So to get that rule, you'd have to place an empty cell there:
documentclass[border=2mm]standalone
begindocument
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ & \ hline
Number of Variables&17 \hline
endtabular
enddocument
Thanks skillmon it worked.
– Himanshu Poddar
7 hours ago
add a comment |
To increase the thickness of cell without getting discontinous line, one way could be to use rule for every cell.
rule0pt0.9cm Feature&Result\hline
rule0pt0.9cm Number of Observations&51,717\ hline
rule0pt0.9cm Number of Variables&17 \hline
New contributor
1
To increase the height of every row without a package, you can usedefarraystretch1.1
(or any other value greater than 1).
– Skillmon
7 hours ago
Yes but it is asymmetric.Cellspace
is better.
– Bernard
4 hours ago
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
);
);
Himanshu Poddar is a new contributor. Be nice, and check out our Code of Conduct.
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%2f482294%2fdiscontinuous-table-border-line-appearing-while-using-tabular%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The problem why the line isn't continuous is because the rule is actually drawn by the cell to its left. If you don't have a cell there, no rule is drawn. So to get that rule, you'd have to place an empty cell there:
documentclass[border=2mm]standalone
begindocument
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ & \ hline
Number of Variables&17 \hline
endtabular
enddocument
Thanks skillmon it worked.
– Himanshu Poddar
7 hours ago
add a comment |
The problem why the line isn't continuous is because the rule is actually drawn by the cell to its left. If you don't have a cell there, no rule is drawn. So to get that rule, you'd have to place an empty cell there:
documentclass[border=2mm]standalone
begindocument
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ & \ hline
Number of Variables&17 \hline
endtabular
enddocument
Thanks skillmon it worked.
– Himanshu Poddar
7 hours ago
add a comment |
The problem why the line isn't continuous is because the rule is actually drawn by the cell to its left. If you don't have a cell there, no rule is drawn. So to get that rule, you'd have to place an empty cell there:
documentclass[border=2mm]standalone
begindocument
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ & \ hline
Number of Variables&17 \hline
endtabular
enddocument
The problem why the line isn't continuous is because the rule is actually drawn by the cell to its left. If you don't have a cell there, no rule is drawn. So to get that rule, you'd have to place an empty cell there:
documentclass[border=2mm]standalone
begindocument
begintabular
hline
Feature&Result\hline
Number of Observations&51,717\ & \ hline
Number of Variables&17 \hline
endtabular
enddocument
edited 7 hours ago
answered 7 hours ago
SkillmonSkillmon
24.1k12249
24.1k12249
Thanks skillmon it worked.
– Himanshu Poddar
7 hours ago
add a comment |
Thanks skillmon it worked.
– Himanshu Poddar
7 hours ago
Thanks skillmon it worked.
– Himanshu Poddar
7 hours ago
Thanks skillmon it worked.
– Himanshu Poddar
7 hours ago
add a comment |
To increase the thickness of cell without getting discontinous line, one way could be to use rule for every cell.
rule0pt0.9cm Feature&Result\hline
rule0pt0.9cm Number of Observations&51,717\ hline
rule0pt0.9cm Number of Variables&17 \hline
New contributor
1
To increase the height of every row without a package, you can usedefarraystretch1.1
(or any other value greater than 1).
– Skillmon
7 hours ago
Yes but it is asymmetric.Cellspace
is better.
– Bernard
4 hours ago
add a comment |
To increase the thickness of cell without getting discontinous line, one way could be to use rule for every cell.
rule0pt0.9cm Feature&Result\hline
rule0pt0.9cm Number of Observations&51,717\ hline
rule0pt0.9cm Number of Variables&17 \hline
New contributor
1
To increase the height of every row without a package, you can usedefarraystretch1.1
(or any other value greater than 1).
– Skillmon
7 hours ago
Yes but it is asymmetric.Cellspace
is better.
– Bernard
4 hours ago
add a comment |
To increase the thickness of cell without getting discontinous line, one way could be to use rule for every cell.
rule0pt0.9cm Feature&Result\hline
rule0pt0.9cm Number of Observations&51,717\ hline
rule0pt0.9cm Number of Variables&17 \hline
New contributor
To increase the thickness of cell without getting discontinous line, one way could be to use rule for every cell.
rule0pt0.9cm Feature&Result\hline
rule0pt0.9cm Number of Observations&51,717\ hline
rule0pt0.9cm Number of Variables&17 \hline
New contributor
New contributor
answered 7 hours ago
Himanshu PoddarHimanshu Poddar
1033
1033
New contributor
New contributor
1
To increase the height of every row without a package, you can usedefarraystretch1.1
(or any other value greater than 1).
– Skillmon
7 hours ago
Yes but it is asymmetric.Cellspace
is better.
– Bernard
4 hours ago
add a comment |
1
To increase the height of every row without a package, you can usedefarraystretch1.1
(or any other value greater than 1).
– Skillmon
7 hours ago
Yes but it is asymmetric.Cellspace
is better.
– Bernard
4 hours ago
1
1
To increase the height of every row without a package, you can use
defarraystretch1.1
(or any other value greater than 1).– Skillmon
7 hours ago
To increase the height of every row without a package, you can use
defarraystretch1.1
(or any other value greater than 1).– Skillmon
7 hours ago
Yes but it is asymmetric.
Cellspace
is better.– Bernard
4 hours ago
Yes but it is asymmetric.
Cellspace
is better.– Bernard
4 hours ago
add a comment |
Himanshu Poddar is a new contributor. Be nice, and check out our Code of Conduct.
Himanshu Poddar is a new contributor. Be nice, and check out our Code of Conduct.
Himanshu Poddar is a new contributor. Be nice, and check out our Code of Conduct.
Himanshu Poddar is a new contributor. Be nice, and check out our Code of Conduct.
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%2f482294%2fdiscontinuous-table-border-line-appearing-while-using-tabular%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
Regarding table row height see: Increase LaTeX table row height
– leandriis
7 hours ago
But I said I don't want to use any package for this. Can you explain this using tabular
– Himanshu Poddar
7 hours ago
Number of Observations&51,717\ &\ hline
Just add the missing&
in the row of the empty line.– koleygr
7 hours ago
Thanks @koleygr it worked
– Himanshu Poddar
7 hours ago