How can I create this Logo in LaTeX [duplicate]












0
















This question already has an answer here:




  • Creating Logo with Fancy Font

    3 answers




enter image description here



I made this using a combination of LaTeX and powerpoint. I was wondering how it can be made purely in LaTeX code?










share|improve this question















marked as duplicate by Werner, flav, Stefan Pinnow, Kurt, TeXnician Jan 9 at 8:56


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.











  • 4





    Welcome to TeX.SE! Please show us -- as usual here -- the short compilable tex code you have so far ...

    – Kurt
    Jan 9 at 1:33
















0
















This question already has an answer here:




  • Creating Logo with Fancy Font

    3 answers




enter image description here



I made this using a combination of LaTeX and powerpoint. I was wondering how it can be made purely in LaTeX code?










share|improve this question















marked as duplicate by Werner, flav, Stefan Pinnow, Kurt, TeXnician Jan 9 at 8:56


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.











  • 4





    Welcome to TeX.SE! Please show us -- as usual here -- the short compilable tex code you have so far ...

    – Kurt
    Jan 9 at 1:33














0












0








0









This question already has an answer here:




  • Creating Logo with Fancy Font

    3 answers




enter image description here



I made this using a combination of LaTeX and powerpoint. I was wondering how it can be made purely in LaTeX code?










share|improve this question

















This question already has an answer here:




  • Creating Logo with Fancy Font

    3 answers




enter image description here



I made this using a combination of LaTeX and powerpoint. I was wondering how it can be made purely in LaTeX code?





This question already has an answer here:




  • Creating Logo with Fancy Font

    3 answers








tikz-pgf






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 9 at 6:26









Martin Scharrer

200k45635818




200k45635818










asked Jan 9 at 1:22









Humza HussainiHumza Hussaini

62




62




marked as duplicate by Werner, flav, Stefan Pinnow, Kurt, TeXnician Jan 9 at 8:56


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by Werner, flav, Stefan Pinnow, Kurt, TeXnician Jan 9 at 8:56


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 4





    Welcome to TeX.SE! Please show us -- as usual here -- the short compilable tex code you have so far ...

    – Kurt
    Jan 9 at 1:33














  • 4





    Welcome to TeX.SE! Please show us -- as usual here -- the short compilable tex code you have so far ...

    – Kurt
    Jan 9 at 1:33








4




4





Welcome to TeX.SE! Please show us -- as usual here -- the short compilable tex code you have so far ...

– Kurt
Jan 9 at 1:33





Welcome to TeX.SE! Please show us -- as usual here -- the short compilable tex code you have so far ...

– Kurt
Jan 9 at 1:33










2 Answers
2






active

oldest

votes


















9














Welcome to TeX.SE! Here is a possibility.



documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{fit}
usepackage{amssymb}
begin{document}
begin{tikzpicture}
node[yscale=2,xscale=1.2,rotate=-5] (int) {$int$};
node (H1) at ([yshift=-1mm,xshift=-1mm]int.east) {$mathbb{H}$};
node (H2) at ([yshift=1mm,xshift=1mm]int.west) {$mathbb{H}$};
node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-1pt]{};
end{tikzpicture}
end{document}


enter image description here



Or



documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{fit}
usepackage{amssymb}
begin{document}
begin{tikzpicture}
node[yscale=2.4,xscale=1.2,rotate=-10] (int) {$int$};
node (H1) at ([yshift=-1mm,xshift=-2pt]int.east) {$mathbb{H}$};
node (H2) at ([yshift=1mm,xshift=2pt]int.west) {$mathbb{H}$};
node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-5pt]{};
end{tikzpicture}
end{document}


enter image description here



Please consider showing us what you tried in your future posts.






