makecell alters vertical alignment across table row












2















Consider this example:



documentclass{report}
usepackage{makecell}
usepackage{lipsum}
begin{document}
begin{tabular}{p{3cm}p{3cm}}
lipsum[1][1] & lipsum[1][2-4]\
lipsum[1][5] & makecell[l]{A\B\C\D\E}
end{tabular}
end{document}


The output is:



enter image description here



As can be seen, the use of makecell altered the vertical alignment in the rest of the row. How to bring the vertical alignment of the affected row in harmony with the rest of the table (starting from top)?










share|improve this question



























    2















    Consider this example:



    documentclass{report}
    usepackage{makecell}
    usepackage{lipsum}
    begin{document}
    begin{tabular}{p{3cm}p{3cm}}
    lipsum[1][1] & lipsum[1][2-4]\
    lipsum[1][5] & makecell[l]{A\B\C\D\E}
    end{tabular}
    end{document}


    The output is:



    enter image description here



    As can be seen, the use of makecell altered the vertical alignment in the rest of the row. How to bring the vertical alignment of the affected row in harmony with the rest of the table (starting from top)?










    share|improve this question

























      2












      2








      2








      Consider this example:



      documentclass{report}
      usepackage{makecell}
      usepackage{lipsum}
      begin{document}
      begin{tabular}{p{3cm}p{3cm}}
      lipsum[1][1] & lipsum[1][2-4]\
      lipsum[1][5] & makecell[l]{A\B\C\D\E}
      end{tabular}
      end{document}


      The output is:



      enter image description here



      As can be seen, the use of makecell altered the vertical alignment in the rest of the row. How to bring the vertical alignment of the affected row in harmony with the rest of the table (starting from top)?










      share|improve this question














      Consider this example:



      documentclass{report}
      usepackage{makecell}
      usepackage{lipsum}
      begin{document}
      begin{tabular}{p{3cm}p{3cm}}
      lipsum[1][1] & lipsum[1][2-4]\
      lipsum[1][5] & makecell[l]{A\B\C\D\E}
      end{tabular}
      end{document}


      The output is:



      enter image description here



      As can be seen, the use of makecell altered the vertical alignment in the rest of the row. How to bring the vertical alignment of the affected row in harmony with the rest of the table (starting from top)?







      tables vertical-alignment makecell






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 6 hours ago









      ViestursViesturs

      1,64031123




      1,64031123






















          2 Answers
          2






          active

          oldest

          votes


















          2














          The default for makecell is centred, both vertically and horizontally. You could use makecell[lt]{A\B\C\D\E}.



          However, why use makecell in a pcolumn type? You may as well use this code:



          documentclass{report}
          usepackage{makecell}
          usepackage{lipsum}
          newcommand{nl}{newline}

          begin{document}

          begin{tabular}{p{3cm}p{3cm}}
          lipsum[1][1] & lipsum[1][2-4]\
          lipsum[1][5] & Anl Bnl Cnl Dnl E
          end{tabular}

          end{document}


          enter image description here






          share|improve this answer


























          • you have a dangling } in Cnl Dnl E}

            – Viesturs
            6 hours ago











          • I've seen that. 'Tis fixed. Thanks!

            – Bernard
            6 hours ago



















          2














          If you want to use makecell use t option:



          documentclass{report}
          usepackage{makecell}
          usepackage{lipsum}
          begin{document}
          begin{tabular}{p{6cm}p{6cm}}
          lipsum[1][1] & lipsum[1][2-4]\
          lipsum[1][5] & makecell[tl]{A\B\C\D\E}
          end{tabular}
          end{document}


          enter image description here






          share|improve this answer

























            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%2f470934%2fmakecell-alters-vertical-alignment-across-table-row%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














            The default for makecell is centred, both vertically and horizontally. You could use makecell[lt]{A\B\C\D\E}.



            However, why use makecell in a pcolumn type? You may as well use this code:



            documentclass{report}
            usepackage{makecell}
            usepackage{lipsum}
            newcommand{nl}{newline}

            begin{document}

            begin{tabular}{p{3cm}p{3cm}}
            lipsum[1][1] & lipsum[1][2-4]\
            lipsum[1][5] & Anl Bnl Cnl Dnl E
            end{tabular}

            end{document}


            enter image description here






            share|improve this answer


























            • you have a dangling } in Cnl Dnl E}

              – Viesturs
              6 hours ago











            • I've seen that. 'Tis fixed. Thanks!

              – Bernard
              6 hours ago
















            2














            The default for makecell is centred, both vertically and horizontally. You could use makecell[lt]{A\B\C\D\E}.



            However, why use makecell in a pcolumn type? You may as well use this code:



            documentclass{report}
            usepackage{makecell}
            usepackage{lipsum}
            newcommand{nl}{newline}

            begin{document}

            begin{tabular}{p{3cm}p{3cm}}
            lipsum[1][1] & lipsum[1][2-4]\
            lipsum[1][5] & Anl Bnl Cnl Dnl E
            end{tabular}

            end{document}


            enter image description here






            share|improve this answer


























            • you have a dangling } in Cnl Dnl E}

              – Viesturs
              6 hours ago











            • I've seen that. 'Tis fixed. Thanks!

              – Bernard
              6 hours ago














            2












            2








            2







            The default for makecell is centred, both vertically and horizontally. You could use makecell[lt]{A\B\C\D\E}.



            However, why use makecell in a pcolumn type? You may as well use this code:



            documentclass{report}
            usepackage{makecell}
            usepackage{lipsum}
            newcommand{nl}{newline}

            begin{document}

            begin{tabular}{p{3cm}p{3cm}}
            lipsum[1][1] & lipsum[1][2-4]\
            lipsum[1][5] & Anl Bnl Cnl Dnl E
            end{tabular}

            end{document}


            enter image description here






            share|improve this answer















            The default for makecell is centred, both vertically and horizontally. You could use makecell[lt]{A\B\C\D\E}.



            However, why use makecell in a pcolumn type? You may as well use this code:



            documentclass{report}
            usepackage{makecell}
            usepackage{lipsum}
            newcommand{nl}{newline}

            begin{document}

            begin{tabular}{p{3cm}p{3cm}}
            lipsum[1][1] & lipsum[1][2-4]\
            lipsum[1][5] & Anl Bnl Cnl Dnl E
            end{tabular}

            end{document}


            enter image description here







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 6 hours ago

























            answered 6 hours ago









            BernardBernard

            167k770195




            167k770195













            • you have a dangling } in Cnl Dnl E}

              – Viesturs
              6 hours ago











            • I've seen that. 'Tis fixed. Thanks!

              – Bernard
              6 hours ago



















            • you have a dangling } in Cnl Dnl E}

              – Viesturs
              6 hours ago











            • I've seen that. 'Tis fixed. Thanks!

              – Bernard
              6 hours ago

















            you have a dangling } in Cnl Dnl E}

            – Viesturs
            6 hours ago





            you have a dangling } in Cnl Dnl E}

            – Viesturs
            6 hours ago













            I've seen that. 'Tis fixed. Thanks!

            – Bernard
            6 hours ago





            I've seen that. 'Tis fixed. Thanks!

            – Bernard
            6 hours ago











            2














            If you want to use makecell use t option:



            documentclass{report}
            usepackage{makecell}
            usepackage{lipsum}
            begin{document}
            begin{tabular}{p{6cm}p{6cm}}
            lipsum[1][1] & lipsum[1][2-4]\
            lipsum[1][5] & makecell[tl]{A\B\C\D\E}
            end{tabular}
            end{document}


            enter image description here






            share|improve this answer






























              2














              If you want to use makecell use t option:



              documentclass{report}
              usepackage{makecell}
              usepackage{lipsum}
              begin{document}
              begin{tabular}{p{6cm}p{6cm}}
              lipsum[1][1] & lipsum[1][2-4]\
              lipsum[1][5] & makecell[tl]{A\B\C\D\E}
              end{tabular}
              end{document}


              enter image description here






              share|improve this answer




























                2












                2








                2







                If you want to use makecell use t option:



                documentclass{report}
                usepackage{makecell}
                usepackage{lipsum}
                begin{document}
                begin{tabular}{p{6cm}p{6cm}}
                lipsum[1][1] & lipsum[1][2-4]\
                lipsum[1][5] & makecell[tl]{A\B\C\D\E}
                end{tabular}
                end{document}


                enter image description here






                share|improve this answer















                If you want to use makecell use t option:



                documentclass{report}
                usepackage{makecell}
                usepackage{lipsum}
                begin{document}
                begin{tabular}{p{6cm}p{6cm}}
                lipsum[1][1] & lipsum[1][2-4]\
                lipsum[1][5] & makecell[tl]{A\B\C\D\E}
                end{tabular}
                end{document}


                enter image description here







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 6 hours ago

























                answered 6 hours ago









                CarLaTeXCarLaTeX

                30.3k448127




                30.3k448127






























                    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%2f470934%2fmakecell-alters-vertical-alignment-across-table-row%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

                    SQL Server 17 - Attemping to backup to remote NAS but Access is denied

                    Always On Availability groups resolving state after failover - Remote harden of transaction...

                    Restoring from pg_dump with foreign key constraints