$\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마음에 드는 글꼴을 찾을 때까지

관련 정보