2

I'm using the package tipa and I'm trying to write \textg with bold letters. I tried \textbf{\textg} but it did not work.

Miguel
  • 381
  • 3
    i'm not a user of tipa, but it's my understanding that the glyph commands shouldn't be entered as math (surrounded by $ signs), but within the scope of \textipa{...}. (there are others here more qualified to answer, but they don't seem to be active just now.) – barbara beeton May 06 '16 at 19:31
  • @barbarabeeton You are right, but now I want to know how can I write \textg with bold letters =( – Miguel May 06 '16 at 19:45
  • this is what the manual says: {\fontseries{b}\selectfont \textipa{...}}. – barbara beeton May 06 '16 at 20:23
  • Is this question just about using \textg only (in bold letters) whereas any other symbol/character is not using tipa fonts? \textbf{\textg} provides a bold letter for me –  May 06 '16 at 20:31
  • I put \textbf{\textg} but this is how it looks http://puu.sh/oIHhn/3cdbbaf30b.png – Miguel May 06 '16 at 20:33
  • Try \textg \textbf{\textg} and compare the two g characters. I've got the impression from that linked image that it is bold –  May 06 '16 at 20:36
  • This is how it looks http://puu.sh/oIHVe/d726ecc2cb.png I used exactly \textg \textbf{\textg} – Miguel May 06 '16 at 20:44

1 Answers1

1

Just for demonstration purposes: \textg is not bold, \textbf{\textg} is bold:

\documentclass{article}

\usepackage{tipa}
\begin{document}

\huge \textg \textbf{\textg}

\end{document}

enter image description here