create a complicated table












4















I want to create the following table
enter image description here



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}


enter image description here










share|improve this question




















  • 4





    That's not a complicated table and you can certainly at least make an example with the text and the lines.

    – Ulrike Fischer
    11 hours ago






  • 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
    10 hours ago











  • I have edited my question

    – wayne
    10 hours ago
















4















I want to create the following table
enter image description here



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}


enter image description here










share|improve this question




















  • 4





    That's not a complicated table and you can certainly at least make an example with the text and the lines.

    – Ulrike Fischer
    11 hours ago






  • 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
    10 hours ago











  • I have edited my question

    – wayne
    10 hours ago














4












4








4


0






I want to create the following table
enter image description here



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}


enter image description here










share|improve this question
















I want to create the following table
enter image description here



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}


enter image description here







tables






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 10 hours ago







wayne

















asked 11 hours ago









waynewayne

1858




1858








  • 4





    That's not a complicated table and you can certainly at least make an example with the text and the lines.

    – Ulrike Fischer
    11 hours ago






  • 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
    10 hours ago











  • I have edited my question

    – wayne
    10 hours ago














  • 4





    That's not a complicated table and you can certainly at least make an example with the text and the lines.

    – Ulrike Fischer
    11 hours ago






  • 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
    10 hours ago











  • I have edited my question

    – wayne
    10 hours ago








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
11 hours ago





That's not a complicated table and you can certainly at least make an example with the text and the lines.

– Ulrike Fischer
11 hours ago




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
10 hours ago





As already said for your previous questions: please make a minimal working example (MWE) that shows us what you have tried so far.

– samcarter
10 hours ago













I have edited my question

– wayne
10 hours ago





I have edited my question

– wayne
10 hours ago










3 Answers
3






active

oldest

votes


















3














The following should provide you with a complete foundation:




  • caption to format the table captions;


  • General layout of the 2D structure



enter image description here



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}





share|improve this answer































    3














    Like Werner's answer but without raisebox and with multirows.



    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}


    enter image description here






    share|improve this answer































      1














      Here your 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}





      share|improve this answer
























      • ("Here your table""Here is your table")

        – Peter Mortensen
        1 hour ago











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


      }
      });














      draft saved

      draft discarded


















      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









      3














      The following should provide you with a complete foundation:




      • caption to format the table captions;


      • General layout of the 2D structure



      enter image description here



      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}





      share|improve this answer




























        3














        The following should provide you with a complete foundation:




        • caption to format the table captions;


        • General layout of the 2D structure



        enter image description here



        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}





        share|improve this answer


























          3












          3








          3







          The following should provide you with a complete foundation:




          • caption to format the table captions;


          • General layout of the 2D structure



          enter image description here



          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}





          share|improve this answer













          The following should provide you with a complete foundation:




          • caption to format the table captions;


          • General layout of the 2D structure



          enter image description here



          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}






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 10 hours ago









          WernerWerner

          441k679701662




          441k679701662























              3














              Like Werner's answer but without raisebox and with multirows.



              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}


              enter image description here






              share|improve this answer




























                3














                Like Werner's answer but without raisebox and with multirows.



                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}


                enter image description here






                share|improve this answer


























                  3












                  3








                  3







                  Like Werner's answer but without raisebox and with multirows.



                  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}


                  enter image description here






                  share|improve this answer













                  Like Werner's answer but without raisebox and with multirows.



                  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}


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 9 hours ago









                  CarLaTeXCarLaTeX

                  30.4k448127




                  30.4k448127























                      1














                      Here your 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}





                      share|improve this answer
























                      • ("Here your table""Here is your table")

                        – Peter Mortensen
                        1 hour ago
















                      1














                      Here your 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}





                      share|improve this answer
























                      • ("Here your table""Here is your table")

                        – Peter Mortensen
                        1 hour ago














                      1












                      1








                      1







                      Here your 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}





                      share|improve this answer













                      Here your 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}






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered 10 hours ago









                      Mi Ka ElMi Ka El

                      1017




                      1017













                      • ("Here your table""Here is your table")

                        – Peter Mortensen
                        1 hour ago



















                      • ("Here your table""Here is your table")

                        – Peter Mortensen
                        1 hour ago

















                      ("Here your table""Here is your table")

                      – Peter Mortensen
                      1 hour ago





                      ("Here your table""Here is your table")

                      – Peter Mortensen
                      1 hour ago


















                      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.




                      draft saved


                      draft discarded














                      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





















































                      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

                      How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

                      is 'sed' thread safe

                      How to make a Squid Proxy server?