Is the below marked symbol available in any of the font?
Asked
Active
Viewed 1,445 times
7
Azor Ahai -him-
- 592
MadyYuvi
- 13,693
3 Answers
17
As commented by campa, below might be a solution.
\documentclass{article}
\usepackage{times}
\usepackage{tipa}
\begin{document}
p\^{e}l /pe\textlengthmark l/
\end{document}
citsahcots
- 7,992
9
In Unicode, it is triangular colon (U+02D0):
MWE
\documentclass{article}
\usepackage{fontspec}
\newcommand\ffontaname{DejaVu Serif}
\newcommand\ffontbname{Gentium Plus}
\newcommand\ffontcname{FreeMono}
\newcommand\ffontdname{Doulos SIL}
\newcommand\ffontename{FreeSerif}
\newcommand\ffontfname{Charis SIL}
\newfontfamily\ffonta{\ffontaname}
\newfontfamily\ffontb{\ffontbname}
\newfontfamily\ffontc{\ffontcname}
\newfontfamily\ffontd{\ffontdname}
\newfontfamily\ffonte{\ffontename}
\newfontfamily\ffontf{\ffontfname}
\newcommand\testtext{pêl /peːl/}
\begin{document}
\Large
\begin{tabular}{ll}
\ffontaname & \ffonta\testtext \
\ffontbname & \ffontb\testtext \
\ffontcname & \ffontc\testtext \
\ffontdname & \ffontd\testtext \
\ffontename & \ffonte\testtext \
\ffontfname & \ffontf\testtext \
\end{tabular}
\end{document}
Cicada
- 10,129
-
It would be great if you could add Doulos SIL & Charis SIL as they are specifically designed for IPA. – Niranjan Oct 19 '21 at 12:06
-
1
-
Thanks! Your answers always show a good range of available font-options. I find them very resourceful. – Niranjan Oct 19 '21 at 12:23
6
Adapting my answer at Universal definition of vertically mirrored triangles on top of each other
\documentclass{article}
\usepackage{scalerel,stackengine,tikz}
\usetikzlibrary{shapes.geometric}
\tikzset{
uptri/.style={fill,
draw,
ultra thick,
regular polygon,
regular polygon sides=3,
xscale=.7
}
}
\tikzset{
dntri/.style={fill,
draw,
shape border rotate=180,
ultra thick,
regular polygon,
regular polygon sides=3,
xscale=.7
}
}
\savestack\uptri{\tikz{\node[uptri]{}}}
\savestack\dntri{\tikz{\node[dntri]{}}}
\DeclareRobustCommand\intri{\kern.5pt\scalerel*{%
\stackengine{9pt}{\uptri}{\dntri}{O}{c}{F}{F}{S}}{e}\kern.5pt}
\begin{document}
p\^el /pe\intri l/
\end{document}
Steven B. Segletes
- 237,551




\textlengthmarkfrom thetipapackage, though the common Times-like fonts seem to differ slightly. – campa Aug 16 '21 at 11:19for suggesting aboutDetexify`... – MadyYuvi Aug 16 '21 at 12:32^^^^02d0– Cicada Aug 16 '21 at 12:41