Hello, Oleg.
On Fri, Apr 23, 2010 at 6:21 AM, Oleg Lobachev <
oleg.l...@gmail.com> wrote:
> Hello all,
>
> I know that in theory the acronyms in uppercase (like PDF, FBI, etc)
> should either get better inter-letter spacing or be typeset in
> smallcaps.
>
> I have tried the following code with T-L and I like the result of
> \textsc{\uppercase{PDF}} most. Note, that I load the microtype
> package.
>
> So, 1) am I doing something wrong in using T-L, microtype or both? 2)
> Am I doing everything right, but my aesthetics is spoiled by non-
> letterspaced acronyms in everyday life?
In addition to what Dan has already mentioned, here are a few more
notes for you.
The tufte-book class doesn't support the 11pt option. The only font
sizes I've defined are based on the 10pt option. So specifying 11pt
won't have any appreciable effect.
The \textsc command is redefined in the tufte-book class to add a bit
of extra spacing automatically. It uses the same spacing as the
\smallcaps command. Since you prefer that spacing, you could set the
\allcaps command to use it as well. in the preamble of your document,
add these line:
\let\allcapsspacing\smallcapsspacing% use same spacing for
\smallcaps and \allcaps
\renewcommand{\allcaps}[1]{\allcapsspacing{\MakeTextUppercase{#1}}}%
Fix a bug in the T-L classes
(The second line fixes a bug in the T-L classes that I just noticed.
The spacing for the \allcaps command was hard-coded, but it should use
the \allcapsspacing instead. I'll fix this for the next release.)
Then \textsc, \smallcaps, and \allcaps will use the same
letter-spacing parameters.
The \textsc command will override any other formatting commands so
that the text will appear *only* in small caps. If you want the text
to inherit the bold, italics, etc. formatting, use the \scshape
command instead:
{\bfseries This text is bold {\scshape and small-caps}.}
Note that the \scshape command is *inside* the braces. The command
will stay in affect for the duration of the group it's in. This will
only work if the font has bold small-caps characters, though.
Please let me know if you have any other questions.
--Kevin