Font with correct density?Layout for seminar paper; justified, font, size, spacingHow similar output do mathptmx and Times New Roman create?What is the secret to use fonts?Why do different fonts have different point sizes?Set the default math font back to the originalChoosing a good math font to use with Georgia text fontIncluding letters from other fontsCorrect braille fontInclude correct label with includepdfWhat font to use for source code in a document?

Why using two cd commands in bash script does not execute the second command

Be in awe of my brilliance!

Know when to turn notes upside-down(eighth notes, sixteen notes, etc.)

Why did it take so long to abandon sail after steamships were demonstrated?

My story is written in English, but is set in my home country. What language should I use for the dialogue?

Rejected in 4th interview round citing insufficient years of experience

How do I hide Chekhov's Gun?

Why do passenger jet manufacturers design their planes with stall prevention systems?

Fill color and outline color with the same value

Connecting top and bottom SMD component pads using via

Using "wallow" verb with object

Instead of Universal Basic Income, why not Universal Basic NEEDS?

Why must traveling waves have the same amplitude to form a standing wave?

What is IP squat space

Is it normal that my co-workers at a fitness company criticize my food choices?

How to deal with taxi scam when on vacation?

Make a transparent 448*448 image

How is the Swiss post e-voting system supposed to work, and how was it wrong?

It's a yearly task, alright

Rules about breaking the rules. How do I do it well?

Could the Saturn V actually have launched astronauts around Venus?

Humanity loses the vast majority of its technology, information, and population in the year 2122. How long does it take to rebuild itself?

Is it true that real estate prices mainly go up?

Font with correct density?



Font with correct density?


Layout for seminar paper; justified, font, size, spacingHow similar output do mathptmx and Times New Roman create?What is the secret to use fonts?Why do different fonts have different point sizes?Set the default math font back to the originalChoosing a good math font to use with Georgia text fontIncluding letters from other fontsCorrect braille fontInclude correct label with includepdfWhat font to use for source code in a document?













3















I'm writing a paper for university and my professor has some formal specification. We shall use Times New Roman, Arial or Tahoma as fonts. Clearly he thougth about Word when specifying this. So I searched for a fitting font in PDFLaTeX. As I want to write with serifs, I looked for one similar to Times New Roman and found newtx.



Now I want to know if this has the correct density (is this the correct term?), so if I can write as much characters as my colleagues using word and one of the mentioned fonts and not more. (Our limit is given in pages.)



My question: Has newtx a density similar to Times New Roman, Arial or Tahoma?



If there are any references for looking up such values, I'd like to learn this too.










share|improve this question



















  • 3





    As Times and Arial have very different "density" I would say that the professor doesn't care. But if you are unsure: write two pages and show him the result and ask.

    – Ulrike Fischer
    6 hours ago















3















I'm writing a paper for university and my professor has some formal specification. We shall use Times New Roman, Arial or Tahoma as fonts. Clearly he thougth about Word when specifying this. So I searched for a fitting font in PDFLaTeX. As I want to write with serifs, I looked for one similar to Times New Roman and found newtx.



Now I want to know if this has the correct density (is this the correct term?), so if I can write as much characters as my colleagues using word and one of the mentioned fonts and not more. (Our limit is given in pages.)



My question: Has newtx a density similar to Times New Roman, Arial or Tahoma?



If there are any references for looking up such values, I'd like to learn this too.










share|improve this question



















  • 3





    As Times and Arial have very different "density" I would say that the professor doesn't care. But if you are unsure: write two pages and show him the result and ask.

    – Ulrike Fischer
    6 hours ago













3












3








3








I'm writing a paper for university and my professor has some formal specification. We shall use Times New Roman, Arial or Tahoma as fonts. Clearly he thougth about Word when specifying this. So I searched for a fitting font in PDFLaTeX. As I want to write with serifs, I looked for one similar to Times New Roman and found newtx.



Now I want to know if this has the correct density (is this the correct term?), so if I can write as much characters as my colleagues using word and one of the mentioned fonts and not more. (Our limit is given in pages.)



