How do I change the font of a graphic in latex?Latex: adding text inform of a graphicHow to change the font...

Examples of non trivial equivalence relations , I mean equivalence relations without the expression " same ... as" in their definition?

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

Don’t seats that recline flat defeat the purpose of having seatbelts?

How come there are so many candidates for the 2020 Democratic party presidential nomination?

Is there an official tutorial for installing Ubuntu 18.04+ on a device with an SSD and an additional internal hard drive?

What happened to Captain America in Endgame?

To say I met a person for the first time

Why was Germany not as successful as other Europeans in establishing overseas colonies?

Please, smoke with good manners

With a Canadian student visa, can I spend a night at Vancouver before continuing to Toronto?

How to make a pipeline wait for end-of-file or stop after an error?

Why other Westeros houses don't use wildfire?

Rivers without rain

What was the first Intel x86 processor with "Base + Index * Scale + Displacement" addressing mode?

Examples of subgroups where it's nontrivial to show closure under multiplication?

Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?

What does KSP mean?

Error message with tabularx

Why do Computer Science majors learn Calculus?

What are the real rules for choosing between the simple past and past perfect when both actions are in the past?

what is the sudo password for a --disabled-password user

Does Gita support doctrine of eternal cycle of birth and death for evil people?

How to solve constants out of the internal energy equation?

Why does academia still use scientific journals and not peer-reviewed government funded alternatives?



How do I change the font of a graphic in latex?


Latex: adding text inform of a graphicHow to change the font for metauml?Graphic tool in LaTeX?Milestone graphic in TikZHow to import metapost to .tex properly and how to do it without importingHow to change colors in state machine diagram?why change graphic when uncomment ymin?Minipage: How to change the size of graphic and tableGraphic in Latex documentHow to set stereotype on class parameter or method in MetaPOST













0















I started working on a simple UML diagram for a final Java project. I started by reading a lot on the metauml github repository and this example in particular. As you can see by the attached image, the serif font looks really out of place within the UML diagram. I'm able to highlight and copy the text within the document, so I assume I can change the font. How do you recommend I do this?



TLDR: How do I change the font within an includegraphics{...} statement?



My metapost document:



input metauml;
beginfig(1);
Class.U("User")
("- userId : int")
("+ getUserId : int");

Class.A("App")
("- appId : int")
("+ getAppId : int");

topToBottom(45)(U, A);
drawObject(U);
drawObject(A);
endfig;
end;


My latex document:



documentclass{article}
usepackage[pdftex]{graphicx}
DeclareGraphicsRule{*}{mps}{*}{}

begin{document}
includegraphics{example.1}
end{document}


The output of mpost example.mp && pdflatex example.tex:



Simple UML Diagram inside latex










share|improve this question







New contributor




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

























    0















    I started working on a simple UML diagram for a final Java project. I started by reading a lot on the metauml github repository and this example in particular. As you can see by the attached image, the serif font looks really out of place within the UML diagram. I'm able to highlight and copy the text within the document, so I assume I can change the font. How do you recommend I do this?



    TLDR: How do I change the font within an includegraphics{...} statement?



    My metapost document:



    input metauml;
    beginfig(1);
    Class.U("User")
    ("- userId : int")
    ("+ getUserId : int");

    Class.A("App")
    ("- appId : int")
    ("+ getAppId : int");

    topToBottom(45)(U, A);
    drawObject(U);
    drawObject(A);
    endfig;
    end;


    My latex document:



    documentclass{article}
    usepackage[pdftex]{graphicx}
    DeclareGraphicsRule{*}{mps}{*}{}

    begin{document}
    includegraphics{example.1}
    end{document}


    The output of mpost example.mp && pdflatex example.tex:



    Simple UML Diagram inside latex










    share|improve this question







    New contributor




    William 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 started working on a simple UML diagram for a final Java project. I started by reading a lot on the metauml github repository and this example in particular. As you can see by the attached image, the serif font looks really out of place within the UML diagram. I'm able to highlight and copy the text within the document, so I assume I can change the font. How do you recommend I do this?



      TLDR: How do I change the font within an includegraphics{...} statement?



      My metapost document:



      input metauml;
      beginfig(1);
      Class.U("User")
      ("- userId : int")
      ("+ getUserId : int");

      Class.A("App")
      ("- appId : int")
      ("+ getAppId : int");

      topToBottom(45)(U, A);
      drawObject(U);
      drawObject(A);
      endfig;
      end;


      My latex document:



      documentclass{article}
      usepackage[pdftex]{graphicx}
      DeclareGraphicsRule{*}{mps}{*}{}

      begin{document}
      includegraphics{example.1}
      end{document}


      The output of mpost example.mp && pdflatex example.tex:



      Simple UML Diagram inside latex










      share|improve this question







      New contributor




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












      I started working on a simple UML diagram for a final Java project. I started by reading a lot on the metauml github repository and this example in particular. As you can see by the attached image, the serif font looks really out of place within the UML diagram. I'm able to highlight and copy the text within the document, so I assume I can change the font. How do you recommend I do this?



      TLDR: How do I change the font within an includegraphics{...} statement?



      My metapost document:



      input metauml;
      beginfig(1);
      Class.U("User")
      ("- userId : int")
      ("+ getUserId : int");

      Class.A("App")
      ("- appId : int")
      ("+ getAppId : int");

      topToBottom(45)(U, A);
      drawObject(U);
      drawObject(A);
      endfig;
      end;


      My latex document:



      documentclass{article}
      usepackage[pdftex]{graphicx}
      DeclareGraphicsRule{*}{mps}{*}{}

      begin{document}
      includegraphics{example.1}
      end{document}


      The output of mpost example.mp && pdflatex example.tex:



      Simple UML Diagram inside latex







      graphics metapost metauml






      share|improve this question







      New contributor




      William 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




      William 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




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









      asked 13 mins ago









      WilliamWilliam

      1




      1




      New contributor




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





      New contributor





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






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






















          0






          active

          oldest

          votes












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


          }
          });






          William 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%2f487991%2fhow-do-i-change-the-font-of-a-graphic-in-latex%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








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










          draft saved

          draft discarded


















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













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












          William 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%2f487991%2fhow-do-i-change-the-font-of-a-graphic-in-latex%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...

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

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