TinyTeX: Font TS1/ntxtlf/m/n/12=ts1-qtmr at 12.0pt not loadable: Metric (TFM) file not foundproblem with...

A bug in Excel? Conditional formatting for marking duplicates also highlights unique value

Why would the IRS ask for birth certificates or even audit a small tax return?

Paper published similar to PhD thesis

The need of reserving one's ability in job interviews

Are angels creatures (Mark 16:15) and can they repent (Rev 2:5 and Rom 8:21)

What's the best tool for cutting holes into duct work?

Was it really inappropriate to write a pull request for the company I interviewed with?

ESPP--any reason not to go all in?

How can friction do no work in case of pure rolling?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

The past tense for the quoting particle って

Is being socially reclusive okay for a graduate student?

Naming Characters after Friends/Family

What is the oldest European royal house?

Quitting employee has privileged access to critical information

Did Amazon pay $0 in taxes last year?

In the world of The Matrix, what is "popping"?

Are there other characters in the Star Wars universe who had damaged bodies and needed to wear an outfit like Darth Vader?

Dukha vs legitimate need

If nine coins are tossed, what is the probability that the number of heads is even?

Why is there an extra space when I type "ls" on the Desktop?

Drawing the Möbius band and the Klein bottle

Learning to quickly identify valid fingering for piano?

What is "desert glass" and what does it do to the PCs?



TinyTeX: Font TS1/ntxtlf/m/n/12=ts1-qtmr at 12.0pt not loadable: Metric (TFM) file not found


problem with qpxmath: qplri at Xpt not loadable: Metric (TFM) file not foundError in TeX Live – Font … not loadable: Metric (TFM) file not foundFont OT1/ptm/m/n/9=ptmr7t at 9.0pt not loadable: Metric (TFM) file not foundmetric file not found for script fontMetric (TFM) file not foundMyriadPro metric file not foundError in MacTex – Font … not loadable: Metric (TFM) file not foundFont fntlogosmsl=logosl8 scaled 600 not loadable: Metric (TFM) file not foundmathbbol and Metric (TFM) file not foundFont U/bbold/m/n/14.4=bbold14 at 14.4pt not loadable: Metric (TFM) file not found. subsection{ $ {L}^{p} $ Spaces}













0















I'm trying to get a minimal LaTeX working inside a Docker container to support some documentation generation. Currently this is what I have going:



RUN wget -qO- "https://github.com/yihui/tinytex/raw/master/tools/install-unx.sh" | sh
ENV PATH "$PATH:/root/.TinyTeX/bin/x86_64-linux"
RUN tlmgr install standalone preview ucs was newtx fontaxes xcolor dvisvgm psnfss symbol


Whenever I try to compile a document, I get the error message:



Font TS1/ntxtlf/m/n/12=ts1-qtmr at 12.0pt not loadable: Metric (TFM) file not found


Here's one example document. This is generated by a tool (m.css), which is why it's using way more packages than it needs to. Modifying the docker environment is easy, but modifying the actual document is very difficult.



documentclass[12pt,preview]{standalone}

usepackage[utf8x]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
usepackage{gensymb}
usepackage{newtxtext}
usepackage{xcolor}
usepackage{array,graphicx}
usepackage{booktabs}
usepackage{pifont}

begin{document}
begin{preview}
$O(2^{N})$
end{preview}
end{document}


Note that my end goal here is to get the smallest Docker image that works to compile documents similar to that. Yes, I can apt-get install texlive-full and everything will work, but I'd rather figure out the minimal set of fonts and packages needed.



More generally, is there a way to go from that error message to the name of the package I need and/or the fonts that are missing? TS1/ntxtlf/m/n/12=ts1-qtmr isn't very googleable.










share|improve this question







