How do I select the style of a lowercase gamma?












3














It is traditional in Physics to use a lowercase gamma that looks like a Y. Without going into the question of whether that tradition is wrong, how do I differentiate in Latex markup between a Gamma that looks like a Y and a Gamma with a loop?










share|improve this question
























  • What is a "gamma with a loop"?
    – Sebastiano
    10 hours ago










  • Do you mean gammaup? This is mainly a matter of the used font
    – Christian Hupfer
    9 hours ago












  • I think you try to distinguish btw. a small gamma (γ) and a capital one (Γ), which would be gamma and Gamma respectively.
    – Stefan Schroeder
    9 hours ago






  • 1




    @StefanSchroeder: there is no loop in Gamma ....
    – Christian Hupfer
    9 hours ago










  • haha, sure, but perhaps the question was just inaccurate. It's just a comment, mind you.
    – Stefan Schroeder
    9 hours ago
















3














It is traditional in Physics to use a lowercase gamma that looks like a Y. Without going into the question of whether that tradition is wrong, how do I differentiate in Latex markup between a Gamma that looks like a Y and a Gamma with a loop?










share|improve this question
























  • What is a "gamma with a loop"?
    – Sebastiano
    10 hours ago










  • Do you mean gammaup? This is mainly a matter of the used font
    – Christian Hupfer
    9 hours ago












  • I think you try to distinguish btw. a small gamma (γ) and a capital one (Γ), which would be gamma and Gamma respectively.
    – Stefan Schroeder
    9 hours ago






  • 1




    @StefanSchroeder: there is no loop in Gamma ....
    – Christian Hupfer
    9 hours ago










  • haha, sure, but perhaps the question was just inaccurate. It's just a comment, mind you.
    – Stefan Schroeder
    9 hours ago














3












3








3


1





It is traditional in Physics to use a lowercase gamma that looks like a Y. Without going into the question of whether that tradition is wrong, how do I differentiate in Latex markup between a Gamma that looks like a Y and a Gamma with a loop?










share|improve this question















It is traditional in Physics to use a lowercase gamma that looks like a Y. Without going into the question of whether that tradition is wrong, how do I differentiate in Latex markup between a Gamma that looks like a Y and a Gamma with a loop?







fonts symbols greek






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 6 hours ago









Mico

273k30369756




273k30369756










asked 10 hours ago









shmuel

455211




455211












  • What is a "gamma with a loop"?
    – Sebastiano
    10 hours ago










  • Do you mean gammaup? This is mainly a matter of the used font
    – Christian Hupfer
    9 hours ago












  • I think you try to distinguish btw. a small gamma (γ) and a capital one (Γ), which would be gamma and Gamma respectively.
    – Stefan Schroeder
    9 hours ago






  • 1




    @StefanSchroeder: there is no loop in Gamma ....
    – Christian Hupfer
    9 hours ago










  • haha, sure, but perhaps the question was just inaccurate. It's just a comment, mind you.
    – Stefan Schroeder
    9 hours ago


















  • What is a "gamma with a loop"?
    – Sebastiano
    10 hours ago










  • Do you mean gammaup? This is mainly a matter of the used font
    – Christian Hupfer
    9 hours ago












  • I think you try to distinguish btw. a small gamma (γ) and a capital one (Γ), which would be gamma and Gamma respectively.
    – Stefan Schroeder
    9 hours ago






  • 1




    @StefanSchroeder: there is no loop in Gamma ....
    – Christian Hupfer
    9 hours ago










  • haha, sure, but perhaps the question was just inaccurate. It's just a comment, mind you.
    – Stefan Schroeder
    9 hours ago
















What is a "gamma with a loop"?
– Sebastiano
10 hours ago




What is a "gamma with a loop"?
– Sebastiano
10 hours ago












Do you mean gammaup? This is mainly a matter of the used font
– Christian Hupfer
9 hours ago






Do you mean gammaup? This is mainly a matter of the used font
– Christian Hupfer
9 hours ago














I think you try to distinguish btw. a small gamma (γ) and a capital one (Γ), which would be gamma and Gamma respectively.
– Stefan Schroeder
9 hours ago