My question: Has newtx a density similar to Times New Roman, Arial or Tahoma?



If there are any references for looking up such values, I'd like to learn this too.










share|improve this question
















I'm writing a paper for university and my professor has some formal specification. We shall use Times New Roman, Arial or Tahoma as fonts. Clearly he thougth about Word when specifying this. So I searched for a fitting font in PDFLaTeX. As I want to write with serifs, I looked for one similar to Times New Roman and found newtx.



Now I want to know if this has the correct density (is this the correct term?), so if I can write as much characters as my colleagues using word and one of the mentioned fonts and not more. (Our limit is given in pages.)



My question: Has newtx a density similar to Times New Roman, Arial or Tahoma?



If there are any references for looking up such values, I'd like to learn this too.







fonts pdftex






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 6 hours ago









Bernard

173k776204




173k776204










asked 6 hours ago









K-HBK-HB

1385




1385







  • 3





    As Times and Arial have very different "density" I would say that the professor doesn't care. But if you are unsure: write two pages and show him the result and ask.

    – Ulrike Fischer
    6 hours ago












  • 3





    As Times and Arial have very different "density" I would say that the professor doesn't care. But if you are unsure: write two pages and show him the result and ask.

    – Ulrike Fischer
    6 hours ago







3




3





As Times and Arial have very different "density" I would say that the professor doesn't care. But if you are unsure: write two pages and show him the result and ask.

– Ulrike Fischer
6 hours ago





As Times and Arial have very different "density" I would say that the professor doesn't care. But if you are unsure: write two pages and show him the result and ask.

– Ulrike Fischer
6 hours ago










2 Answers
2






active

oldest

votes


















6














There's a simple (and not necessarily correct) test you can do: Using the package typoaid you may look at values like the number of characters per width (tychperwidth) and maybe the values from the font table.



Compiling (as reference) the following document with Times New Roman:



documentclass[12pt]article
usepackagefontspec
setmainfontTimes New Roman
usepackagetypoaid
begindocument
tychperwidthrmfamilypar
tyfonttablermfamily
enddocument


I get values like



times



On the other hand, with nimbusserif and pdflatex I get



nimbus serif



documentclass[12pt]article
usepackagenimbusserif
usepackagetypoaid
begindocument
tychperwidthrmfamilypar
tyfonttablermfamily
enddocument


And finally with newtxtext and pdflatex:



newtxtext



documentclass[12pt]article
usepackagenewtxtext
usepackagetypoaid
begindocument
tychperwidthrmfamilypar
tyfonttablermfamily
enddocument


That shows how you may get very similar result. Please note that you may get even better results than your colleagues by using proper hyphenation with babel and the enhancements offered by microtype.






