$\langle$ と $\rangle$ の角度をより鋭角にするにはどうすればよいでしょうか?

$\langle$ と $\rangle$ の角度をより鋭角にするにはどうすればよいでしょうか?

標準の \langle と \rangle は、私には鋭角さが足りないように思えます。また、$<$ のように鋭角になりすぎるのも避けたいです。次のような例を思い浮かべます。

ここに画像の説明を入力してください

私の試みは以下のように描くことでした。

\documentclass{article}
\usepackage{tikz}

\newcommand{\customlangle}{
\begin{tikzpicture}
    \draw coordinate (a) at (.35,1);
    \draw coordinate (b) at (0,.5);
    \draw coordinate (c) at (.35,0);
    \draw (a) -- (b) -- (c);
\end{tikzpicture}%
}
\newcommand{\customrangle}{
\begin{tikzpicture}
    \draw coordinate (a) at (0,1);
    \draw coordinate (b) at (.35,.5);
    \draw coordinate (c) at (0,0);
    \draw (a) -- (b) -- (c);
\end{tikzpicture}%
}

\begin{document}

This is a line of text with a custom angle symbol: \customlangle \customrangle

\end{document}

結果は以下のようになります。

ここに画像の説明を入力してください

tikzpicture を行の高さと互換性のあるものにするにはどうすればよいでしょうか? \langle と同じサイズにしたいと思います。

答え1

TikZ のデフォルトの単位であるセンチメートルの代わりに、フォントに相対的な単位を使用することもできます。例ex:

\documentclass[varwidth]{standalone}
\usepackage{tikz}

\newcommand{\customlangle}{%
\begin{tikzpicture}[baseline=0.5ex]
    \draw coordinate (a) at (.35ex,2.2ex);
    \draw coordinate (b) at (0,1.1ex);
    \draw coordinate (c) at (.35ex,0);
    \draw[line width=0.12ex,line cap=round] (a) -- (b) -- (c);
\end{tikzpicture}%
}
\newcommand{\customrangle}{%
\begin{tikzpicture}[baseline=0.5ex]
    \draw coordinate (a) at (0,2.2ex);
    \draw coordinate (b) at (.35ex,1.1ex);
    \draw coordinate (c) at (0,0);
    \draw[line width=0.12ex,line cap=round] (a) -- (b) -- (c);
\end{tikzpicture}%
}

\begin{document}

Symbol: $\langle$ \customlangle \customrangle

\Huge Symbol  \customlangle \customrangle

\end{document}

ここに画像の説明を入力してください

答え2

この MWE から始めましょう:

\documentclass[margin=3pt]{standalone}
\usepackage[T1]{fontenc}
% \usepackage[math]{kurier}
% \usepackage{newpx}
\usepackage{newtx}
\begin{document}
$|\langle Tf, g \rangle|$
\end{document}

|<Tf,g>|

そして、https://tug.org/FontCatalogue/mathfonts.html気に入ったフォントが見つかるまで。

関連情報