Fonts & Character Sets ⇒ Bold Small Caps
Bold Small Caps
Can some one help me how to use the bold-extra package to get bold small caps.
I am a newbee and would appreciate if you can give a simple step-by-step procedure or example. I have already installed all the required fonts and the package in MIkTEX
Thanks a millions in advance!!!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Bold Small Caps
Code: Select all
\documentclass{article}
\usepackage{bold-extra}
\begin{document}
\textbf{This is bold} and \textsc{this is small caps} and \textsc{\textbf{this is bold small caps.}}
\end{document}
Re: Bold Small Caps
I have tried this, but it is not working. The smallcaps is overrided and just bold fonts appear (which is how latex behaves usually without the bold-extra package). That is the reason I am asking.
When you execute the code, does it give you bold small caps?
Bold Small Caps
- Attachments
-
- scaps.pdf
- (38.84 KiB) Downloaded 1616 times
Re: Bold Small Caps
Re: Bold Small Caps
Thanks for getting back to me:
The following warning in the log is an indication of some problem:
LaTeX Font Warning: Font shape `T1/lmr/bx/sc' undefined
(Font) using `T1/lmr/bx/n' instead on input line 87.
LaTeX Font Info: Try loading font information for OMS+lmr on input line 87.
(C:\texmf\miktex\tex\latex\lm\omslmr.fd
File: omslmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OMS+lmsy on input line 87.
(C:\texmf\miktex\tex\latex\lm\omslmsy.fd
File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Font shape `OMS/lmr/m/n' in size <10.95> not available
(Font) Font shape `OMS/lmsy/m/n' tried instead on input line 87.
Any idea how to install this font??
Thanks
Re: Bold Small Caps
Re: Bold Small Caps
I am using the lmodern package. Without the lmodern package, if the \usepackage[T1]{fontenc} in included, the entire text becomes garbled. Removing both lmodern and usepackage[T1]{fontenc} brings the text back to normal but the bold caps does not happen.
The following is the list of my packages:
\documentclass[11pt,draft]{report}
\usepackage{eurosym}
\usepackage{breakcites}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[titletoc]{appendix}
\usepackage{amsthm}
\usepackage[sectionbib]{natbib}
\usepackage{lscape}
\usepackage{longtable}
\usepackage{graphicx}
\usepackage{chapterbib}
\usepackage{url}
\usepackage{algorithm}
\usepackage[tight]{subfigure}
\usepackage{latexsym}
\usepackage{rotating}
\usepackage[stable,multiple]{footmisc}
\usepackage{bold-extra}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{float}
%\subfigtopskip=0.1in
\subfigcapskip=15pt
%\subfigbottomskip=30pt
Bold Small Caps
You might also see if you have the cm-super package installed; if not, install it, and see if that changes anything.
Also, do you know what version of MikTeX you're using?
Re: Bold Small Caps
Installing cm-super SOLVED the problem after including \usepackage[T1]{fontenc}
I used MIKTEX 2.7.
That was really nice and fast!!
Thank you for helping me!!