Blank page with centered writing












1















I am wanting to create a page with the words "Research Plan" in the center. I currently have the following code



newpage
addcontentsline{toc}{subsection}{Research Plan}
vspace*{fill}% * is needed here
noindent
makebox[textwidth]{fontsize{50}{60}selectfont Research Plan}
vfill
newpage


However the words "Research Plan" don't seem to be perfectly centered, they seem a bit too low. In an ideal I would have the text slightly above center but I am happy to try different ideas and see what is best.










share|improve this question

























  • As long as the text is only a few words, you can use the structure centerline{...}. Everything else you have looks okay. A more "LaTeXy" construction is to place the text (and the font spec) between begin{center} ... end{center}.

    – barbara beeton
    Mar 2 at 0:05
















1















I am wanting to create a page with the words "Research Plan" in the center. I currently have the following code



newpage
addcontentsline{toc}{subsection}{Research Plan}
vspace*{fill}% * is needed here
noindent
makebox[textwidth]{fontsize{50}{60}selectfont Research Plan}
vfill
newpage


However the words "Research Plan" don't seem to be perfectly centered, they seem a bit too low. In an ideal I would have the text slightly above center but I am happy to try different ideas and see what is best.










share|improve this question

























  • As long as the text is only a few words, you can use the structure centerline{...}. Everything else you have looks okay. A more "LaTeXy" construction is to place the text (and the font spec) between begin{center} ... end{center}.

    – barbara beeton
    Mar 2 at 0:05














1












1








1








I am wanting to create a page with the words "Research Plan" in the center. I currently have the following code



newpage
addcontentsline{toc}{subsection}{Research Plan}
vspace*{fill}% * is needed here
noindent
makebox[textwidth]{fontsize{50}{60}selectfont Research Plan}
vfill
newpage


However the words "Research Plan" don't seem to be perfectly centered, they seem a bit too low. In an ideal I would have the text slightly above center but I am happy to try different ideas and see what is best.










share|improve this question
















I am wanting to create a page with the words "Research Plan" in the center. I currently have the following code



newpage
addcontentsline{toc}{subsection}{Research Plan}
vspace*{fill}% * is needed here
noindent
makebox[textwidth]{fontsize{50}{60}selectfont Research Plan}
vfill
newpage


However the words "Research Plan" don't seem to be perfectly centered, they seem a bit too low. In an ideal I would have the text slightly above center but I am happy to try different ideas and see what is best.







horizontal-alignment vertical-alignment titles






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 2 at 1:30









Werner

447k699891693




447k699891693










asked Mar 1 at 23:51









user182595user182595

83




83













  • As long as the text is only a few words, you can use the structure centerline{...}. Everything else you have looks okay. A more "LaTeXy" construction is to place the text (and the font spec) between begin{center} ... end{center}.

    – barbara beeton
    Mar 2 at 0:05



















  • As long as the text is only a few words, you can use the structure centerline{...}. Everything else you have looks okay. A more "LaTeXy" construction is to place the text (and the font spec) between begin{center} ... end{center}.

    – barbara beeton
    Mar 2 at 0:05

















As long as the text is only a few words, you can use the structure centerline{...}. Everything else you have looks okay. A more "LaTeXy" construction is to place the text (and the font spec) between begin{center} ... end{center}.

– barbara beeton
Mar 2 at 0:05





As long as the text is only a few words, you can use the structure centerline{...}. Everything else you have looks okay. A more "LaTeXy" construction is to place the text (and the font spec) between begin{center} ... end{center}.

– barbara beeton
Mar 2 at 0:05










2 Answers
2






active

oldest

votes


















1














Something like this?



documentclass[12pt]{article}
usepackage{ebgaramond}
usepackage[showframe]{geometry}
usepackage[svgnames]{xcolor}
usepackage{lipsum}

begin{document}

lipsum[1-3]
clearpage
thispagestyle{empty}
vspace*{0.25textheight}
begin{center}
bfseriesfontsize{60pt}{60pt}selectfont color{Tomato}Fiddle-dee-dee!
end{center}
clearpage
lipsum[46]

end{document}


enter image description here






