How to set the font size to 11.5pt?












8















How do I set the font size to 11.5? 12 is too large and 11 is too small.



I used



documentclass[titlepage,11.5pt]{article}


but it still gives me size 11










share|improve this question









New contributor




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
















  • 5





    The default article class only has three choices 10pt, 11pt and 12pt, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.

    – Au101
    9 hours ago











  • However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.

    – Au101
    9 hours ago
















8















How do I set the font size to 11.5? 12 is too large and 11 is too small.



I used



documentclass[titlepage,11.5pt]{article}


but it still gives me size 11










share|improve this question









New contributor




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
















  • 5





    The default article class only has three choices 10pt, 11pt and 12pt, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.

    – Au101
    9 hours ago











  • However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.

    – Au101
    9 hours ago














8












8








8


1






How do I set the font size to 11.5? 12 is too large and 11 is too small.



I used



documentclass[titlepage,11.5pt]{article}


but it still gives me size 11










share|improve this question









New contributor




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












How do I set the font size to 11.5? 12 is too large and 11 is too small.



I used



documentclass[titlepage,11.5pt]{article}


but it still gives me size 11







fontsize






share|improve this question









New contributor




Bob 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




Bob 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 14 mins ago









Jeel Shah

1,75932846




1,75932846






New contributor




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









asked 9 hours ago









BobBob

411




411




New contributor




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





New contributor





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






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








  • 5





    The default article class only has three choices 10pt, 11pt and 12pt, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.

    – Au101
    9 hours ago











  • However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.

    – Au101
    9 hours ago














  • 5





    The default article class only has three choices 10pt, 11pt and 12pt, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.

    – Au101
    9 hours ago











  • However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.

    – Au101
    9 hours ago








5




5





The default article class only has three choices 10pt, 11pt and 12pt, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.

– Au101
9 hours ago





The default article class only has three choices 10pt, 11pt and 12pt, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.

– Au101
9 hours ago













However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.

– Au101
9 hours ago





However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.

– Au101
9 hours ago










2 Answers
2






active

oldest

votes


















10














