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 Jan 19 at 21:17









      ViestursViesturs

      1,65031123




      1,65031123






















          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
            Jan 19 at 21:28











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

            – Bernard
            Jan 19 at 21:30



















          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
              Jan 19 at 21:28











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

              – Bernard
              Jan 19 at 21:30
















            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
              Jan 19 at 21:28











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

              – Bernard
              Jan 19 at 21:30














            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 Jan 19 at 21:29

























            answered Jan 19 at 21:24









            BernardBernard

            168k771195




            168k771195













            • you have a dangling } in Cnl Dnl E}

              – Viesturs
              Jan 19 at 21:28











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

              – Bernard
              Jan 19 at 21:30



















            • you have a dangling } in Cnl Dnl E}

              – Viesturs
              Jan 19 at 21:28











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

              – Bernard
              Jan 19 at 21:30

















            you have a dangling } in Cnl Dnl E}

            – Viesturs
            Jan 19 at 21:28





            you have a dangling } in Cnl Dnl E}

            – Viesturs
            Jan 19 at 21:28













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

            – Bernard
            Jan 19 at 21:30





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

            – Bernard
            Jan 19 at 21:30











            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 Jan 19 at 21:37

























                answered Jan 19 at 21:31









                CarLaTeXCarLaTeX

                30.7k449129




                30.7k449129






























                    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

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?