如何在 LaTeX 中创建此徽标

如何在 LaTeX 中创建此徽标

在此处输入图片描述

我使用 LaTeX 和 powerpoint 的组合制作了此作品。我想知道如何仅使用 LaTeX 代码制作它?

答案1

欢迎来到 TeX.SE!这是一个可能性。

\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}

在此处输入图片描述

或者

\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}

在此处输入图片描述

请考虑在您以后的帖子中向我们展示您尝试过的方法。

答案2

图像模式:

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

\newcommand{\hinth}{%
  \begingroup
  \sbox0{$\displaystyle\int$}%
  \setlength{\unitlength}{\dimexpr\wd0+\dp0}
  \begin{picture}(1.4,1.4)
  \put(0.7,0.7){\makebox(0,0){$\displaystyle\int$}}
  \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}

在此处输入图片描述

相关内容