the options 10pt, 11pt and 12pt are not lengths at all they are simply strings used as option names that suggest the size of normalsize (although 11pt doesn't set normalsize to 11pt, but 10.95pt)



They are the only three size related options but you can request a font of any size



fontsize{11.4pt}{2cm}selectfont


requests an 11.4pt font on a 2cm baseline.



For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put



RequirePackage{fix-cm}


at the top of the document, this restriction will be lifted and fonts will be used at the requested size.



Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.






share|improve this answer

































    9














    KOMA-script allows you to specify any size for your main font, so you could use



    documentclass[titlepage, fontsize=11.5pt]{scrartcl}


    Note that you might want to select either package fix-cm or lmodern to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.



    Many font packages have an option like [scale=0.958] or [scaled=0.958]. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec, you could do:



    documentclass[titlepage, 12pt]{article}
    usepackage{fontspec}

    defaultfontfeatures{Scale = MatchLowercase}
    setmainfont{Latin Modern Roman}[
    Scale = 0.958,
    Ligatures = {Common, TeX}]





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


      }
      });






      Bob 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%2f473838%2fhow-to-set-the-font-size-to-11-5pt%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









      10














      the options 10pt, 11pt and 12pt are not lengths at all they are simply strings used as option names that suggest the size of normalsize (although 11pt doesn't set normalsize to 11pt, but 10.95pt)



      They are the only three size related options but you can request a font of any size



      fontsize{11.4pt}{2cm}selectfont


      requests an 11.4pt font on a 2cm baseline.



      For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put



      RequirePackage{fix-cm}


      at the top of the document, this restriction will be lifted and fonts will be used at the requested size.



      Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.






      share|improve this answer






























        10














        the options 10pt, 11pt and 12pt are not lengths at all they are simply strings used as option names that suggest the size of normalsize (although 11pt doesn't set normalsize to 11pt, but 10.95pt)



        They are the only three size related options but you can request a font of any size



        fontsize{11.4pt}{2cm}selectfont


        requests an 11.4pt font on a 2cm baseline.



        For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put



        RequirePackage{fix-cm}


        at the top of the document, this restriction will be lifted and fonts will be used at the requested size.



        Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.






        share|improve this answer




























          10












          10








          10







          the options 10pt, 11pt and 12pt are not lengths at all they are simply strings used as option names that suggest the size of normalsize (although 11pt doesn't set normalsize to 11pt, but 10.95pt)



          They are the only three size related options but you can request a font of any size



          fontsize{11.4pt}{2cm}selectfont


          requests an 11.4pt font on a 2cm baseline.



          For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put



          RequirePackage{fix-cm}


          at the top of the document, this restriction will be lifted and fonts will be used at the requested size.



          Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.






          share|improve this answer















          the options 10pt, 11pt and 12pt are not lengths at all they are simply strings used as option names that suggest the size of normalsize (although 11pt doesn't set normalsize to 11pt, but 10.95pt)



          They are the only three size related options but you can request a font of any size



          fontsize{11.4pt}{2cm}selectfont


          requests an 11.4pt font on a 2cm baseline.



          For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put



          RequirePackage{fix-cm}


          at the top of the document, this restriction will be lifted and fonts will be used at the requested size.



          Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 8 hours ago









          marmot

          98.2k4113218




          98.2k4113218










          answered 8 hours ago









          David CarlisleDavid Carlisle

          489k4111311879




          489k4111311879























              9














              KOMA-script allows you to specify any size for your main font, so you could use



              documentclass[titlepage, fontsize=11.5pt]{scrartcl}


              Note that you might want to select either package fix-cm or lmodern to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.



              Many font packages have an option like [scale=0.958] or [scaled=0.958]. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec, you could do:



              documentclass[titlepage, 12pt]{article}
              usepackage{fontspec}

              defaultfontfeatures{Scale = MatchLowercase}
              setmainfont{Latin Modern Roman}[
              Scale = 0.958,
              Ligatures = {Common, TeX}]





              share|improve this answer






























                9














                KOMA-script allows you to specify any size for your main font, so you could use



                documentclass[titlepage, fontsize=11.5pt]{scrartcl}


                Note that you might want to select either package fix-cm or lmodern to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.



                Many font packages have an option like [scale=0.958] or [scaled=0.958]. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec, you could do:



                documentclass[titlepage, 12pt]{article}
                usepackage{fontspec}

                defaultfontfeatures{Scale = MatchLowercase}
                setmainfont{Latin Modern Roman}[
                Scale = 0.958,
                Ligatures = {Common, TeX}]





                share|improve this answer




























                  9












                  9








                  9







                  KOMA-script allows you to specify any size for your main font, so you could use



                  documentclass[titlepage, fontsize=11.5pt]{scrartcl}


                  Note that you might want to select either package fix-cm or lmodern to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.



                  Many font packages have an option like [scale=0.958] or [scaled=0.958]. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec, you could do:



                  documentclass[titlepage, 12pt]{article}
                  usepackage{fontspec}

                  defaultfontfeatures{Scale = MatchLowercase}
                  setmainfont{Latin Modern Roman}[
                  Scale = 0.958,
                  Ligatures = {Common, TeX}]





                  share|improve this answer















                  KOMA-script allows you to specify any size for your main font, so you could use



                  documentclass[titlepage, fontsize=11.5pt]{scrartcl}


                  Note that you might want to select either package fix-cm or lmodern to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.



                  Many font packages have an option like [scale=0.958] or [scaled=0.958]. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec, you could do:



                  documentclass[titlepage, 12pt]{article}
                  usepackage{fontspec}

                  defaultfontfeatures{Scale = MatchLowercase}
                  setmainfont{Latin Modern Roman}[
                  Scale = 0.958,
                  Ligatures = {Common, TeX}]






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 2 hours ago

























                  answered 8 hours ago









                  DavislorDavislor

                  6,2321227




                  6,2321227






















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










                      draft saved

                      draft discarded


















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













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












                      Bob 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%2f473838%2fhow-to-set-the-font-size-to-11-5pt%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