share|improve this answer


























  • This looks quite close to what I am wanting, how would I change the font size of this please? Also is there a way to get the text about 1/3 of the way down the page instead of slap bang in the middle? Thanks!

    – user182595
    Mar 2 at 0:09











  • Which font size would you like to have?

    – Bernard
    Mar 2 at 0:12











  • About 60ish would be great

    – user182595
    Mar 2 at 0:15











  • Do you mean 60 pt?

    – Bernard
    Mar 2 at 0:17











  • Yeah about 60 would be great, and then how would I get the text to be about 1/3 down the page, I am sorry for being a pain. I am quite new to LaTeX so thanks for the help!!

    – user182595
    Mar 2 at 0:19



















1














You can use eso-pic's AtPageCenter or AtTextCenter to position content at the centre of the page or text block:



enter image description here



documentclass{article}

usepackage{eso-pic}
usepackage{lipsum}% Just for this example

begin{document}

lipsum[1-5]

clearpage

AddToShipoutPictureFG*{%
AtPageCenter{%
raisebox{-.5height}{makebox[0pt]{fontsize{50}{60}selectfont Research Plan}}
}%
}
mbox{}addcontentsline{toc}{subsection}{Research Plan}% Set something on the page

clearpage

lipsum[1-5]

end{document}


mbox{} just sets a blank element on the page so it can be shipped out when you issue clearpage (or newpage) and also establish the appropriate marker for the contents entry. During page ship-out, AddToShipoutPictureFG* places the content in the ForeGround of the page (just for that page as a result of *). The use of makebox[0pt] ensures that the element remains horizontally centred, while raisebox{-.5height} ensures vertical centering.






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%2f477373%2fblank-page-with-centered-writing%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









    1














    Something like this?



    documentclass[12pt]{article}
    usepackage{ebgaramond}
    usepackage[showframe]{geometry}
    usepackage[svgnames]{xcolor}
    usepackage{lipsum}

    begin{document}

    lipsum[1-3]
    clearpage
    thispagestyle{empty}
    vspace*{0.25textheight}
    begin{center}
    bfseriesfontsize{60pt}{60pt}selectfont color{Tomato}Fiddle-dee-dee!
    end{center}
    clearpage
    lipsum[46]

    end{document}


    enter image description here






    share|improve this answer


























    • This looks quite close to what I am wanting, how would I change the font size of this please? Also is there a way to get the text about 1/3 of the way down the page instead of slap bang in the middle? Thanks!

      – user182595
      Mar 2 at 0:09











    • Which font size would you like to have?

      – Bernard
      Mar 2 at 0:12











    • About 60ish would be great

      – user182595
      Mar 2 at 0:15











    • Do you mean 60 pt?

      – Bernard
      Mar 2 at 0:17











    • Yeah about 60 would be great, and then how would I get the text to be about 1/3 down the page, I am sorry for being a pain. I am quite new to LaTeX so thanks for the help!!

      – user182595
      Mar 2 at 0:19
















    1














    Something like this?



    documentclass[12pt]{article}
    usepackage{ebgaramond}
    usepackage[showframe]{geometry}
    usepackage[svgnames]{xcolor}
    usepackage{lipsum}

    begin{document}

    lipsum[1-3]
    clearpage
    thispagestyle{empty}
    vspace*{0.25textheight}
    begin{center}
    bfseriesfontsize{60pt}{60pt}selectfont color{Tomato}Fiddle-dee-dee!
    end{center}
    clearpage
    lipsum[46]

    end{document}


    enter image description here






    share|improve this answer


























    • This looks quite close to what I am wanting, how would I change the font size of this please? Also is there a way to get the text about 1/3 of the way down the page instead of slap bang in the middle? Thanks!

      – user182595
      Mar 2 at 0:09











    • Which font size would you like to have?

      – Bernard
      Mar 2 at 0:12











    • About 60ish would be great

      – user182595
      Mar 2 at 0:15











    • Do you mean 60 pt?

      – Bernard
      Mar 2 at 0:17











    • Yeah about 60 would be great, and then how would I get the text to be about 1/3 down the page, I am sorry for being a pain. I am quite new to LaTeX so thanks for the help!!

      – user182595
      Mar 2 at 0:19














    1












    1








    1







    Something like this?



    documentclass[12pt]{article}
    usepackage{ebgaramond}
    usepackage[showframe]{geometry}
    usepackage[svgnames]{xcolor}
    usepackage{lipsum}

    begin{document}

    lipsum[1-3]
    clearpage
    thispagestyle{empty}
    vspace*{0.25textheight}
    begin{center}
    bfseriesfontsize{60pt}{60pt}selectfont color{Tomato}Fiddle-dee-dee!
    end{center}
    clearpage
    lipsum[46]

    end{document}


    enter image description here






    share|improve this answer















    Something like this?



    documentclass[12pt]{article}
    usepackage{ebgaramond}
    usepackage[showframe]{geometry}
    usepackage[svgnames]{xcolor}
    usepackage{lipsum}

    begin{document}

    lipsum[1-3]
    clearpage
    thispagestyle{empty}
    vspace*{0.25textheight}
    begin{center}
    bfseriesfontsize{60pt}{60pt}selectfont color{Tomato}Fiddle-dee-dee!
    end{center}
    clearpage
    lipsum[46]

    end{document}


    enter image description here







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Mar 2 at 0:23

























    answered Mar 2 at 0:04









    BernardBernard

    172k776204




    172k776204













    • This looks quite close to what I am wanting, how would I change the font size of this please? Also is there a way to get the text about 1/3 of the way down the page instead of slap bang in the middle? Thanks!

      – user182595
      Mar 2 at 0:09











    • Which font size would you like to have?

      – Bernard
      Mar 2 at 0:12











    • About 60ish would be great

      – user182595
      Mar 2 at 0:15











    • Do you mean 60 pt?

      – Bernard
      Mar 2 at 0:17











    • Yeah about 60 would be great, and then how would I get the text to be about 1/3 down the page, I am sorry for being a pain. I am quite new to LaTeX so thanks for the help!!

      – user182595
      Mar 2 at 0:19



















    • This looks quite close to what I am wanting, how would I change the font size of this please? Also is there a way to get the text about 1/3 of the way down the page instead of slap bang in the middle? Thanks!

      – user182595
      Mar 2 at 0:09











    • Which font size would you like to have?

      – Bernard
      Mar 2 at 0:12











    • About 60ish would be great

      – user182595
      Mar 2 at 0:15











    • Do you mean 60 pt?

      – Bernard
      Mar 2 at 0:17











    • Yeah about 60 would be great, and then how would I get the text to be about 1/3 down the page, I am sorry for being a pain. I am quite new to LaTeX so thanks for the help!!

      – user182595
      Mar 2 at 0:19

















    This looks quite close to what I am wanting, how would I change the font size of this please? Also is there a way to get the text about 1/3 of the way down the page instead of slap bang in the middle? Thanks!

    – user182595
    Mar 2 at 0:09





    This looks quite close to what I am wanting, how would I change the font size of this please? Also is there a way to get the text about 1/3 of the way down the page instead of slap bang in the middle? Thanks!

    – user182595
    Mar 2 at 0:09













    Which font size would you like to have?

    – Bernard
    Mar 2 at 0:12





    Which font size would you like to have?

    – Bernard
    Mar 2 at 0:12













    About 60ish would be great

    – user182595
    Mar 2 at 0:15





    About 60ish would be great

    – user182595
    Mar 2 at 0:15













    Do you mean 60 pt?

    – Bernard
    Mar 2 at 0:17





    Do you mean 60 pt?

    – Bernard
    Mar 2 at 0:17













    Yeah about 60 would be great, and then how would I get the text to be about 1/3 down the page, I am sorry for being a pain. I am quite new to LaTeX so thanks for the help!!

    – user182595
    Mar 2 at 0:19





    Yeah about 60 would be great, and then how would I get the text to be about 1/3 down the page, I am sorry for being a pain. I am quite new to LaTeX so thanks for the help!!

    – user182595
    Mar 2 at 0:19











    1














    You can use eso-pic's AtPageCenter or AtTextCenter to position content at the centre of the page or text block:



    enter image description here



    documentclass{article}

    usepackage{eso-pic}
    usepackage{lipsum}% Just for this example

    begin{document}

    lipsum[1-5]

    clearpage

    AddToShipoutPictureFG*{%
    AtPageCenter{%
    raisebox{-.5height}{makebox[0pt]{fontsize{50}{60}selectfont Research Plan}}
    }%
    }
    mbox{}addcontentsline{toc}{subsection}{Research Plan}% Set something on the page

    clearpage

    lipsum[1-5]

    end{document}


    mbox{} just sets a blank element on the page so it can be shipped out when you issue clearpage (or newpage) and also establish the appropriate marker for the contents entry. During page ship-out, AddToShipoutPictureFG* places the content in the ForeGround of the page (just for that page as a result of *). The use of makebox[0pt] ensures that the element remains horizontally centred, while raisebox{-.5height} ensures vertical centering.






    share|improve this answer




























      1














      You can use eso-pic's AtPageCenter or AtTextCenter to position content at the centre of the page or text block:



      enter image description here



      documentclass{article}

      usepackage{eso-pic}
      usepackage{lipsum}% Just for this example

      begin{document}

      lipsum[1-5]

      clearpage

      AddToShipoutPictureFG*{%
      AtPageCenter{%
      raisebox{-.5height}{makebox[0pt]{fontsize{50}{60}selectfont Research Plan}}
      }%
      }
      mbox{}addcontentsline{toc}{subsection}{Research Plan}% Set something on the page

      clearpage

      lipsum[1-5]

      end{document}


      mbox{} just sets a blank element on the page so it can be shipped out when you issue clearpage (or newpage) and also establish the appropriate marker for the contents entry. During page ship-out, AddToShipoutPictureFG* places the content in the ForeGround of the page (just for that page as a result of *). The use of makebox[0pt] ensures that the element remains horizontally centred, while raisebox{-.5height} ensures vertical centering.






      share|improve this answer


























        1












        1








        1







        You can use eso-pic's AtPageCenter or AtTextCenter to position content at the centre of the page or text block:



        enter image description here



        documentclass{article}

        usepackage{eso-pic}
        usepackage{lipsum}% Just for this example

        begin{document}

        lipsum[1-5]

        clearpage

        AddToShipoutPictureFG*{%
        AtPageCenter{%
        raisebox{-.5height}{makebox[0pt]{fontsize{50}{60}selectfont Research Plan}}
        }%
        }
        mbox{}addcontentsline{toc}{subsection}{Research Plan}% Set something on the page

        clearpage

        lipsum[1-5]

        end{document}


        mbox{} just sets a blank element on the page so it can be shipped out when you issue clearpage (or newpage) and also establish the appropriate marker for the contents entry. During page ship-out, AddToShipoutPictureFG* places the content in the ForeGround of the page (just for that page as a result of *). The use of makebox[0pt] ensures that the element remains horizontally centred, while raisebox{-.5height} ensures vertical centering.






        share|improve this answer













        You can use eso-pic's AtPageCenter or AtTextCenter to position content at the centre of the page or text block:



        enter image description here



        documentclass{article}

        usepackage{eso-pic}
        usepackage{lipsum}% Just for this example

        begin{document}

        lipsum[1-5]

        clearpage

        AddToShipoutPictureFG*{%
        AtPageCenter{%
        raisebox{-.5height}{makebox[0pt]{fontsize{50}{60}selectfont Research Plan}}
        }%
        }
        mbox{}addcontentsline{toc}{subsection}{Research Plan}% Set something on the page

        clearpage

        lipsum[1-5]

        end{document}


        mbox{} just sets a blank element on the page so it can be shipped out when you issue clearpage (or newpage) and also establish the appropriate marker for the contents entry. During page ship-out, AddToShipoutPictureFG* places the content in the ForeGround of the page (just for that page as a result of *). The use of makebox[0pt] ensures that the element remains horizontally centred, while raisebox{-.5height} ensures vertical centering.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 2 at 1:30









        WernerWerner

        447k699891693




        447k699891693






























            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%2f477373%2fblank-page-with-centered-writing%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?