Skip to content

Commit 9854421

Browse files
committed
[localization] Change bold-slanted font to simple italics. This removes
LaTeX "missing font" warning and is also perfectly sufficient to mark "variable code". Apply consistently to a second use case, too.
1 parent 9ff5696 commit 9854421

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/locales.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,14 +1006,14 @@
10061006

10071007
\pnum
10081008
Each of these functions
1009-
\tcode{is\textbf{\textit{F}}}
1009+
\tcode{is\textit{F}}
10101010
returns the result of the expression:
10111011

10121012
\begin{codeblock}
1013-
use_facet< ctype<charT> >(loc).is(ctype_base::@\textbf{\textit{F}}@, c)
1013+
use_facet< ctype<charT> >(loc).is(ctype_base::@\textit{F}@, c)
10141014
\end{codeblock}
10151015

1016-
where \textbf{\textit{F}} is the
1016+
where \tcode{\textit{F}} is the
10171017
\tcode{ctype_base::mask}
10181018
value corresponding to that function~(\ref{category.ctype}).\footnote{When
10191019
used in a loop, it is faster to cache the
@@ -1514,7 +1514,7 @@
15141514
namespace std {
15151515
class ctype_base {
15161516
public:
1517-
typedef @\textbf{\textit{T}}@ mask;
1517+
typedef @\textit{T}@ mask;
15181518

15191519
// numeric values are for exposition only.
15201520
static const mask space = 1 << 0;
@@ -5289,10 +5289,10 @@
52895289
\end{codeblock}
52905290

52915291
\pnum
5292-
Each of these functions \tcode{F}
5292+
Each of these functions \tcode{\textit{F}}
52935293
returns the result of calling the corresponding
52945294
virtual member function
5295-
\tcode{do_}\textbf\textit{{F}}\tcode{()}.
5295+
\tcode{do_\textit{F}()}.
52965296

52975297
\rSec4[locale.moneypunct.virtuals]{\tcode{moneypunct} virtual functions}
52985298

0 commit comments

Comments
 (0)