Visible interruption effect for a cell into a tabular The 2019 Stack Overflow Developer Survey...
What is the padding with red substance inside of steak packaging?
What information about me do stores get via my credit card?
number sequence puzzle deep six
How did passengers keep warm on sail ships?
Do warforged have souls?
Identify 80s or 90s comics with ripped creatures (not dwarves)
Homework question about an engine pulling a train
How to substitute curly brackets with round brackets in a grid of list
Why doesn't a hydraulic lever violate conservation of energy?
60's-70's movie: home appliances revolting against the owners
Did the new image of black hole confirm the general theory of relativity?
How do I design a circuit to convert a 100 mV and 50 Hz sine wave to a square wave?
Match Roman Numerals
Single author papers against my advisor's will?
How to determine omitted units in a publication
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
Can a flute soloist sit?
Are spiders unable to hurt humans, especially very small spiders?
For what reasons would an animal species NOT cross a *horizontal* land bridge?
What do I do when my TA workload is more than expected?
How to create a folder symlink that has a different name?
Categorical vs continuous feature selection/engineering
Can withdrawing asylum be illegal?
What force causes entropy to increase?
Visible interruption effect for a cell into a tabular
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Do we need more moderators?Does a symbol for glasses exist?Torn page effectA black cell is showed where I try to create a colored cellAltering cell colour hides cell border in LyXtable cell shading overlaps to nearby cellsTable cell color overlaps left cell border of first column which is multicolumnCan overhang be set for a single cell in a table in colortbl?Color of a tabular cell determined by cell contentHow to color crossed out cell?How to keep cell border with a column background color?Color table cell, errorCancel rowcolors for a specific cell
Starting from my question Does a symbol for glasses exist? and from the best @Milo's answer, I have created this MWE, using the macro advice,
documentclass{article}
usepackage[T1]{fontenc}
usepackage{tikz}
usepackage{colortbl}
definecolor{ocre}{RGB}{243,102,25}
newcommand{glasses}{resizebox{3em}{!}{%
tikz{draw(0,0) coordinate (Origin) --++(0.2,0) coordinate (endL) arc (180:0:0.05)--++(0.2,0) coordinate (endR) --++(45:0.25) arc (180-45:0:0.08) (endR) arc (0:-180:0.1) (endL) arc (0:-180:0.1) (Origin)--++(45:0.25) arc (180-45:0:0.08);
}}}
newcommand{advice}{begin{table}[ht]
centering
{renewcommand{arraystretch}{1.8}
begin{tabular}{c!{color{white}vrule width 1pt}c}
rowcolor{olive!20}
textcolor{ocre}{glasses, textbf{textsc{large Attenzione:}}} & cellcolor{gray!15} Long Long empty cell with a break \
end{tabular}}
end{table}}
begin{document}
advice
end{document}
to have this output:

How do I create a visible break effect for the second column colored gray?
For the second column coloured in grey I would like to have a roughness effect like the image, coarse, shown in the best figure created from @David Carlisle in
his comment:
tikz-pgf tables macros colortbl
|
show 2 more comments
Starting from my question Does a symbol for glasses exist? and from the best @Milo's answer, I have created this MWE, using the macro advice,
documentclass{article}
usepackage[T1]{fontenc}
usepackage{tikz}
usepackage{colortbl}
definecolor{ocre}{RGB}{243,102,25}
newcommand{glasses}{resizebox{3em}{!}{%
tikz{draw(0,0) coordinate (Origin) --++(0.2,0) coordinate (endL) arc (180:0:0.05)--++(0.2,0) coordinate (endR) --++(45:0.25) arc (180-45:0:0.08) (endR) arc (0:-180:0.1) (endL) arc (0:-180:0.1) (Origin)--++(45:0.25) arc (180-45:0:0.08);
}}}
newcommand{advice}{begin{table}[ht]
centering
{renewcommand{arraystretch}{1.8}
begin{tabular}{c!{color{white}vrule width 1pt}c}
rowcolor{olive!20}
textcolor{ocre}{glasses, textbf{textsc{large Attenzione:}}} & cellcolor{gray!15} Long Long empty cell with a break \
end{tabular}}
end{table}}
begin{document}
advice
end{document}
to have this output:

