It works if you use a font that does have it, like Linux Libertine for example:LaTeX Font Warning: Font shape `T1/lmss/m/sc' in size <10.95> not available
(Font) Font shape `T1/lmr/m/sc' tried instead on input line 20.
Code: Select all
\documentclass[doc, natbib]{apa6}
\usepackage{libertine}% <= loads the libertine and biolinum fonts
\usepackage{graphicx}
\usepackage{dcolumn}
\newcommand{\thickhline}{\noalign{\hrule height 1.5pt}}
\captionsetup{justification=centering, labelfont={sf,sc}, labelsep=newline}
\usepackage[figuresright]{rotating}
\title{Sustaining Agendas: Assessing The Media's Role In the Regulation of Bisphenol A In The US States}
\shorttitle{Sustaining Agendas}
\affiliation{Journalism Program\\Wilfrid Laurier University}
\author{Simon J. Kiss}
\begin{document}
This is my document
\begin{table}
\centering
\caption{Exposure Estimates To BPA}
\begin{tabular*}{0.9\textwidth}{lc}
\thickhline
Age Category & micrograms/kg/bw per day\\
\hline
0-4 month-old infant & 1.6 \\
6-12 month-old infant & 0.8\\
4-6 year old child & 1.2 \\
60 kg adult & 0.37 \\
\thickhline
\multicolumn{2}{l}{\emph{Source:} European Commission. Scientific Committee on Food. (2002)}\\
\end{tabular*}
\end{table}
\end{document}
Regards