create a complicated table
I want to create the following table
Can someone help me because I have no much experience with Latex. What I have got is the following
documentclass{standalone}
usepackage{tikz}
usepackage{PTSansNarrow}
usepackage[T1]{fontenc}
begin{document}
begin{table}[ht]
centering
begin{tabular}{|c|c|}
Discrete & Continuous \
Discrete Paramater Markov chain & Discrete Paramater Markov process \
hline \
Continuous Paramater Markov chain & Continuous Paramater Markov process \
hline \
end{tabular}
caption{Markov processes classified into four basic types}label{tab2}
end{table}
end{document}
tables
add a comment |
I want to create the following table
Can someone help me because I have no much experience with Latex. What I have got is the following
documentclass{standalone}
usepackage{tikz}
usepackage{PTSansNarrow}
usepackage[T1]{fontenc}
begin{document}
begin{table}[ht]
centering
begin{tabular}{|c|c|}
Discrete & Continuous \
Discrete Paramater Markov chain & Discrete Paramater Markov process \
hline \
Continuous Paramater Markov chain & Continuous Paramater Markov process \
hline \
end{tabular}
caption{Markov processes classified into four basic types}label{tab2}
end{table}
end{document}
tables
4
That's not a complicated table and you can certainly at least make an example with the text and the lines.
– Ulrike Fischer
Jan 22 at 20:44
1
As already said for your previous questions: please make a minimal working example (MWE) that shows us what you have tried so far.
– samcarter
Jan 22 at 20:58
I have edited my question
– wayne
Jan 22 at 21:05
add a comment |
I want to create the following table
Can someone help me because I have no much experience with Latex. What I have got is the following
documentclass{standalone}
usepackage{tikz}
usepackage{PTSansNarrow}
usepackage[T1]{fontenc}
begin{document}
begin{table}[ht]
centering
begin{tabular}{|c|c|}
Discrete & Continuous \
Discrete Paramater Markov chain & Discrete Paramater Markov process \
hline \
Continuous Paramater Markov chain & Continuous Paramater Markov process \
hline \
end{tabular}
caption{Markov processes classified into four basic types}label{tab2}
end{table}
end{document}
tables
I want to create the following table
Can someone help me because I have no much experience with Latex. What I have got is the following
documentclass{standalone}
usepackage{tikz}
usepackage{PTSansNarrow}
usepackage[T1]{fontenc}
begin{document}
begin{table}[ht]
centering
begin{tabular}{|c|c|}
Discrete & Continuous \
Discrete Paramater Markov chain & Discrete Paramater Markov process \
hline \
Continuous Paramater Markov chain & Continuous Paramater Markov process \
hline \
end{tabular}
caption{Markov processes classified into four basic types}label{tab2}
end{table}
end{document}
tables
tables
edited Jan 22 at 21:05
wayne
asked Jan 22 at 20:40
waynewayne
1908
1908
4
That's not a complicated table and you can certainly at least make an example with the text and the lines.
– Ulrike Fischer
Jan 22 at 20:44
1
As already said for your previous questions: please make a minimal working example (MWE) that shows us what you have tried so far.
– samcarter
Jan 22 at 20:58
I have edited my question
– wayne
Jan 22 at 21:05
add a comment |
4
That's not a complicated table and you can certainly at least make an example with the text and the lines.
– Ulrike Fischer
Jan 22 at 20:44
1
As already said for your previous questions: please make a minimal working example (MWE) that shows us what you have tried so far.
– samcarter
Jan 22 at 20:58
I have edited my question
– wayne
Jan 22 at 21:05
4
4
That's not a complicated table and you can certainly at least make an example with the text and the lines.
– Ulrike Fischer
Jan 22 at 20:44
That's not a complicated table and you can certainly at least make an example with the text and the lines.
– Ulrike Fischer
Jan 22 at 20:44
1
1
As already said for your previous questions: please make a minimal working example (MWE) that shows us what you have tried so far.
– samcarter
Jan 22 at 20:58
As already said for your previous questions: please make a minimal working example (MWE) that shows us what you have tried so far.
– samcarter
Jan 22 at 20:58
I have edited my question
– wayne
Jan 22 at 21:05
I have edited my question
– wayne
Jan 22 at 21:05
add a comment |
3 Answers
3
active
oldest
votes
The following should provide you with a complete foundation:
caption
to format the table captions;General layout of the 2D structure
documentclass{article}
usepackage{caption,makecell,graphicx}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
begin{document}
begin{table}
centering
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
raisebox{-normalbaselineskip}[0pt][0pt]{makecell{Nature of \ parameter}} &
Discrete & makecell{Discrete parameter \ Markov chain} & makecell{Discrete parameter \ Markov process} \
cline{3-4}
&
Continuous & makecell{Continuous parameter \ Markov chain} & makecell{Continuous parameter \ Markov process} \
cline{3-4}
end{tabular}
end{table}
end{document}
add a comment |
Like Werner's answer but without raisebox
and with multirow
s.
I've also used setlengthextrarowheight{2pt}
for better vertical spacing.
documentclass{article}
usepackage{caption,makecell}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
usepackage{multirow}
begin{document}
begin{table}
centeringsetlengthextrarowheight{2pt}
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
multirow{4}{*}{makecell{Nature of\ parameter}} &
multirow{2}{*}{Discrete} & Discrete parameter & Discrete parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
& multirow{2}{*}{Continuous} & Continuous parameter & Continuous parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
end{tabular}
end{table}
end{document}
add a comment |
Here the table:
documentclass{article}
usepackage{color}
usepackage{multirow}
begin{document}
begin{table}
centering
caption{table}
label{table}
begin{tabular}{ccc|c|}
& & multicolumn{2}{c}{State space} \
cline{3-4}
& & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} \
cline{3-4}
multicolumn{1}{c|}{multirow{2}{*}{Nature of parameter}} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov process}} \
cline{3-4}
multicolumn{1}{c|}{} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov process}} \
cline{3-4}
end{tabular}
end{table}
end{document}
("Here your table" → "Here is your table")
– Peter Mortensen
Jan 23 at 6:39
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%2f471377%2fcreate-a-complicated-table%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The following should provide you with a complete foundation:
caption
to format the table captions;General layout of the 2D structure
documentclass{article}
usepackage{caption,makecell,graphicx}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
begin{document}
begin{table}
centering
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
raisebox{-normalbaselineskip}[0pt][0pt]{makecell{Nature of \ parameter}} &
Discrete & makecell{Discrete parameter \ Markov chain} & makecell{Discrete parameter \ Markov process} \
cline{3-4}
&
Continuous & makecell{Continuous parameter \ Markov chain} & makecell{Continuous parameter \ Markov process} \
cline{3-4}
end{tabular}
end{table}
end{document}
add a comment |
The following should provide you with a complete foundation:
caption
to format the table captions;General layout of the 2D structure
documentclass{article}
usepackage{caption,makecell,graphicx}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
begin{document}
begin{table}
centering
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
raisebox{-normalbaselineskip}[0pt][0pt]{makecell{Nature of \ parameter}} &
Discrete & makecell{Discrete parameter \ Markov chain} & makecell{Discrete parameter \ Markov process} \
cline{3-4}
&
Continuous & makecell{Continuous parameter \ Markov chain} & makecell{Continuous parameter \ Markov process} \
cline{3-4}
end{tabular}
end{table}
end{document}
add a comment |
The following should provide you with a complete foundation:
caption
to format the table captions;General layout of the 2D structure
documentclass{article}
usepackage{caption,makecell,graphicx}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
begin{document}
begin{table}
centering
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
raisebox{-normalbaselineskip}[0pt][0pt]{makecell{Nature of \ parameter}} &
Discrete & makecell{Discrete parameter \ Markov chain} & makecell{Discrete parameter \ Markov process} \
cline{3-4}
&
Continuous & makecell{Continuous parameter \ Markov chain} & makecell{Continuous parameter \ Markov process} \
cline{3-4}
end{tabular}
end{table}
end{document}
The following should provide you with a complete foundation:
caption
to format the table captions;General layout of the 2D structure
documentclass{article}
usepackage{caption,makecell,graphicx}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
begin{document}
begin{table}
centering
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
raisebox{-normalbaselineskip}[0pt][0pt]{makecell{Nature of \ parameter}} &
Discrete & makecell{Discrete parameter \ Markov chain} & makecell{Discrete parameter \ Markov process} \
cline{3-4}
&
Continuous & makecell{Continuous parameter \ Markov chain} & makecell{Continuous parameter \ Markov process} \
cline{3-4}
end{tabular}
end{table}
end{document}
answered Jan 22 at 21:23
WernerWerner
442k679741669
442k679741669
add a comment |
add a comment |
Like Werner's answer but without raisebox
and with multirow
s.
I've also used setlengthextrarowheight{2pt}
for better vertical spacing.
documentclass{article}
usepackage{caption,makecell}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
usepackage{multirow}
begin{document}
begin{table}
centeringsetlengthextrarowheight{2pt}
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
multirow{4}{*}{makecell{Nature of\ parameter}} &
multirow{2}{*}{Discrete} & Discrete parameter & Discrete parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
& multirow{2}{*}{Continuous} & Continuous parameter & Continuous parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
end{tabular}
end{table}
end{document}
add a comment |
Like Werner's answer but without raisebox
and with multirow
s.
I've also used setlengthextrarowheight{2pt}
for better vertical spacing.
documentclass{article}
usepackage{caption,makecell}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
usepackage{multirow}
begin{document}
begin{table}
centeringsetlengthextrarowheight{2pt}
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
multirow{4}{*}{makecell{Nature of\ parameter}} &
multirow{2}{*}{Discrete} & Discrete parameter & Discrete parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
& multirow{2}{*}{Continuous} & Continuous parameter & Continuous parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
end{tabular}
end{table}
end{document}
add a comment |
Like Werner's answer but without raisebox
and with multirow
s.
I've also used setlengthextrarowheight{2pt}
for better vertical spacing.
documentclass{article}
usepackage{caption,makecell}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
usepackage{multirow}
begin{document}
begin{table}
centeringsetlengthextrarowheight{2pt}
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
multirow{4}{*}{makecell{Nature of\ parameter}} &
multirow{2}{*}{Discrete} & Discrete parameter & Discrete parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
& multirow{2}{*}{Continuous} & Continuous parameter & Continuous parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
end{tabular}
end{table}
end{document}
Like Werner's answer but without raisebox
and with multirow
s.
I've also used setlengthextrarowheight{2pt}
for better vertical spacing.
documentclass{article}
usepackage{caption,makecell}
captionsetup[table]{
labelfont = sc,
labelsep = period,
textfont = bf
}
usepackage{multirow}
begin{document}
begin{table}
centeringsetlengthextrarowheight{2pt}
caption{Markov processes classified into four basic types}
begin{tabular}{ c | c | c | c | }
multicolumn{2}{c}{} & multicolumn{2}{c}{State space} \
cline{3-4}
multicolumn{2}{c}{} & multicolumn{1}{c}{Discrete} & multicolumn{1}{c}{Continuous} \
cline{3-4}
multirow{4}{*}{makecell{Nature of\ parameter}} &
multirow{2}{*}{Discrete} & Discrete parameter & Discrete parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
& multirow{2}{*}{Continuous} & Continuous parameter & Continuous parameter \[-2pt]
& & Markov chain & Markov process \
cline{3-4}
end{tabular}
end{table}
end{document}
answered Jan 22 at 21:54
CarLaTeXCarLaTeX
30.8k449129
30.8k449129
add a comment |
add a comment |
Here the table:
documentclass{article}
usepackage{color}
usepackage{multirow}
begin{document}
begin{table}
centering
caption{table}
label{table}
begin{tabular}{ccc|c|}
& & multicolumn{2}{c}{State space} \
cline{3-4}
& & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} \
cline{3-4}
multicolumn{1}{c|}{multirow{2}{*}{Nature of parameter}} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov process}} \
cline{3-4}
multicolumn{1}{c|}{} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov process}} \
cline{3-4}
end{tabular}
end{table}
end{document}
("Here your table" → "Here is your table")
– Peter Mortensen
Jan 23 at 6:39
add a comment |
Here the table:
documentclass{article}
usepackage{color}
usepackage{multirow}
begin{document}
begin{table}
centering
caption{table}
label{table}
begin{tabular}{ccc|c|}
& & multicolumn{2}{c}{State space} \
cline{3-4}
& & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} \
cline{3-4}
multicolumn{1}{c|}{multirow{2}{*}{Nature of parameter}} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov process}} \
cline{3-4}
multicolumn{1}{c|}{} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov process}} \
cline{3-4}
end{tabular}
end{table}
end{document}
("Here your table" → "Here is your table")
– Peter Mortensen
Jan 23 at 6:39
add a comment |
Here the table:
documentclass{article}
usepackage{color}
usepackage{multirow}
begin{document}
begin{table}
centering
caption{table}
label{table}
begin{tabular}{ccc|c|}
& & multicolumn{2}{c}{State space} \
cline{3-4}
& & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} \
cline{3-4}
multicolumn{1}{c|}{multirow{2}{*}{Nature of parameter}} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov process}} \
cline{3-4}
multicolumn{1}{c|}{} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov process}} \
cline{3-4}
end{tabular}
end{table}
end{document}
Here the table:
documentclass{article}
usepackage{color}
usepackage{multirow}
begin{document}
begin{table}
centering
caption{table}
label{table}
begin{tabular}{ccc|c|}
& & multicolumn{2}{c}{State space} \
cline{3-4}
& & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & multicolumn{1}{c}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} \
cline{3-4}
multicolumn{1}{c|}{multirow{2}{*}{Nature of parameter}} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Discrete Paramater Markov process}} \
cline{3-4}
multicolumn{1}{c|}{} & multicolumn{1}{c|}{textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous}}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov chain}} & textcolor[rgb]{0.224,0.2,0.094}{textcolor[rgb]{0.188,0.2,0.212}{Continuous Paramater Markov process}} \
cline{3-4}
end{tabular}
end{table}
end{document}
edited Jan 24 at 13:19
answered Jan 22 at 21:18
Mi Ka ElMi Ka El
1017
1017
("Here your table" → "Here is your table")
– Peter Mortensen
Jan 23 at 6:39
add a comment |
("Here your table" → "Here is your table")
– Peter Mortensen
Jan 23 at 6:39
("Here your table" → "Here is your table")
– Peter Mortensen
Jan 23 at 6:39
("Here your table" → "Here is your table")
– Peter Mortensen
Jan 23 at 6:39
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%2f471377%2fcreate-a-complicated-table%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
4
That's not a complicated table and you can certainly at least make an example with the text and the lines.
– Ulrike Fischer
Jan 22 at 20:44
1
As already said for your previous questions: please make a minimal working example (MWE) that shows us what you have tried so far.
– samcarter
Jan 22 at 20:58
I have edited my question
– wayne
Jan 22 at 21:05