How do I create a visible break effect for the second column colored gray?
For the second column coloured in grey I would like to have a roughness effect like the image, coarse, shown in the best figure created from @David Carlisle in
his comment:
tikz-pgf tables macros colortbl
what do you mean by "with a break" here? the second column of youtabularis accolumn so will always be one line with no linebreaks?
– David Carlisle
48 mins ago
@DavidCarlisle The 2nd cell can be interrupted anywhere. The colored cell should not be whole but cut out giving an aesthetic effect similar to the interruption of a road or the roughness of a surface for the break part.
– Sebastiano
45 mins ago
yes but do you mean just partially cover a single-line of text? like this ?
– David Carlisle
40 mins ago
@DavidCarlisle Yes basically yes, like the ripple of an ocean or a jagged coast. :-)
– Sebastiano
38 mins ago
I leave that for one of the tikz gang to answer, it must be pretty easy in tikz (you might want to copy that image in to your question, or a better one (I just used the eraser in ms paint and adjusted the one you posted)
– David Carlisle
36 mins ago
|
show 2 more comments
Starting from my question Does a symbol for glasses exist? and from the best @Milo's answer, I have created this MWE, using the macro advice,
documentclass{article}
usepackage[T1]{fontenc}
usepackage{tikz}
usepackage{colortbl}
definecolor{ocre}{RGB}{243,102,25}
newcommand{glasses}{resizebox{3em}{!}{%
tikz{draw(0,0) coordinate (Origin) --++(0.2,0) coordinate (endL) arc (180:0:0.05)--++(0.2,0) coordinate (endR) --++(45:0.25) arc (180-45:0:0.08) (endR) arc (0:-180:0.1) (endL) arc (0:-180:0.1) (Origin)--++(45:0.25) arc (180-45:0:0.08);
}}}
newcommand{advice}{begin{table}[ht]
centering
{renewcommand{arraystretch}{1.8}
begin{tabular}{c!{color{white}vrule width 1pt}c}
rowcolor{olive!20}
textcolor{ocre}{glasses, textbf{textsc{large Attenzione:}}} & cellcolor{gray!15} Long Long empty cell with a break \
end{tabular}}
end{table}}
begin{document}
advice
end{document}
to have this output:

How do I create a visible break effect for the second column colored gray?
For the second column coloured in grey I would like to have a roughness effect like the image, coarse, shown in the best figure created from @David Carlisle in
his comment:
tikz-pgf tables macros colortbl
Starting from my question Does a symbol for glasses exist? and from the best @Milo's answer, I have created this MWE, using the macro advice,
documentclass{article}
usepackage[T1]{fontenc}
usepackage{tikz}
usepackage{colortbl}
definecolor{ocre}{RGB}{243,102,25}
newcommand{glasses}{resizebox{3em}{!}{%
tikz{draw(0,0) coordinate (Origin) --++(0.2,0) coordinate (endL) arc (180:0:0.05)--++(0.2,0) coordinate (endR) --++(45:0.25) arc (180-45:0:0.08) (endR) arc (0:-180:0.1) (endL) arc (0:-180:0.1) (Origin)--++(45:0.25) arc (180-45:0:0.08);
}}}
newcommand{advice}{begin{table}[ht]
centering
{renewcommand{arraystretch}{1.8}
begin{tabular}{c!{color{white}vrule width 1pt}c}
rowcolor{olive!20}
textcolor{ocre}{glasses, textbf{textsc{large Attenzione:}}} & cellcolor{gray!15} Long Long empty cell with a break \
end{tabular}}
end{table}}
begin{document}
advice
end{document}
to have this output:

How do I create a visible break effect for the second column colored gray?
For the second column coloured in grey I would like to have a roughness effect like the image, coarse, shown in the best figure created from @David Carlisle in
his comment:
tikz-pgf tables macros colortbl
tikz-pgf tables macros colortbl
edited 5 mins ago
Sebastiano
asked 1 hour ago
SebastianoSebastiano
11.3k42266
11.3k42266
what do you mean by "with a break" here? the second column of youtabularis accolumn so will always be one line with no linebreaks?
– David Carlisle
48 mins ago
@DavidCarlisle The 2nd cell can be interrupted anywhere. The colored cell should not be whole but cut out giving an aesthetic effect similar to the interruption of a road or the roughness of a surface for the break part.
– Sebastiano
45 mins ago
yes but do you mean just partially cover a single-line of text? like this ?
– David Carlisle
40 mins ago
@DavidCarlisle Yes basically yes, like the ripple of an ocean or a jagged coast. :-)
– Sebastiano
38 mins ago
I leave that for one of the tikz gang to answer, it must be pretty easy in tikz (you might want to copy that image in to your question, or a better one (I just used the eraser in ms paint and adjusted the one you posted)
– David Carlisle
36 mins ago
|
show 2 more comments
what do you mean by "with a break" here? the second column of youtabularis accolumn so will always be one line with no linebreaks?
– David Carlisle
48 mins ago
@DavidCarlisle The 2nd cell can be interrupted anywhere. The colored cell should not be whole but cut out giving an aesthetic effect similar to the interruption of a road or the roughness of a surface for the break part.
– Sebastiano
45 mins ago
yes but do you mean just partially cover a single-line of text? like this ?
– David Carlisle
40 mins ago
@DavidCarlisle Yes basically yes, like the ripple of an ocean or a jagged coast. :-)
– Sebastiano
38 mins ago
I leave that for one of the tikz gang to answer, it must be pretty easy in tikz (you might want to copy that image in to your question, or a better one (I just used the eraser in ms paint and adjusted the one you posted)
– David Carlisle
36 mins ago
what do you mean by "with a break" here? the second column of you
tabular is a c column so will always be one line with no linebreaks?– David Carlisle
48 mins ago
what do you mean by "with a break" here? the second column of you
tabular is a c column so will always be one line with no linebreaks?– David Carlisle
48 mins ago
@DavidCarlisle The 2nd cell can be interrupted anywhere. The colored cell should not be whole but cut out giving an aesthetic effect similar to the interruption of a road or the roughness of a surface for the break part.
– Sebastiano
45 mins ago
@DavidCarlisle The 2nd cell can be interrupted anywhere. The colored cell should not be whole but cut out giving an aesthetic effect similar to the interruption of a road or the roughness of a surface for the break part.
– Sebastiano
45 mins ago
yes but do you mean just partially cover a single-line of text? like this ?
– David Carlisle
40 mins ago
yes but do you mean just partially cover a single-line of text? like this ?
– David Carlisle
40 mins ago
@DavidCarlisle Yes basically yes, like the ripple of an ocean or a jagged coast. :-)
– Sebastiano
38 mins ago
@DavidCarlisle Yes basically yes, like the ripple of an ocean or a jagged coast. :-)
– Sebastiano
38 mins ago
I leave that for one of the tikz gang to answer, it must be pretty easy in tikz (you might want to copy that image in to your question, or a better one (I just used the eraser in ms paint and adjusted the one you posted)
– David Carlisle
36 mins ago
I leave that for one of the tikz gang to answer, it must be pretty easy in tikz (you might want to copy that image in to your question, or a better one (I just used the eraser in ms paint and adjusted the one you posted)
– David Carlisle
36 mins ago
|
show 2 more comments
0
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',
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%2f484571%2fvisible-interruption-effect-for-a-cell-into-a-tabular%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f484571%2fvisible-interruption-effect-for-a-cell-into-a-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
what do you mean by "with a break" here? the second column of you
tabularis accolumn so will always be one line with no linebreaks?– David Carlisle
48 mins ago
@DavidCarlisle The 2nd cell can be interrupted anywhere. The colored cell should not be whole but cut out giving an aesthetic effect similar to the interruption of a road or the roughness of a surface for the break part.
– Sebastiano
45 mins ago
yes but do you mean just partially cover a single-line of text? like this ?
– David Carlisle
40 mins ago
@DavidCarlisle Yes basically yes, like the ripple of an ocean or a jagged coast. :-)
– Sebastiano
38 mins ago
I leave that for one of the tikz gang to answer, it must be pretty easy in tikz (you might want to copy that image in to your question, or a better one (I just used the eraser in ms paint and adjusted the one you posted)
– David Carlisle
36 mins ago