3

I like the look of Bitstream-Charter; however, the parentheses are larger in math mode than in text, which I find unattractive.

A MWE

\documentclass[10pt]{article}
\usepackage[bitstream-charter]{mathdesign}
\usepackage[T1]{fontenc}
\begin{document}
The mass as a function of time ($M(t)$).
\end{document}

yields:

different sized parenthesis

Is there a workaround to get the text parentheses to be the same size as those in math mode?

2
  • Welcome! There is also XCharter but it doesn't seem much different, even with the scaling option recommended in the documentation. Commented Oct 9, 2015 at 2:38
  • 3
    The parentheses in the mathdesign math font for Charter are apparently badly designed. :-( Commented Oct 9, 2015 at 9:06

1 Answer 1

3

As noted by @egreg, the parentheses in the math font for charter used by mathdesign appear to be the issue. Interestingly, the utopia font option in mathdesign behaves similarly.

\documentclass[10pt]{article}
\usepackage[utopia]{mathdesign}
\usepackage[T1]{fontenc}

\begin{document}
The mass as a function of time ($M(t)$).
\end{document}

yields:

enter image description here

I corrected the problem for Bitstream-Charter by replacing the delimiters with the appropriate characters in the mdbch font.

\documentclass[10pt]{article}
\usepackage[T1]{fontenc}
\usepackage[bitstream-charter]{mathdesign}

\AtBeginDocument{%
  \DeclareSymbolFont{bch}{T1}{\rmdefault}{m}{n}%
  \DeclareMathDelimiter{(}{\mathopen}{bch}{'050}{largesymbols}{"00}%
  \DeclareMathDelimiter{)}{\mathopen}{bch}{'051}{largesymbols}{"01}%
}

\begin{document}
The mass as a function of time ($M(t)$).
\end{document}

enter image description here

3
  • 2
    I took the liberty of fixing your code so the parentheses are really the same Commented Oct 9, 2015 at 21:36
  • Thank you @egreg! I didn't realize there was more than one version of the normal bitstream charter font. Looks great! Commented Oct 9, 2015 at 22:02
  • Yes, the family name is mdbch Commented Oct 9, 2015 at 22:04

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.