How to split one table column into two sub-columns with merged header and footer?

Multi tool use
Multi tool use












0















How can I achieve this table in LaTeX?



enter image description here










share|improve this question









New contributor




Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • you can't split columns, but you can merge cells with multicolumn{2}{c}{...} where you need.

    – Zarko
    22 mins ago











  • how can i make that table sir?

    – Beginner
    21 mins ago











  • no. i will not retype it. just write standard table and than i will help you further or you can wait that someone will do your task instead of you.

    – Zarko
    20 mins ago


















0















How can I achieve this table in LaTeX?



enter image description here










share|improve this question









New contributor




Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • you can't split columns, but you can merge cells with multicolumn{2}{c}{...} where you need.

    – Zarko
    22 mins ago











  • how can i make that table sir?

    – Beginner
    21 mins ago











  • no. i will not retype it. just write standard table and than i will help you further or you can wait that someone will do your task instead of you.

    – Zarko
    20 mins ago
















0












0








0








How can I achieve this table in LaTeX?



enter image description here










share|improve this question









New contributor




Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












How can I achieve this table in LaTeX?



enter image description here







tables multirow multicolumn






share|improve this question









New contributor




Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 32 mins ago









homocomputeris

17611




17611






New contributor




Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 39 mins ago









BeginnerBeginner

1084




1084




New contributor




Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Beginner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • you can't split columns, but you can merge cells with multicolumn{2}{c}{...} where you need.

    – Zarko
    22 mins ago











  • how can i make that table sir?

    – Beginner
    21 mins ago











  • no. i will not retype it. just write standard table and than i will help you further or you can wait that someone will do your task instead of you.

    – Zarko
    20 mins ago





















  • you can't split columns, but you can merge cells with multicolumn{2}{c}{...} where you need.

    – Zarko
    22 mins ago











  • how can i make that table sir?

    – Beginner
    21 mins ago











  • no. i will not retype it. just write standard table and than i will help you further or you can wait that someone will do your task instead of you.

    – Zarko
    20 mins ago



















you can't split columns, but you can merge cells with multicolumn{2}{c}{...} where you need.

– Zarko
22 mins ago





you can't split columns, but you can merge cells with multicolumn{2}{c}{...} where you need.

– Zarko
22 mins ago













how can i make that table sir?

– Beginner
21 mins ago





how can i make that table sir?

– Beginner
21 mins ago













no. i will not retype it. just write standard table and than i will help you further or you can wait that someone will do your task instead of you.

– Zarko
20 mins ago







no. i will not retype it. just write standard table and than i will help you further or you can wait that someone will do your task instead of you.

– Zarko
20 mins ago












2 Answers
2






active

oldest

votes


















2














I hope this helps:



documentclass{article}
usepackage{multirow}

begin{document}

begin{table}
begin{tabular}{cc|c|c|c|}
hline
multicolumn{1}{|c|}{multirow{2}{*}{textbf{Criteria}}} & multicolumn{2}{c|}{textbf{Proposed}} & multirow{2}{*}{textbf{Matching rate}} & multirow{2}{*}{textbf{Remarks}} \ cline{2-3}
multicolumn{1}{|c|}{} & textbf{Trial 1} & textbf{Trial 2} & & \ hline
multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}The device\ works buggyend{tabular}} & Passed & Passed & 100% & Passed \ hline
multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}That works\ only to monitor bugsend{tabular}} & Passed & Passed & 100% & Passed \ hline
& & multicolumn{1}{r|}{textbf{Functionality}} & textbf{100%} & textbf{Passed} \ cline{3-5}
end{tabular}
end{table}
end{document}


which would give you:



enter image description here



PS: [off-topic] you having been asked the same class of questions, I think you should also put in a little bit of effort to understand how these things works (the packages in particular) :-). Because, this is not a do-it-for-me site (as @zarko already emphasised). Atleast, for these type of questions, it would be great if you give a MWE.






