Die Standard-\langle- und \rangle-Zeichen scheinen mir nicht spitz genug. Ich möchte auch nicht, dass sie zu spitz sind, wie in $<$. Ein Beispiel, das mir in den Sinn kommt, ist das folgende:
Mein Versuch war, es wie unten zu zeichnen,
\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}
Das Ergebnis ist wie folgt;
Wie mache ich das Tikzpicture mit der Zeilenhöhe kompatibel? Ich möchte, dass es die gleiche Größe wie \langle hat.
Antwort1
Anstelle der Zentimeter-Standardeinheit von TikZ können Sie eine Einheit relativ zur Schriftart verwenden, z ex
. B.:
\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}
Antwort2
Beginnen Sie mit diesem MWE:
\documentclass[margin=3pt]{standalone}
\usepackage[T1]{fontenc}
% \usepackage[math]{kurier}
% \usepackage{newpx}
\usepackage{newtx}
\begin{document}
$|\langle Tf, g \rangle|$
\end{document}
und dann durchgehenhttps://tug.org/FontCatalogue/mathfonts.htmlbis Sie eine Schriftart finden, die Ihnen gefällt.