How can I create this Logo in LaTeX [duplicate]
This question already has an answer here:
Creating Logo with Fancy Font
3 answers

I made this using a combination of LaTeX and powerpoint. I was wondering how it can be made purely in LaTeX code?
tikz-pgf
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.
add a comment |
This question already has an answer here:
Creating Logo with Fancy Font
3 answers

I made this using a combination of LaTeX and powerpoint. I was wondering how it can be made purely in LaTeX code?
tikz-pgf
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
add a comment |
This question already has an answer here:
Creating Logo with Fancy Font
3 answers

I made this using a combination of LaTeX and powerpoint. I was wondering how it can be made purely in LaTeX code?
tikz-pgf
This question already has an answer here:
Creating Logo with Fancy Font
3 answers

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
tikz-pgf
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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}

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}

Please consider showing us what you tried in your future posts.
add a comment |
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}

add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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}

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}

Please consider showing us what you tried in your future posts.
add a comment |
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}

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}

Please consider showing us what you tried in your future posts.
add a comment |
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}

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}

Please consider showing us what you tried in your future posts.
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}

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}

Please consider showing us what you tried in your future posts.
edited Jan 9 at 1:55
answered Jan 9 at 1:40
marmotmarmot
91.8k4107200
91.8k4107200
add a comment |
add a comment |
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}

add a comment |
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}

add a comment |
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}

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}

answered Jan 9 at 8:56
egregegreg
712k8618933179
712k8618933179
add a comment |
add a comment |
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