
Estoy preparando un manuscrito para una revista del IET. He utilizado los siguientes paquetes para la figura:
\documentclass[10pt]{article}
\usepackage{graphicx}
\usepackage{caption}
\captionsetup[figure]{name=Fig.,labelfont={sf,bf},textfont=sl,labelsep=quad}
\usepackage[caption=false,font=footnotesize,labelformat=simple]{subfig}
luego utilicé el siguiente fragmento de código:
\begin{figure}[tb]
\centering
\subfloat[Tunneling and thermionic component of current]{
\includegraphics[width=0.48\linewidth]{It+Ith}
\label{It_Ith}
}
\subfloat[Total drain current]{
\includegraphics[width=0.48\linewidth]{Ids}
\label{I_ds}
}
\label{I_V}
\caption{I-V characterstics in the subthreshold regime}
\end{figure}
y los subtítulos están debajo de las figuras respectivas como esta:
Pero quiero que los títulos de las subfiguras estén debajo del título principal, así:
Tenga en cuenta que todos los títulos están alineados a la izquierda y los subtítulos no están en cursiva. ¿Cómo generar este tipo de formato?
Respuesta1
Puedes lograr esto usando subtítulos vacíos y luego hacer referencia a ellos \protect\subref*
dentro del título principal (el * elimina las paréntesis; sin él, obtienes (a) en lugar de a):
\documentclass[10pt]{article}
\usepackage{graphicx}
\usepackage{caption}
\captionsetup[figure]{name=Fig.,labelfont={sf,bf},textfont=sl,labelsep=quad}
\usepackage[caption=false,font=footnotesize,labelformat=simple]{subfig}
\begin{document}
\begin{figure}[tb]
\centering
\subfloat[]{
\includegraphics[width=0.48\linewidth]{It+Ith}
\label{It_Ith}
}
\subfloat[]{
\includegraphics[width=0.48\linewidth]{Ids}
\label{I_ds}
}
\label{I_V}
\caption{I-V characterstics in the subthreshold regime\\[2ex]
\protect\subref*{It_Ith} \textnormal{Tunneling and thermionic component of current}\\
\protect\subref*{I_ds} \textnormal{Total drain current}
}
\end{figure}
\end{document}
La fuente normal puede ser utilizada por \textnormal
.