share|improve this answer

































    4














    Picture mode:



    documentclass{article}
    usepackage{amsfonts}
    usepackage{pict2e}

    newcommand{hinth}{%
    begingroup
    sbox0{$displaystyleint$}%
    setlength{unitlength}{dimexprwd0+dp0}
    begin{picture}(1.4,1.4)
    put(0.7,0.7){makebox(0,0){$displaystyleint$}}
    put(0.7,0.7){circle{1.4}}
    put(0.4,0.9){makebox(0,0){$mathbb{H}$}}
    put(1,0.5){makebox(0,0){$mathbb{H}$}}
    end{picture}%
    endgroup
    }

    begin{document}

    hinth

    end{document}


    enter image description here






    share|improve this answer






























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      9














      Welcome to TeX.SE! Here is a possibility.



      documentclass[tikz,border=3.14mm]{standalone}
      usetikzlibrary{fit}
      usepackage{amssymb}
      begin{document}
      begin{tikzpicture}
      node[yscale=2,xscale=1.2,rotate=-5] (int) {$int$};
      node (H1) at ([yshift=-1mm,xshift=-1mm]int.east) {$mathbb{H}$};
      node (H2) at ([yshift=1mm,xshift=1mm]int.west) {$mathbb{H}$};
      node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-1pt]{};
      end{tikzpicture}
      end{document}


      enter image description here



      Or



      documentclass[tikz,border=3.14mm]{standalone}
      usetikzlibrary{fit}
      usepackage{amssymb}
      begin{document}
      begin{tikzpicture}
      node[yscale=2.4,xscale=1.2,rotate=-10] (int) {$int$};
      node (H1) at ([yshift=-1mm,xshift=-2pt]int.east) {$mathbb{H}$};
      node (H2) at ([yshift=1mm,xshift=2pt]int.west) {$mathbb{H}$};
      node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-5pt]{};
      end{tikzpicture}
      end{document}


      enter image description here



      Please consider showing us what you tried in your future posts.






      share|improve this answer






























        9














        Welcome to TeX.SE! Here is a possibility.



        documentclass[tikz,border=3.14mm]{standalone}
        usetikzlibrary{fit}
        usepackage{amssymb}
        begin{document}
        begin{tikzpicture}
        node[yscale=2,xscale=1.2,rotate=-5] (int) {$int$};
        node (H1) at ([yshift=-1mm,xshift=-1mm]int.east) {$mathbb{H}$};
        node (H2) at ([yshift=1mm,xshift=1mm]int.west) {$mathbb{H}$};
        node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-1pt]{};
        end{tikzpicture}
        end{document}


        enter image description here



        Or



        documentclass[tikz,border=3.14mm]{standalone}
        usetikzlibrary{fit}
        usepackage{amssymb}
        begin{document}
        begin{tikzpicture}
        node[yscale=2.4,xscale=1.2,rotate=-10] (int) {$int$};
        node (H1) at ([yshift=-1mm,xshift=-2pt]int.east) {$mathbb{H}$};
        node (H2) at ([yshift=1mm,xshift=2pt]int.west) {$mathbb{H}$};
        node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-5pt]{};
        end{tikzpicture}
        end{document}


        enter image description here



        Please consider showing us what you tried in your future posts.






        share|improve this answer




























          9












          9








          9







          Welcome to TeX.SE! Here is a possibility.



          documentclass[tikz,border=3.14mm]{standalone}
          usetikzlibrary{fit}
          usepackage{amssymb}
          begin{document}
          begin{tikzpicture}
          node[yscale=2,xscale=1.2,rotate=-5] (int) {$int$};
          node (H1) at ([yshift=-1mm,xshift=-1mm]int.east) {$mathbb{H}$};
          node (H2) at ([yshift=1mm,xshift=1mm]int.west) {$mathbb{H}$};
          node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-1pt]{};
          end{tikzpicture}
          end{document}


          enter image description here



          Or



          documentclass[tikz,border=3.14mm]{standalone}
          usetikzlibrary{fit}
          usepackage{amssymb}
          begin{document}
          begin{tikzpicture}
          node[yscale=2.4,xscale=1.2,rotate=-10] (int) {$int$};
          node (H1) at ([yshift=-1mm,xshift=-2pt]int.east) {$mathbb{H}$};
          node (H2) at ([yshift=1mm,xshift=2pt]int.west) {$mathbb{H}$};
          node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-5pt]{};
          end{tikzpicture}
          end{document}


          enter image description here



          Please consider showing us what you tried in your future posts.






          share|improve this answer















          Welcome to TeX.SE! Here is a possibility.



          documentclass[tikz,border=3.14mm]{standalone}
          usetikzlibrary{fit}
          usepackage{amssymb}
          begin{document}
          begin{tikzpicture}
          node[yscale=2,xscale=1.2,rotate=-5] (int) {$int$};
          node (H1) at ([yshift=-1mm,xshift=-1mm]int.east) {$mathbb{H}$};
          node (H2) at ([yshift=1mm,xshift=1mm]int.west) {$mathbb{H}$};
          node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-1pt]{};
          end{tikzpicture}
          end{document}


          enter image description here



          Or



          documentclass[tikz,border=3.14mm]{standalone}
          usetikzlibrary{fit}
          usepackage{amssymb}
          begin{document}
          begin{tikzpicture}
          node[yscale=2.4,xscale=1.2,rotate=-10] (int) {$int$};
          node (H1) at ([yshift=-1mm,xshift=-2pt]int.east) {$mathbb{H}$};
          node (H2) at ([yshift=1mm,xshift=2pt]int.west) {$mathbb{H}$};
          node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-5pt]{};
          end{tikzpicture}
          end{document}


          enter image description here



          Please consider showing us what you tried in your future posts.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 9 at 1:55

























          answered Jan 9 at 1:40









          marmotmarmot

          91.8k4107200




          91.8k4107200























              4














              Picture mode:



              documentclass{article}
              usepackage{amsfonts}
              usepackage{pict2e}

              newcommand{hinth}{%
              begingroup
              sbox0{$displaystyleint$}%
              setlength{unitlength}{dimexprwd0+dp0}
              begin{picture}(1.4,1.4)
              put(0.7,0.7){makebox(0,0){$displaystyleint$}}
              put(0.7,0.7){circle{1.4}}
              put(0.4,0.9){makebox(0,0){$mathbb{H}$}}
              put(1,0.5){makebox(0,0){$mathbb{H}$}}
              end{picture}%
              endgroup
              }

              begin{document}

              hinth

              end{document}


              enter image description here






              share|improve this answer




























                4














                Picture mode:



                documentclass{article}
                usepackage{amsfonts}
                usepackage{pict2e}

                newcommand{hinth}{%
                begingroup
                sbox0{$displaystyleint$}%
                setlength{unitlength}{dimexprwd0+dp0}
                begin{picture}(1.4,1.4)
                put(0.7,0.7){makebox(0,0){$displaystyleint$}}
                put(0.7,0.7){circle{1.4}}
                put(0.4,0.9){makebox(0,0){$mathbb{H}$}}
                put(1,0.5){makebox(0,0){$mathbb{H}$}}
                end{picture}%
                endgroup
                }

                begin{document}

                hinth

                end{document}


                enter image description here






                share|improve this answer


























                  4












                  4








                  4







                  Picture mode:



                  documentclass{article}
                  usepackage{amsfonts}
                  usepackage{pict2e}

                  newcommand{hinth}{%
                  begingroup
                  sbox0{$displaystyleint$}%
                  setlength{unitlength}{dimexprwd0+dp0}
                  begin{picture}(1.4,1.4)
                  put(0.7,0.7){makebox(0,0){$displaystyleint$}}
                  put(0.7,0.7){circle{1.4}}
                  put(0.4,0.9){makebox(0,0){$mathbb{H}$}}
                  put(1,0.5){makebox(0,0){$mathbb{H}$}}
                  end{picture}%
                  endgroup
                  }

                  begin{document}

                  hinth

                  end{document}


                  enter image description here






                  share|improve this answer













                  Picture mode:



                  documentclass{article}
                  usepackage{amsfonts}
                  usepackage{pict2e}

                  newcommand{hinth}{%
                  begingroup
                  sbox0{$displaystyleint$}%
                  setlength{unitlength}{dimexprwd0+dp0}
                  begin{picture}(1.4,1.4)
                  put(0.7,0.7){makebox(0,0){$displaystyleint$}}
                  put(0.7,0.7){circle{1.4}}
                  put(0.4,0.9){makebox(0,0){$mathbb{H}$}}
                  put(1,0.5){makebox(0,0){$mathbb{H}$}}
                  end{picture}%
                  endgroup
                  }

                  begin{document}

                  hinth

                  end{document}


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 9 at 8:56









                  egregegreg

                  712k8618933179




                  712k8618933179















                      Popular posts from this blog

                      How to send String Array data to Server using php in android

                      Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                      Is anime1.com a legal site for watching anime?