share|improve this answer































    1














    used @Raaja answer (+1) as op mwe:



    documentclass{article}
    usepackage{makecell, multirow}
    setcellgapes{3pt}

    begin{document}

    begin{table}
    makegapedcells
    begin{tabular}{|c|c|c|c|c|}
    hline
    multirow{2}{*}{textbf{Criteria}}
    & multicolumn{2}{c|}{textbf{Proposed}}
    & multirow{2}{*}{textbf{Matching rate}}
    & multirow{2}{*}{textbf{Remarks}} \
    cline{2-3}
    & textbf{Trial 1}
    & textbf{Trial 2}
    & & \
    hline
    makecell{The device\ works buggy}
    & Passed & Passed & 100% & Passed \
    hline
    makecell{That works\ only to monitor bugs}
    & Passed & Passed & 100% & Passed \
    hline
    multicolumn{1}{c|}{}
    & multicolumn{2}{r|}{textbf{Functionality}}
    & textbf{100%} & textbf{Passed} \
    cline{2-5}
    end{tabular}
    end{table}
    end{document}


    enter image description here






    share|improve this answer
























    • So mine is an intermediate question :-D (yay!!!). Nevertheless, nice alignments per se (+1)

      – Raaja
      7 mins ago













    • @Raaja, you do job of op, which i wasn't willing to do. so, yes, i exploit you (your answer) :-)

      – Zarko
      4 mins ago











    • I remember that is how I started using TeX. So looking back, I always prefer to give a head-up when an OP suffers to compose a MWE (but not repetitively ofc;-)).

      – Raaja
      33 secs 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
    });


    }
    });






    Beginner is a new contributor. Be nice, and check out our Code of Conduct.










    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f473462%2fhow-to-split-one-table-column-into-two-sub-columns-with-merged-header-and-footer%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









    2














    I hope this helps:



    documentclass{article}
    usepackage{multirow}

    begin{document}

    begin{table}
    begin{tabular}{cc|c|c|c|}
    hline
    multicolumn{1}{|c|}{multirow{2}{*}{textbf{Criteria}}} & multicolumn{2}{c|}{textbf{Proposed}} & multirow{2}{*}{textbf{Matching rate}} & multirow{2}{*}{textbf{Remarks}} \ cline{2-3}
    multicolumn{1}{|c|}{} & textbf{Trial 1} & textbf{Trial 2} & & \ hline
    multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}The device\ works buggyend{tabular}} & Passed & Passed & 100% & Passed \ hline
    multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}That works\ only to monitor bugsend{tabular}} & Passed & Passed & 100% & Passed \ hline
    & & multicolumn{1}{r|}{textbf{Functionality}} & textbf{100%} & textbf{Passed} \ cline{3-5}
    end{tabular}
    end{table}
    end{document}


    which would give you:



    enter image description here



    PS: [off-topic] you having been asked the same class of questions, I think you should also put in a little bit of effort to understand how these things works (the packages in particular) :-). Because, this is not a do-it-for-me site (as @zarko already emphasised). Atleast, for these type of questions, it would be great if you give a MWE.






    share|improve this answer




























      2














      I hope this helps:



      documentclass{article}
      usepackage{multirow}

      begin{document}

      begin{table}
      begin{tabular}{cc|c|c|c|}
      hline
      multicolumn{1}{|c|}{multirow{2}{*}{textbf{Criteria}}} & multicolumn{2}{c|}{textbf{Proposed}} & multirow{2}{*}{textbf{Matching rate}} & multirow{2}{*}{textbf{Remarks}} \ cline{2-3}
      multicolumn{1}{|c|}{} & textbf{Trial 1} & textbf{Trial 2} & & \ hline
      multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}The device\ works buggyend{tabular}} & Passed & Passed & 100% & Passed \ hline
      multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}That works\ only to monitor bugsend{tabular}} & Passed & Passed & 100% & Passed \ hline
      & & multicolumn{1}{r|}{textbf{Functionality}} & textbf{100%} & textbf{Passed} \ cline{3-5}
      end{tabular}
      end{table}
      end{document}


      which would give you:



      enter image description here



      PS: [off-topic] you having been asked the same class of questions, I think you should also put in a little bit of effort to understand how these things works (the packages in particular) :-). Because, this is not a do-it-for-me site (as @zarko already emphasised). Atleast, for these type of questions, it would be great if you give a MWE.






      share|improve this answer


























        2












        2








        2







        I hope this helps:



        documentclass{article}
        usepackage{multirow}

        begin{document}

        begin{table}
        begin{tabular}{cc|c|c|c|}
        hline
        multicolumn{1}{|c|}{multirow{2}{*}{textbf{Criteria}}} & multicolumn{2}{c|}{textbf{Proposed}} & multirow{2}{*}{textbf{Matching rate}} & multirow{2}{*}{textbf{Remarks}} \ cline{2-3}
        multicolumn{1}{|c|}{} & textbf{Trial 1} & textbf{Trial 2} & & \ hline
        multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}The device\ works buggyend{tabular}} & Passed & Passed & 100% & Passed \ hline
        multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}That works\ only to monitor bugsend{tabular}} & Passed & Passed & 100% & Passed \ hline
        & & multicolumn{1}{r|}{textbf{Functionality}} & textbf{100%} & textbf{Passed} \ cline{3-5}
        end{tabular}
        end{table}
        end{document}


        which would give you:



        enter image description here



        PS: [off-topic] you having been asked the same class of questions, I think you should also put in a little bit of effort to understand how these things works (the packages in particular) :-). Because, this is not a do-it-for-me site (as @zarko already emphasised). Atleast, for these type of questions, it would be great if you give a MWE.






        share|improve this answer













        I hope this helps:



        documentclass{article}
        usepackage{multirow}

        begin{document}

        begin{table}
        begin{tabular}{cc|c|c|c|}
        hline
        multicolumn{1}{|c|}{multirow{2}{*}{textbf{Criteria}}} & multicolumn{2}{c|}{textbf{Proposed}} & multirow{2}{*}{textbf{Matching rate}} & multirow{2}{*}{textbf{Remarks}} \ cline{2-3}
        multicolumn{1}{|c|}{} & textbf{Trial 1} & textbf{Trial 2} & & \ hline
        multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}The device\ works buggyend{tabular}} & Passed & Passed & 100% & Passed \ hline
        multicolumn{1}{|c|}{begin{tabular}[c]{@{}c@{}}That works\ only to monitor bugsend{tabular}} & Passed & Passed & 100% & Passed \ hline
        & & multicolumn{1}{r|}{textbf{Functionality}} & textbf{100%} & textbf{Passed} \ cline{3-5}
        end{tabular}
        end{table}
        end{document}


        which would give you:



        enter image description here



        PS: [off-topic] you having been asked the same class of questions, I think you should also put in a little bit of effort to understand how these things works (the packages in particular) :-). Because, this is not a do-it-for-me site (as @zarko already emphasised). Atleast, for these type of questions, it would be great if you give a MWE.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 21 mins ago









        RaajaRaaja

        3,30021037




        3,30021037























            1














            used @Raaja answer (+1) as op mwe:



            documentclass{article}
            usepackage{makecell, multirow}
            setcellgapes{3pt}

            begin{document}

            begin{table}
            makegapedcells
            begin{tabular}{|c|c|c|c|c|}
            hline
            multirow{2}{*}{textbf{Criteria}}
            & multicolumn{2}{c|}{textbf{Proposed}}
            & multirow{2}{*}{textbf{Matching rate}}
            & multirow{2}{*}{textbf{Remarks}} \
            cline{2-3}
            & textbf{Trial 1}
            & textbf{Trial 2}
            & & \
            hline
            makecell{The device\ works buggy}
            & Passed & Passed & 100% & Passed \
            hline
            makecell{That works\ only to monitor bugs}
            & Passed & Passed & 100% & Passed \
            hline
            multicolumn{1}{c|}{}
            & multicolumn{2}{r|}{textbf{Functionality}}
            & textbf{100%} & textbf{Passed} \
            cline{2-5}
            end{tabular}
            end{table}
            end{document}


            enter image description here






            share|improve this answer
























            • So mine is an intermediate question :-D (yay!!!). Nevertheless, nice alignments per se (+1)

              – Raaja
              7 mins ago













            • @Raaja, you do job of op, which i wasn't willing to do. so, yes, i exploit you (your answer) :-)

              – Zarko
              4 mins ago











            • I remember that is how I started using TeX. So looking back, I always prefer to give a head-up when an OP suffers to compose a MWE (but not repetitively ofc;-)).

              – Raaja
              33 secs ago
















            1














            used @Raaja answer (+1) as op mwe:



            documentclass{article}
            usepackage{makecell, multirow}
            setcellgapes{3pt}

            begin{document}

            begin{table}
            makegapedcells
            begin{tabular}{|c|c|c|c|c|}
            hline
            multirow{2}{*}{textbf{Criteria}}
            & multicolumn{2}{c|}{textbf{Proposed}}
            & multirow{2}{*}{textbf{Matching rate}}
            & multirow{2}{*}{textbf{Remarks}} \
            cline{2-3}
            & textbf{Trial 1}
            & textbf{Trial 2}
            & & \
            hline
            makecell{The device\ works buggy}
            & Passed & Passed & 100% & Passed \
            hline
            makecell{That works\ only to monitor bugs}
            & Passed & Passed & 100% & Passed \
            hline
            multicolumn{1}{c|}{}
            & multicolumn{2}{r|}{textbf{Functionality}}
            & textbf{100%} & textbf{Passed} \
            cline{2-5}
            end{tabular}
            end{table}
            end{document}


            enter image description here






            share|improve this answer
























            • So mine is an intermediate question :-D (yay!!!). Nevertheless, nice alignments per se (+1)

              – Raaja
              7 mins ago













            • @Raaja, you do job of op, which i wasn't willing to do. so, yes, i exploit you (your answer) :-)

              – Zarko
              4 mins ago











            • I remember that is how I started using TeX. So looking back, I always prefer to give a head-up when an OP suffers to compose a MWE (but not repetitively ofc;-)).

              – Raaja
              33 secs ago














            1












            1








            1







            used @Raaja answer (+1) as op mwe:



            documentclass{article}
            usepackage{makecell, multirow}
            setcellgapes{3pt}

            begin{document}

            begin{table}
            makegapedcells
            begin{tabular}{|c|c|c|c|c|}
            hline
            multirow{2}{*}{textbf{Criteria}}
            & multicolumn{2}{c|}{textbf{Proposed}}
            & multirow{2}{*}{textbf{Matching rate}}
            & multirow{2}{*}{textbf{Remarks}} \
            cline{2-3}
            & textbf{Trial 1}
            & textbf{Trial 2}
            & & \
            hline
            makecell{The device\ works buggy}
            & Passed & Passed & 100% & Passed \
            hline
            makecell{That works\ only to monitor bugs}
            & Passed & Passed & 100% & Passed \
            hline
            multicolumn{1}{c|}{}
            & multicolumn{2}{r|}{textbf{Functionality}}
            & textbf{100%} & textbf{Passed} \
            cline{2-5}
            end{tabular}
            end{table}
            end{document}


            enter image description here






            share|improve this answer













            used @Raaja answer (+1) as op mwe:



            documentclass{article}
            usepackage{makecell, multirow}
            setcellgapes{3pt}

            begin{document}

            begin{table}
            makegapedcells
            begin{tabular}{|c|c|c|c|c|}
            hline
            multirow{2}{*}{textbf{Criteria}}
            & multicolumn{2}{c|}{textbf{Proposed}}
            & multirow{2}{*}{textbf{Matching rate}}
            & multirow{2}{*}{textbf{Remarks}} \
            cline{2-3}
            & textbf{Trial 1}
            & textbf{Trial 2}
            & & \
            hline
            makecell{The device\ works buggy}
            & Passed & Passed & 100% & Passed \
            hline
            makecell{That works\ only to monitor bugs}
            & Passed & Passed & 100% & Passed \
            hline
            multicolumn{1}{c|}{}
            & multicolumn{2}{r|}{textbf{Functionality}}
            & textbf{100%} & textbf{Passed} \
            cline{2-5}
            end{tabular}
            end{table}
            end{document}


            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 10 mins ago









            ZarkoZarko

            123k865162




            123k865162













            • So mine is an intermediate question :-D (yay!!!). Nevertheless, nice alignments per se (+1)

              – Raaja
              7 mins ago













            • @Raaja, you do job of op, which i wasn't willing to do. so, yes, i exploit you (your answer) :-)

              – Zarko
              4 mins ago











            • I remember that is how I started using TeX. So looking back, I always prefer to give a head-up when an OP suffers to compose a MWE (but not repetitively ofc;-)).

              – Raaja
              33 secs ago



















            • So mine is an intermediate question :-D (yay!!!). Nevertheless, nice alignments per se (+1)

              – Raaja
              7 mins ago













            • @Raaja, you do job of op, which i wasn't willing to do. so, yes, i exploit you (your answer) :-)

              – Zarko
              4 mins ago











            • I remember that is how I started using TeX. So looking back, I always prefer to give a head-up when an OP suffers to compose a MWE (but not repetitively ofc;-)).

              – Raaja
              33 secs ago

















            So mine is an intermediate question :-D (yay!!!). Nevertheless, nice alignments per se (+1)

            – Raaja
            7 mins ago







            So mine is an intermediate question :-D (yay!!!). Nevertheless, nice alignments per se (+1)

            – Raaja
            7 mins ago















            @Raaja, you do job of op, which i wasn't willing to do. so, yes, i exploit you (your answer) :-)

            – Zarko
            4 mins ago





            @Raaja, you do job of op, which i wasn't willing to do. so, yes, i exploit you (your answer) :-)

            – Zarko
            4 mins ago













            I remember that is how I started using TeX. So looking back, I always prefer to give a head-up when an OP suffers to compose a MWE (but not repetitively ofc;-)).

            – Raaja
            33 secs ago





            I remember that is how I started using TeX. So looking back, I always prefer to give a head-up when an OP suffers to compose a MWE (but not repetitively ofc;-)).

            – Raaja
            33 secs ago










            Beginner is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            Beginner is a new contributor. Be nice, and check out our Code of Conduct.













            Beginner is a new contributor. Be nice, and check out our Code of Conduct.












            Beginner 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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f473462%2fhow-to-split-one-table-column-into-two-sub-columns-with-merged-header-and-footer%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







            i2R0ctLPvTo4vBVqR yj8 e8AXc,BTAjA7DTKJ 9 yn rYtWMvKbF,RMP1ICBqf3xiEAXK I8gm yPlxQT0tiY,fA9xETI,aW
            3APM sCVW2,tFnZuHnq9MK Xrgzgld4UuuEL4Jhrbolv9nO90stzIN,3,KneL6GTUyE,0IuN9yEf

            Popular posts from this blog

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

            Why does System V / AMD64 ABI mandate a 16 byte stack alignment?

            Firebase ML-Kit Barcode Scanning with Multiple Barcodes