share|improve this answer






























    0














    You can use any of those three fonts with fontspec. If you have Cambria Math (including on a Windows partition you can symlink to), you can also use it, for the same font used in MS Office. For example:



    usepackagefontspec
    defaultfontfeatures Scale = MatchLowercase
    setmainfontTimes New Roman[Scale = 1.0]
    setsansfontArial
    setmonofontAndale Mono


    In legacy PDFTeX, you can use the winfonts package in the T1 encoding.






    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%2f479521%2ffont-with-correct-density%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









      6














      There's a simple (and not necessarily correct) test you can do: Using the package typoaid you may look at values like the number of characters per width (tychperwidth) and maybe the values from the font table.



      Compiling (as reference) the following document with Times New Roman:



      documentclass[12pt]article
      usepackagefontspec
      setmainfontTimes New Roman
      usepackagetypoaid
      begindocument
      tychperwidthrmfamilypar
      tyfonttablermfamily
      enddocument


      I get values like



      times



      On the other hand, with nimbusserif and pdflatex I get



      nimbus serif



      documentclass[12pt]article
      usepackagenimbusserif
      usepackagetypoaid
      begindocument
      tychperwidthrmfamilypar
      tyfonttablermfamily
      enddocument


      And finally with newtxtext and pdflatex:



      newtxtext



      documentclass[12pt]article
      usepackagenewtxtext
      usepackagetypoaid
      begindocument
      tychperwidthrmfamilypar
      tyfonttablermfamily
      enddocument


      That shows how you may get very similar result. Please note that you may get even better results than your colleagues by using proper hyphenation with babel and the enhancements offered by microtype.






      share|improve this answer



























        6














        There's a simple (and not necessarily correct) test you can do: Using the package typoaid you may look at values like the number of characters per width (tychperwidth) and maybe the values from the font table.



        Compiling (as reference) the following document with Times New Roman:



        documentclass[12pt]article
        usepackagefontspec
        setmainfontTimes New Roman
        usepackagetypoaid
        begindocument
        tychperwidthrmfamilypar
        tyfonttablermfamily
        enddocument


        I get values like



        times



        On the other hand, with nimbusserif and pdflatex I get



        nimbus serif



        documentclass[12pt]article
        usepackagenimbusserif
        usepackagetypoaid
        begindocument
        tychperwidthrmfamilypar
        tyfonttablermfamily
        enddocument


        And finally with newtxtext and pdflatex:



        newtxtext



        documentclass[12pt]article
        usepackagenewtxtext
        usepackagetypoaid
        begindocument
        tychperwidthrmfamilypar
        tyfonttablermfamily
        enddocument


        That shows how you may get very similar result. Please note that you may get even better results than your colleagues by using proper hyphenation with babel and the enhancements offered by microtype.






        share|improve this answer

























          6












          6








          6







          There's a simple (and not necessarily correct) test you can do: Using the package typoaid you may look at values like the number of characters per width (tychperwidth) and maybe the values from the font table.



          Compiling (as reference) the following document with Times New Roman:



          documentclass[12pt]article
          usepackagefontspec
          setmainfontTimes New Roman
          usepackagetypoaid
          begindocument
          tychperwidthrmfamilypar
          tyfonttablermfamily
          enddocument


          I get values like



          times



          On the other hand, with nimbusserif and pdflatex I get



          nimbus serif



          documentclass[12pt]article
          usepackagenimbusserif
          usepackagetypoaid
          begindocument
          tychperwidthrmfamilypar
          tyfonttablermfamily
          enddocument


          And finally with newtxtext and pdflatex:



          newtxtext



          documentclass[12pt]article
          usepackagenewtxtext
          usepackagetypoaid
          begindocument
          tychperwidthrmfamilypar
          tyfonttablermfamily
          enddocument


          That shows how you may get very similar result. Please note that you may get even better results than your colleagues by using proper hyphenation with babel and the enhancements offered by microtype.






          share|improve this answer













          There's a simple (and not necessarily correct) test you can do: Using the package typoaid you may look at values like the number of characters per width (tychperwidth) and maybe the values from the font table.



          Compiling (as reference) the following document with Times New Roman:



          documentclass[12pt]article
          usepackagefontspec
          setmainfontTimes New Roman
          usepackagetypoaid
          begindocument
          tychperwidthrmfamilypar
          tyfonttablermfamily
          enddocument


          I get values like



          times



          On the other hand, with nimbusserif and pdflatex I get



          nimbus serif



          documentclass[12pt]article
          usepackagenimbusserif
          usepackagetypoaid
          begindocument
          tychperwidthrmfamilypar
          tyfonttablermfamily
          enddocument


          And finally with newtxtext and pdflatex:



          newtxtext



          documentclass[12pt]article
          usepackagenewtxtext
          usepackagetypoaid
          begindocument
          tychperwidthrmfamilypar
          tyfonttablermfamily
          enddocument


          That shows how you may get very similar result. Please note that you may get even better results than your colleagues by using proper hyphenation with babel and the enhancements offered by microtype.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 6 hours ago









          TeXnicianTeXnician

          25.6k63390




          25.6k63390





















              0














              You can use any of those three fonts with fontspec. If you have Cambria Math (including on a Windows partition you can symlink to), you can also use it, for the same font used in MS Office. For example:



              usepackagefontspec
              defaultfontfeatures Scale = MatchLowercase
              setmainfontTimes New Roman[Scale = 1.0]
              setsansfontArial
              setmonofontAndale Mono


              In legacy PDFTeX, you can use the winfonts package in the T1 encoding.






              share|improve this answer



























                0














                You can use any of those three fonts with fontspec. If you have Cambria Math (including on a Windows partition you can symlink to), you can also use it, for the same font used in MS Office. For example:



                usepackagefontspec
                defaultfontfeatures Scale = MatchLowercase
                setmainfontTimes New Roman[Scale = 1.0]
                setsansfontArial
                setmonofontAndale Mono


                In legacy PDFTeX, you can use the winfonts package in the T1 encoding.






                share|improve this answer

























                  0












                  0








                  0







                  You can use any of those three fonts with fontspec. If you have Cambria Math (including on a Windows partition you can symlink to), you can also use it, for the same font used in MS Office. For example:



                  usepackagefontspec
                  defaultfontfeatures Scale = MatchLowercase
                  setmainfontTimes New Roman[Scale = 1.0]
                  setsansfontArial
                  setmonofontAndale Mono


                  In legacy PDFTeX, you can use the winfonts package in the T1 encoding.






                  share|improve this answer













                  You can use any of those three fonts with fontspec. If you have Cambria Math (including on a Windows partition you can symlink to), you can also use it, for the same font used in MS Office. For example:



                  usepackagefontspec
                  defaultfontfeatures Scale = MatchLowercase
                  setmainfontTimes New Roman[Scale = 1.0]
                  setsansfontArial
                  setmonofontAndale Mono


                  In legacy PDFTeX, you can use the winfonts package in the T1 encoding.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 26 mins ago









                  DavislorDavislor

                  6,6471429




                  6,6471429



























                      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%2f479521%2ffont-with-correct-density%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

                      Are there any comparative studies done between Ashtavakra Gita and Buddhim?How is it wrong to believe that a self exists, or that it doesn't?Can you criticise or improve Ven. Bodhi's description of MahayanaWas the doctrine of 'Anatta', accepted as doctrine by modern Buddhism, actually taught by the Buddha?Relationship between Buddhism, Hinduism and Yoga?Comparison of Nirvana, Tao and Brahman/AtmaIs there a distinction between “ego identity” and “craving/hating”?Are there many differences between Taoism and Buddhism?Loss of “faith” in buddhismSimilarity between creation in Abrahamic religions and beginning of life in Earth mentioned Agganna Sutta?Are there studies about the difference between meditating in the morning versus in the evening?Can one follow Hinduism and Buddhism at the same time?Are there any prohibitions on participating in other religion's practices?Psychology of 'flow'

                      Where else does the Shulchan Aruch quote an authority by name?Parashat Metzora+HagadolPesach/PassoverShulchan Aruch UTF-8Anonymous glosses in the Shulchan AruchWhy is the Shulchan Aruch definitive?Siman 32, Kitzur Shulchan Aruch: UntranslatedLitvaks/Yeshivish and Shulchan AruchBuying a Shulchan AruchEnglish version of SHULCHAN ARUCHIs there any place where Shulchan Aruch rules with the Rosh against the Rif and Rambam?Are there practices where Sepharadim do not hold by Shulchan Aruch?5th part of the shulchan aruch

                      fallocate: fallocate failed: Text file busy in Ubuntu 17.04? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)defragmenting and increasing performance of old lubuntu system with swap partitionIssue with increasing the root partition from the swapthis /usr/bin/dpkg returned error || ubuntu-16.04, 64bitDefault 17.04 swap file locationHow to Resize Ubuntu 17.04 Zesty Swap file size?Ubuntu freezes from online formsMy Laptop is not starting after upgrade ubuntu 16.04 (Kernel 4.8.0-38 to 04.10.0-36)hcp: ERROR: FALLOCATE FAILED!Not sure my swap is being usedWine 3.0 asking for more virtual free swap