New contributor




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

























    0















    I'm trying to get a minimal LaTeX working inside a Docker container to support some documentation generation. Currently this is what I have going:



    RUN wget -qO- "https://github.com/yihui/tinytex/raw/master/tools/install-unx.sh" | sh
    ENV PATH "$PATH:/root/.TinyTeX/bin/x86_64-linux"
    RUN tlmgr install standalone preview ucs was newtx fontaxes xcolor dvisvgm psnfss symbol


    Whenever I try to compile a document, I get the error message:



    Font TS1/ntxtlf/m/n/12=ts1-qtmr at 12.0pt not loadable: Metric (TFM) file not found


    Here's one example document. This is generated by a tool (m.css), which is why it's using way more packages than it needs to. Modifying the docker environment is easy, but modifying the actual document is very difficult.



    documentclass[12pt,preview]{standalone}

    usepackage[utf8x]{inputenc}
    usepackage{amsmath}
    usepackage{amsfonts}
    usepackage{amssymb}
    usepackage{gensymb}
    usepackage{newtxtext}
    usepackage{xcolor}
    usepackage{array,graphicx}
    usepackage{booktabs}
    usepackage{pifont}

    begin{document}
    begin{preview}
    $O(2^{N})$
    end{preview}
    end{document}


    Note that my end goal here is to get the smallest Docker image that works to compile documents similar to that. Yes, I can apt-get install texlive-full and everything will work, but I'd rather figure out the minimal set of fonts and packages needed.



    More generally, is there a way to go from that error message to the name of the package I need and/or the fonts that are missing? TS1/ntxtlf/m/n/12=ts1-qtmr isn't very googleable.










    share|improve this question







    New contributor




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























      0












      0








      0








      I'm trying to get a minimal LaTeX working inside a Docker container to support some documentation generation. Currently this is what I have going:



      RUN wget -qO- "https://github.com/yihui/tinytex/raw/master/tools/install-unx.sh" | sh
      ENV PATH "$PATH:/root/.TinyTeX/bin/x86_64-linux"
      RUN tlmgr install standalone preview ucs was newtx fontaxes xcolor dvisvgm psnfss symbol


      Whenever I try to compile a document, I get the error message:



      Font TS1/ntxtlf/m/n/12=ts1-qtmr at 12.0pt not loadable: Metric (TFM) file not found


      Here's one example document. This is generated by a tool (m.css), which is why it's using way more packages than it needs to. Modifying the docker environment is easy, but modifying the actual document is very difficult.



      documentclass[12pt,preview]{standalone}

      usepackage[utf8x]{inputenc}
      usepackage{amsmath}
      usepackage{amsfonts}
      usepackage{amssymb}
      usepackage{gensymb}
      usepackage{newtxtext}
      usepackage{xcolor}
      usepackage{array,graphicx}
      usepackage{booktabs}
      usepackage{pifont}

      begin{document}
      begin{preview}
      $O(2^{N})$
      end{preview}
      end{document}


      Note that my end goal here is to get the smallest Docker image that works to compile documents similar to that. Yes, I can apt-get install texlive-full and everything will work, but I'd rather figure out the minimal set of fonts and packages needed.



      More generally, is there a way to go from that error message to the name of the package I need and/or the fonts that are missing? TS1/ntxtlf/m/n/12=ts1-qtmr isn't very googleable.










      share|improve this question







      New contributor




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












      I'm trying to get a minimal LaTeX working inside a Docker container to support some documentation generation. Currently this is what I have going:



      RUN wget -qO- "https://github.com/yihui/tinytex/raw/master/tools/install-unx.sh" | sh
      ENV PATH "$PATH:/root/.TinyTeX/bin/x86_64-linux"
      RUN tlmgr install standalone preview ucs was newtx fontaxes xcolor dvisvgm psnfss symbol


      Whenever I try to compile a document, I get the error message:



      Font TS1/ntxtlf/m/n/12=ts1-qtmr at 12.0pt not loadable: Metric (TFM) file not found


      Here's one example document. This is generated by a tool (m.css), which is why it's using way more packages than it needs to. Modifying the docker environment is easy, but modifying the actual document is very difficult.



      documentclass[12pt,preview]{standalone}

      usepackage[utf8x]{inputenc}
      usepackage{amsmath}
      usepackage{amsfonts}
      usepackage{amssymb}
      usepackage{gensymb}
      usepackage{newtxtext}
      usepackage{xcolor}
      usepackage{array,graphicx}
      usepackage{booktabs}
      usepackage{pifont}

      begin{document}
      begin{preview}
      $O(2^{N})$
      end{preview}
      end{document}


      Note that my end goal here is to get the smallest Docker image that works to compile documents similar to that. Yes, I can apt-get install texlive-full and everything will work, but I'd rather figure out the minimal set of fonts and packages needed.



      More generally, is there a way to go from that error message to the name of the package I need and/or the fonts that are missing? TS1/ntxtlf/m/n/12=ts1-qtmr isn't very googleable.







      fonts installing installing-fonts font-metrics






      share|improve this question







      New contributor




      Robert Fraser 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




      Robert Fraser 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






      New contributor




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









      asked 3 hours ago









      Robert FraserRobert Fraser

      101




      101




      New contributor




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





      New contributor





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






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






















          1 Answer
          1






          active

          oldest

          votes


















          1














          TeX can not find ts1-qtmr.tfm



          If you issue the command



          tlmgr info ts1-qtmr.tfm


          then amongst other things it reports



          Packages containing files matching `ts1-qtmr.tfm':
          tex-gyre:
          texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm


          so



            tlmgr install tex-gyre


          would move things along.






          share|improve this answer
























          • Thanks! So basically take the last part of the message (12=ts1-qtmr), cut off the font size, add .tfm, then search that with tlmgr info? Is that a good general way to find the fonts?

            – Robert Fraser
            3 hours ago











          • @RobertFraser it's a good way to find anything tex related, if you had usepackage{wibble} and tex said it couldn't find wibble.sty then tlmgr info wibble.sty would reveal what texlive package contains that latex package.

            – David Carlisle
            2 hours ago











          • you don't need to add .tfm specifically, to see related entries including the target you could tlmgr info ts1-qtmr and also get the adjoining info for when you specify italics e.g. both texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm and non italic forms are in tex-gyre beware do not shorten to ts1 there are hundreds for example try tlmgr info ts1-qtm

            – KJO
            54 mins ago













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


          }
          });






          Robert Fraser 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%2f478275%2ftinytex-font-ts1-ntxtlf-m-n-12-ts1-qtmr-at-12-0pt-not-loadable-metric-tfm-fi%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          TeX can not find ts1-qtmr.tfm



          If you issue the command



          tlmgr info ts1-qtmr.tfm


          then amongst other things it reports



          Packages containing files matching `ts1-qtmr.tfm':
          tex-gyre:
          texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm


          so



            tlmgr install tex-gyre


          would move things along.






          share|improve this answer
























          • Thanks! So basically take the last part of the message (12=ts1-qtmr), cut off the font size, add .tfm, then search that with tlmgr info? Is that a good general way to find the fonts?

            – Robert Fraser
            3 hours ago











          • @RobertFraser it's a good way to find anything tex related, if you had usepackage{wibble} and tex said it couldn't find wibble.sty then tlmgr info wibble.sty would reveal what texlive package contains that latex package.

            – David Carlisle
            2 hours ago











          • you don't need to add .tfm specifically, to see related entries including the target you could tlmgr info ts1-qtmr and also get the adjoining info for when you specify italics e.g. both texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm and non italic forms are in tex-gyre beware do not shorten to ts1 there are hundreds for example try tlmgr info ts1-qtm

            – KJO
            54 mins ago


















          1














          TeX can not find ts1-qtmr.tfm



          If you issue the command



          tlmgr info ts1-qtmr.tfm


          then amongst other things it reports



          Packages containing files matching `ts1-qtmr.tfm':
          tex-gyre:
          texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm


          so



            tlmgr install tex-gyre


          would move things along.






          share|improve this answer
























          • Thanks! So basically take the last part of the message (12=ts1-qtmr), cut off the font size, add .tfm, then search that with tlmgr info? Is that a good general way to find the fonts?

            – Robert Fraser
            3 hours ago











          • @RobertFraser it's a good way to find anything tex related, if you had usepackage{wibble} and tex said it couldn't find wibble.sty then tlmgr info wibble.sty would reveal what texlive package contains that latex package.

            – David Carlisle
            2 hours ago











          • you don't need to add .tfm specifically, to see related entries including the target you could tlmgr info ts1-qtmr and also get the adjoining info for when you specify italics e.g. both texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm and non italic forms are in tex-gyre beware do not shorten to ts1 there are hundreds for example try tlmgr info ts1-qtm

            – KJO
            54 mins ago
















          1












          1








          1







          TeX can not find ts1-qtmr.tfm



          If you issue the command



          tlmgr info ts1-qtmr.tfm


          then amongst other things it reports



          Packages containing files matching `ts1-qtmr.tfm':
          tex-gyre:
          texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm


          so



            tlmgr install tex-gyre


          would move things along.






          share|improve this answer













          TeX can not find ts1-qtmr.tfm



          If you issue the command



          tlmgr info ts1-qtmr.tfm


          then amongst other things it reports



          Packages containing files matching `ts1-qtmr.tfm':
          tex-gyre:
          texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm


          so



            tlmgr install tex-gyre


          would move things along.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 3 hours ago









          David CarlisleDavid Carlisle

          493k4111371885




          493k4111371885













          • Thanks! So basically take the last part of the message (12=ts1-qtmr), cut off the font size, add .tfm, then search that with tlmgr info? Is that a good general way to find the fonts?

            – Robert Fraser
            3 hours ago











          • @RobertFraser it's a good way to find anything tex related, if you had usepackage{wibble} and tex said it couldn't find wibble.sty then tlmgr info wibble.sty would reveal what texlive package contains that latex package.

            – David Carlisle
            2 hours ago











          • you don't need to add .tfm specifically, to see related entries including the target you could tlmgr info ts1-qtmr and also get the adjoining info for when you specify italics e.g. both texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm and non italic forms are in tex-gyre beware do not shorten to ts1 there are hundreds for example try tlmgr info ts1-qtm

            – KJO
            54 mins ago





















          • Thanks! So basically take the last part of the message (12=ts1-qtmr), cut off the font size, add .tfm, then search that with tlmgr info? Is that a good general way to find the fonts?

            – Robert Fraser
            3 hours ago











          • @RobertFraser it's a good way to find anything tex related, if you had usepackage{wibble} and tex said it couldn't find wibble.sty then tlmgr info wibble.sty would reveal what texlive package contains that latex package.

            – David Carlisle
            2 hours ago











          • you don't need to add .tfm specifically, to see related entries including the target you could tlmgr info ts1-qtmr and also get the adjoining info for when you specify italics e.g. both texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm and non italic forms are in tex-gyre beware do not shorten to ts1 there are hundreds for example try tlmgr info ts1-qtm

            – KJO
            54 mins ago



















          Thanks! So basically take the last part of the message (12=ts1-qtmr), cut off the font size, add .tfm, then search that with tlmgr info? Is that a good general way to find the fonts?

          – Robert Fraser
          3 hours ago





          Thanks! So basically take the last part of the message (12=ts1-qtmr), cut off the font size, add .tfm, then search that with tlmgr info? Is that a good general way to find the fonts?

          – Robert Fraser
          3 hours ago













          @RobertFraser it's a good way to find anything tex related, if you had usepackage{wibble} and tex said it couldn't find wibble.sty then tlmgr info wibble.sty would reveal what texlive package contains that latex package.

          – David Carlisle
          2 hours ago





          @RobertFraser it's a good way to find anything tex related, if you had usepackage{wibble} and tex said it couldn't find wibble.sty then tlmgr info wibble.sty would reveal what texlive package contains that latex package.

          – David Carlisle
          2 hours ago













          you don't need to add .tfm specifically, to see related entries including the target you could tlmgr info ts1-qtmr and also get the adjoining info for when you specify italics e.g. both texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm and non italic forms are in tex-gyre beware do not shorten to ts1 there are hundreds for example try tlmgr info ts1-qtm

          – KJO
          54 mins ago







          you don't need to add .tfm specifically, to see related entries including the target you could tlmgr info ts1-qtmr and also get the adjoining info for when you specify italics e.g. both texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm and non italic forms are in tex-gyre beware do not shorten to ts1 there are hundreds for example try tlmgr info ts1-qtm

          – KJO
          54 mins ago












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










          draft saved

          draft discarded


















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













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












          Robert Fraser 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%2f478275%2ftinytex-font-ts1-ntxtlf-m-n-12-ts1-qtmr-at-12-0pt-not-loadable-metric-tfm-fi%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

          Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

          How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

          Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...