Skip to content Accesskey=4Skip to sub-navigation Accesskey=3View our Accessibility Options MIT Information Systems Home About IS&T Contact IS&T Site Map Search Advanced Search
Getting StartedGetting Services by Topic or Alphabetically Getting Help

On This Page

[Help]

  

Quick Links

Top Level

Related Links

Ask OLC a question

Athena Consulting Homepage

Helpdesk Stock Answers (for Mac/PC questions)


How to get BOLD ITALIC type

In LaTeX2e, you can get text both bold-face and italics at once simply
by doing

    \textbf{This text is only bold but \emph{this} was also italics}

----------------------------------------------------------------------

Under LaTeX2.09, it's a little more difficult, since font properties
don't "stack".
	\newfont{\boldit}{cmbxti10}
or
	\newfont{\boldslant}{cmbxsl10}

(There is a small difference between the look of italicized and slanted text;
you may want to try samples of both to compare.)

These commands loads the specified font and defines the control sequence you
specify as the command to switch to this font.  You can now use the font by
either prefacing the text you want to change with the \boldit or \boldslat
command and enclosing the whole thing in {}'s; thus:

	{\boldit This text will be in bold italics}, but this text will
	be in the normal font.

or you can surround the text by:

	\begin{boldit}
	Text here.
	\end{boldit}

The number after the decimal tells you the size of the font.  If you want the
same font scaled to be larger, you can try using the "scaled" command when you
load the font, like:

	\newfont{\boldit}{cmbxti10 scaled \magstep 1}

cmbxti10 only comes in six sizes; the normal size and "scaled \magstep X",
where "X" is a number from 1 to 5, inclusive.

last modified: 10/26/99

MIT Home | Getting Started | Getting Services | Getting Help | About IS&T | Accessibility
Ask a technology question or send a comment about this web page.