I am writing a journal in LaTeX in IEEE format. When I make a figure captions it is the same font as the rest of the document (Times). However, I want all the figure captions to be of type Helvetica and of size 8pt.
\documentclass[journal]{IEEEtran}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{Test}
\author{Me}
\date{June 2021}
\begin{document}
\renewcommand\thepage{10.\arabic{page}}
\maketitle
\section{Introduction}
\newpage
\section{page 1}
\newpage
\section{page 2}
\begin{figure}[h]
\centering
\includegraphics[width=5cm]{example-image-a}
\caption{Caption}
\label{fig:my_label}
\end{figure}
\end{document}
Is it possible to make all figure captions font Helvetica and size 8pt throughout the entire document, without changing the font and size of the main text?
phvdefines Helvetica. This is explained very well here: https://tex.stackexchange.com/a/25251/118712 – Markus G. Jun 18 '21 at 12:16\smallis per defintion 8pt. There is an excellent conversion table here: https://tex.stackexchange.com/a/24600/118712 – Markus G. Jun 18 '21 at 12:19\small, but\scriptsize, in 11 pt. – Bernard Jun 18 '21 at 12:25