I think you try to distinguish btw. a small gamma (γ) and a capital one (Γ), which would be gamma and Gamma respectively.
– Stefan Schroeder
9 hours ago




1




1




@StefanSchroeder: there is no loop in Gamma ....
– Christian Hupfer
9 hours ago




@StefanSchroeder: there is no loop in Gamma ....
– Christian Hupfer
9 hours ago












haha, sure, but perhaps the question was just inaccurate. It's just a comment, mind you.
– Stefan Schroeder
9 hours ago




haha, sure, but perhaps the question was just inaccurate. It's just a comment, mind you.
– Stefan Schroeder
9 hours ago










2 Answers
2






active

oldest

votes


















5














Please choose one of these.



documentclass[a4paper]{article}
usepackage{tipa}
usepackage{upgreek}
begin{document}

begin{tabular}{rl}
tipa: & textbabygamma\
upgreek: & $upgamma$\
tipa: & textgamma\
tipa: & textramshorns\
default: & $gamma$\
end{tabular}

end{document}



enter image description here







share|improve this answer





























    1














    In the Modern Toolchain



    /usepackage{unicode-math}, then check the list of Unicode-math symbols for a font specimen of all the math symbols in a half-dozen Unicode math fonts. Pick a font you like.



    If you want to change only the Greek letters to another Unicode font, including any of the fonts on your desktop, add setmathfont{Latin Modern Math}, as your default, then setmathfont[range=it/{Greek,greek}, Scale=MatchLowercase]{Artemisia} (for example).



    In general, write your new documents for the new toolchain if you can, and the legacy toolchain if you have to.



    With Legacy Math Fonts



    Load isomath and pick one of the Greek alphabets it supports. This package and mathalfa give you the closest thing the NFSS ecosystem has to a standard interface for selecting the math alphabets of your choice.



    With Legacy Greek Text Fonts



    You can use LGR-encoded legacy NFSS fonts in math mode through mathastext. This example loads GFS Bodoni:



    usepackage[LGR,T1]{fontenc}
    usepackage{textcomp}
    usepackage[utf8]{inputenc}
    %usepackage{amsmath}
    usepackage{alphabeta}
    usepackage{gfsbodoni}
    usepackage[italic, LGRgreek, itgreek]{mathastext} % or upgreek, or upGreek.


    If you want to write actual Greek words, also load babel.



    If You Really Want Just that One Letter



    Look up the encoding of the legacy font whose symbol you want, and declare it as a symbol alphabet. This example typesets the Euler-Mascheroni constant with the γ from the font AMS Euler (upright, as per ISO style). The other symbols are taken from newpx, a clone of Palatino, another font by Hermann Zapf that goes well with his AMS Euler.



    documentclass[varwidth]{standalone}
    usepackage[T1]{fontenc}
    usepackage{textcomp}
    usepackage[utf8]{inputenc} % The default since 2018.
    usepackage{newpxtext, newpxmath}

    DeclareSymbolFont{eulerup}{U}{zeur}{m}{n}
    DeclareMathSymbol{upgamma}{mathord}{eulerup}{"0D}

    begin{document}
    begin{minipage}{10cm}
    [ upgamma = lim_{n to infty} left(
    - ln n + sum_{k=1}^n frac{1}{k}
    right) ]
    end{minipage}
    end{document}


    The Euler Constant



    By the way, if you like this setup, here is how you get it with the modern toolchain (after downloading Khaled Hosny’s font Neo Euler from GitHub):



    documentclass[varwidth]{standalone}
    usepackage[math-style=ISO]{unicode-math}

    defaultfontfeatures{Scale=MatchLowercase}
    setmainfont{TeX Gyre Pagella}[
    Scale = 1.0 ,
    Ligatures = {Common, TeX} ]
    setmonofont{Inconsolata}
    % A good matching sans serif, should you want one, is Optima. A free clone
    % is URW Classico.
    setmathfont{TeX Gyre Pagella Math}
    % Neo Euler by Khaled Hosny, based on AMS Euler by Hermann Zapf:
    % https://github.com/khaledhosny/euler-otf
    setmathfont[range=up/{latin,Latin,greek,Greek}]{Neo Euler}

    begin{document}
    begin{minipage}{10cm}
    [ upgamma = lim_{n to infty} left(
    - ln n + sum_{k=1}^n frac{1}{k}
    right) ]
    end{minipage}
    end{document}





    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%2f467452%2fhow-do-i-select-the-style-of-a-lowercase-gamma%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









      5














      Please choose one of these.



      documentclass[a4paper]{article}
      usepackage{tipa}
      usepackage{upgreek}
      begin{document}

      begin{tabular}{rl}
      tipa: & textbabygamma\
      upgreek: & $upgamma$\
      tipa: & textgamma\
      tipa: & textramshorns\
      default: & $gamma$\
      end{tabular}

      end{document}



      enter image description here







      share|improve this answer


























        5














        Please choose one of these.



        documentclass[a4paper]{article}
        usepackage{tipa}
        usepackage{upgreek}
        begin{document}

        begin{tabular}{rl}
        tipa: & textbabygamma\
        upgreek: & $upgamma$\
        tipa: & textgamma\
        tipa: & textramshorns\
        default: & $gamma$\
        end{tabular}

        end{document}



        enter image description here







        share|improve this answer
























          5












          5








          5






          Please choose one of these.



          documentclass[a4paper]{article}
          usepackage{tipa}
          usepackage{upgreek}
          begin{document}

          begin{tabular}{rl}
          tipa: & textbabygamma\
          upgreek: & $upgamma$\
          tipa: & textgamma\
          tipa: & textramshorns\
          default: & $gamma$\
          end{tabular}

          end{document}



          enter image description here







          share|improve this answer












          Please choose one of these.



          documentclass[a4paper]{article}
          usepackage{tipa}
          usepackage{upgreek}
          begin{document}

          begin{tabular}{rl}
          tipa: & textbabygamma\
          upgreek: & $upgamma$\
          tipa: & textgamma\
          tipa: & textramshorns\
          default: & $gamma$\
          end{tabular}

          end{document}



          enter image description here








          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 9 hours ago









          AboAmmar

          32.8k22882




          32.8k22882























              1














              In the Modern Toolchain



              /usepackage{unicode-math}, then check the list of Unicode-math symbols for a font specimen of all the math symbols in a half-dozen Unicode math fonts. Pick a font you like.



              If you want to change only the Greek letters to another Unicode font, including any of the fonts on your desktop, add setmathfont{Latin Modern Math}, as your default, then setmathfont[range=it/{Greek,greek}, Scale=MatchLowercase]{Artemisia} (for example).



              In general, write your new documents for the new toolchain if you can, and the legacy toolchain if you have to.



              With Legacy Math Fonts



              Load isomath and pick one of the Greek alphabets it supports. This package and mathalfa give you the closest thing the NFSS ecosystem has to a standard interface for selecting the math alphabets of your choice.



              With Legacy Greek Text Fonts



              You can use LGR-encoded legacy NFSS fonts in math mode through mathastext. This example loads GFS Bodoni:



              usepackage[LGR,T1]{fontenc}
              usepackage{textcomp}
              usepackage[utf8]{inputenc}
              %usepackage{amsmath}
              usepackage{alphabeta}
              usepackage{gfsbodoni}
              usepackage[italic, LGRgreek, itgreek]{mathastext} % or upgreek, or upGreek.


              If you want to write actual Greek words, also load babel.



              If You Really Want Just that One Letter



              Look up the encoding of the legacy font whose symbol you want, and declare it as a symbol alphabet. This example typesets the Euler-Mascheroni constant with the γ from the font AMS Euler (upright, as per ISO style). The other symbols are taken from newpx, a clone of Palatino, another font by Hermann Zapf that goes well with his AMS Euler.



              documentclass[varwidth]{standalone}
              usepackage[T1]{fontenc}
              usepackage{textcomp}
              usepackage[utf8]{inputenc} % The default since 2018.
              usepackage{newpxtext, newpxmath}

              DeclareSymbolFont{eulerup}{U}{zeur}{m}{n}
              DeclareMathSymbol{upgamma}{mathord}{eulerup}{"0D}

              begin{document}
              begin{minipage}{10cm}
              [ upgamma = lim_{n to infty} left(
              - ln n + sum_{k=1}^n frac{1}{k}
              right) ]
              end{minipage}
              end{document}


              The Euler Constant



              By the way, if you like this setup, here is how you get it with the modern toolchain (after downloading Khaled Hosny’s font Neo Euler from GitHub):



              documentclass[varwidth]{standalone}
              usepackage[math-style=ISO]{unicode-math}

              defaultfontfeatures{Scale=MatchLowercase}
              setmainfont{TeX Gyre Pagella}[
              Scale = 1.0 ,
              Ligatures = {Common, TeX} ]
              setmonofont{Inconsolata}
              % A good matching sans serif, should you want one, is Optima. A free clone
              % is URW Classico.
              setmathfont{TeX Gyre Pagella Math}
              % Neo Euler by Khaled Hosny, based on AMS Euler by Hermann Zapf:
              % https://github.com/khaledhosny/euler-otf
              setmathfont[range=up/{latin,Latin,greek,Greek}]{Neo Euler}

              begin{document}
              begin{minipage}{10cm}
              [ upgamma = lim_{n to infty} left(
              - ln n + sum_{k=1}^n frac{1}{k}
              right) ]
              end{minipage}
              end{document}





              share|improve this answer




























                1














                In the Modern Toolchain



                /usepackage{unicode-math}, then check the list of Unicode-math symbols for a font specimen of all the math symbols in a half-dozen Unicode math fonts. Pick a font you like.



                If you want to change only the Greek letters to another Unicode font, including any of the fonts on your desktop, add setmathfont{Latin Modern Math}, as your default, then setmathfont[range=it/{Greek,greek}, Scale=MatchLowercase]{Artemisia} (for example).



                In general, write your new documents for the new toolchain if you can, and the legacy toolchain if you have to.



                With Legacy Math Fonts



                Load isomath and pick one of the Greek alphabets it supports. This package and mathalfa give you the closest thing the NFSS ecosystem has to a standard interface for selecting the math alphabets of your choice.



                With Legacy Greek Text Fonts



                You can use LGR-encoded legacy NFSS fonts in math mode through mathastext. This example loads GFS Bodoni:



                usepackage[LGR,T1]{fontenc}
                usepackage{textcomp}
                usepackage[utf8]{inputenc}
                %usepackage{amsmath}
                usepackage{alphabeta}
                usepackage{gfsbodoni}
                usepackage[italic, LGRgreek, itgreek]{mathastext} % or upgreek, or upGreek.


                If you want to write actual Greek words, also load babel.



                If You Really Want Just that One Letter



                Look up the encoding of the legacy font whose symbol you want, and declare it as a symbol alphabet. This example typesets the Euler-Mascheroni constant with the γ from the font AMS Euler (upright, as per ISO style). The other symbols are taken from newpx, a clone of Palatino, another font by Hermann Zapf that goes well with his AMS Euler.



                documentclass[varwidth]{standalone}
                usepackage[T1]{fontenc}
                usepackage{textcomp}
                usepackage[utf8]{inputenc} % The default since 2018.
                usepackage{newpxtext, newpxmath}

                DeclareSymbolFont{eulerup}{U}{zeur}{m}{n}
                DeclareMathSymbol{upgamma}{mathord}{eulerup}{"0D}

                begin{document}
                begin{minipage}{10cm}
                [ upgamma = lim_{n to infty} left(
                - ln n + sum_{k=1}^n frac{1}{k}
                right) ]
                end{minipage}
                end{document}


                The Euler Constant



                By the way, if you like this setup, here is how you get it with the modern toolchain (after downloading Khaled Hosny’s font Neo Euler from GitHub):



                documentclass[varwidth]{standalone}
                usepackage[math-style=ISO]{unicode-math}

                defaultfontfeatures{Scale=MatchLowercase}
                setmainfont{TeX Gyre Pagella}[
                Scale = 1.0 ,
                Ligatures = {Common, TeX} ]
                setmonofont{Inconsolata}
                % A good matching sans serif, should you want one, is Optima. A free clone
                % is URW Classico.
                setmathfont{TeX Gyre Pagella Math}
                % Neo Euler by Khaled Hosny, based on AMS Euler by Hermann Zapf:
                % https://github.com/khaledhosny/euler-otf
                setmathfont[range=up/{latin,Latin,greek,Greek}]{Neo Euler}

                begin{document}
                begin{minipage}{10cm}
                [ upgamma = lim_{n to infty} left(
                - ln n + sum_{k=1}^n frac{1}{k}
                right) ]
                end{minipage}
                end{document}





                share|improve this answer


























                  1












                  1








                  1






                  In the Modern Toolchain



                  /usepackage{unicode-math}, then check the list of Unicode-math symbols for a font specimen of all the math symbols in a half-dozen Unicode math fonts. Pick a font you like.



                  If you want to change only the Greek letters to another Unicode font, including any of the fonts on your desktop, add setmathfont{Latin Modern Math}, as your default, then setmathfont[range=it/{Greek,greek}, Scale=MatchLowercase]{Artemisia} (for example).



                  In general, write your new documents for the new toolchain if you can, and the legacy toolchain if you have to.



                  With Legacy Math Fonts



                  Load isomath and pick one of the Greek alphabets it supports. This package and mathalfa give you the closest thing the NFSS ecosystem has to a standard interface for selecting the math alphabets of your choice.



                  With Legacy Greek Text Fonts



                  You can use LGR-encoded legacy NFSS fonts in math mode through mathastext. This example loads GFS Bodoni:



                  usepackage[LGR,T1]{fontenc}
                  usepackage{textcomp}
                  usepackage[utf8]{inputenc}
                  %usepackage{amsmath}
                  usepackage{alphabeta}
                  usepackage{gfsbodoni}
                  usepackage[italic, LGRgreek, itgreek]{mathastext} % or upgreek, or upGreek.


                  If you want to write actual Greek words, also load babel.



                  If You Really Want Just that One Letter



                  Look up the encoding of the legacy font whose symbol you want, and declare it as a symbol alphabet. This example typesets the Euler-Mascheroni constant with the γ from the font AMS Euler (upright, as per ISO style). The other symbols are taken from newpx, a clone of Palatino, another font by Hermann Zapf that goes well with his AMS Euler.



                  documentclass[varwidth]{standalone}
                  usepackage[T1]{fontenc}
                  usepackage{textcomp}
                  usepackage[utf8]{inputenc} % The default since 2018.
                  usepackage{newpxtext, newpxmath}

                  DeclareSymbolFont{eulerup}{U}{zeur}{m}{n}
                  DeclareMathSymbol{upgamma}{mathord}{eulerup}{"0D}

                  begin{document}
                  begin{minipage}{10cm}
                  [ upgamma = lim_{n to infty} left(
                  - ln n + sum_{k=1}^n frac{1}{k}
                  right) ]
                  end{minipage}
                  end{document}


                  The Euler Constant



                  By the way, if you like this setup, here is how you get it with the modern toolchain (after downloading Khaled Hosny’s font Neo Euler from GitHub):



                  documentclass[varwidth]{standalone}
                  usepackage[math-style=ISO]{unicode-math}

                  defaultfontfeatures{Scale=MatchLowercase}
                  setmainfont{TeX Gyre Pagella}[
                  Scale = 1.0 ,
                  Ligatures = {Common, TeX} ]
                  setmonofont{Inconsolata}
                  % A good matching sans serif, should you want one, is Optima. A free clone
                  % is URW Classico.
                  setmathfont{TeX Gyre Pagella Math}
                  % Neo Euler by Khaled Hosny, based on AMS Euler by Hermann Zapf:
                  % https://github.com/khaledhosny/euler-otf
                  setmathfont[range=up/{latin,Latin,greek,Greek}]{Neo Euler}

                  begin{document}
                  begin{minipage}{10cm}
                  [ upgamma = lim_{n to infty} left(
                  - ln n + sum_{k=1}^n frac{1}{k}
                  right) ]
                  end{minipage}
                  end{document}





                  share|improve this answer














                  In the Modern Toolchain



                  /usepackage{unicode-math}, then check the list of Unicode-math symbols for a font specimen of all the math symbols in a half-dozen Unicode math fonts. Pick a font you like.



                  If you want to change only the Greek letters to another Unicode font, including any of the fonts on your desktop, add setmathfont{Latin Modern Math}, as your default, then setmathfont[range=it/{Greek,greek}, Scale=MatchLowercase]{Artemisia} (for example).



                  In general, write your new documents for the new toolchain if you can, and the legacy toolchain if you have to.



                  With Legacy Math Fonts



                  Load isomath and pick one of the Greek alphabets it supports. This package and mathalfa give you the closest thing the NFSS ecosystem has to a standard interface for selecting the math alphabets of your choice.



                  With Legacy Greek Text Fonts



                  You can use LGR-encoded legacy NFSS fonts in math mode through mathastext. This example loads GFS Bodoni:



                  usepackage[LGR,T1]{fontenc}
                  usepackage{textcomp}
                  usepackage[utf8]{inputenc}
                  %usepackage{amsmath}
                  usepackage{alphabeta}
                  usepackage{gfsbodoni}
                  usepackage[italic, LGRgreek, itgreek]{mathastext} % or upgreek, or upGreek.


                  If you want to write actual Greek words, also load babel.



                  If You Really Want Just that One Letter



                  Look up the encoding of the legacy font whose symbol you want, and declare it as a symbol alphabet. This example typesets the Euler-Mascheroni constant with the γ from the font AMS Euler (upright, as per ISO style). The other symbols are taken from newpx, a clone of Palatino, another font by Hermann Zapf that goes well with his AMS Euler.



                  documentclass[varwidth]{standalone}
                  usepackage[T1]{fontenc}
                  usepackage{textcomp}
                  usepackage[utf8]{inputenc} % The default since 2018.
                  usepackage{newpxtext, newpxmath}

                  DeclareSymbolFont{eulerup}{U}{zeur}{m}{n}
                  DeclareMathSymbol{upgamma}{mathord}{eulerup}{"0D}

                  begin{document}
                  begin{minipage}{10cm}
                  [ upgamma = lim_{n to infty} left(
                  - ln n + sum_{k=1}^n frac{1}{k}
                  right) ]
                  end{minipage}
                  end{document}


                  The Euler Constant



                  By the way, if you like this setup, here is how you get it with the modern toolchain (after downloading Khaled Hosny’s font Neo Euler from GitHub):



                  documentclass[varwidth]{standalone}
                  usepackage[math-style=ISO]{unicode-math}

                  defaultfontfeatures{Scale=MatchLowercase}
                  setmainfont{TeX Gyre Pagella}[
                  Scale = 1.0 ,
                  Ligatures = {Common, TeX} ]
                  setmonofont{Inconsolata}
                  % A good matching sans serif, should you want one, is Optima. A free clone
                  % is URW Classico.
                  setmathfont{TeX Gyre Pagella Math}
                  % Neo Euler by Khaled Hosny, based on AMS Euler by Hermann Zapf:
                  % https://github.com/khaledhosny/euler-otf
                  setmathfont[range=up/{latin,Latin,greek,Greek}]{Neo Euler}

                  begin{document}
                  begin{minipage}{10cm}
                  [ upgamma = lim_{n to infty} left(
                  - ln n + sum_{k=1}^n frac{1}{k}
                  right) ]
                  end{minipage}
                  end{document}






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 1 hour ago

























                  answered 2 hours ago









                  Davislor

                  4,6271024




                  4,6271024






























                      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.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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%2f467452%2fhow-do-i-select-the-style-of-a-lowercase-gamma%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

                      What visual should I use to simply compare current year value vs last year in Power BI desktop

                      Alexandru Averescu

                      Trompette piccolo