I am trying to prepare a paper for IEEE Open Access that uses \documentclass{ieeeccess} ; its template (https://ieeeaccess.ieee.org/wp-content/uploads/2022/01/LaTeX.zip).
When I look into their published papers Figure and Table captions are bold and left-aligned, like:
I just wanted to apply textbf{} to all figure and table captions but while keeping the original style such as Figure text color is blue.
cleaned code example:
\documentclass{ieeeaccess}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\begin{document}
\title{Preparation of Papers for IEEE ACCESS}
\author{\uppercase{First A. Author}\authorrefmark{1}, \IEEEmembership{Fellow, IEEE},
\uppercase{Second B. Author\authorrefmark{2}, and Third C. Author,
Jr}.\authorrefmark{3},
\IEEEmembership{Member, IEEE}}
\begin{abstract}
These instructions give you guidelines for preparing papers for ...
\end{abstract}
\begin{keywords}
Enter key words or phrases in alphabetical
order, separated by commas. For a list of suggested keywords, send a blank
e-mail to keywords@ieee.org or visit \underline
{http://www.ieee.org/organizations/pubs/ani_prod/keywrd98.txt}
\end{keywords}
\titlepgskip=-15pt
\section{Introduction}
\label{sec:introduction}
\PARstart{T}{his} document is a template for \LaTeX. If you are
reading a paper or PDF version of this document, please download the
\begin{figure}[htp]
\includegraphics[width=\linewidth]{fig1.png}
\caption{Dummy figure.}
\label{fig1}
\end{figure}
\EOD
\end{document}
output:
Here I can easily do \caption{\textbf{Dummy figure.}} , but have many figures that if possible I want to do this through captionsetup package.
Is it possible to apply \textbf{} for all the caption an tables labels and left-align them, while keeping their original font-style and color unchanged?
Related: Align Caption to the left



ieeeaccesdocument class? Dont doing this! – Zarko Dec 08 '22 at 12:15\textbf{}was embedded in the label to make caption bold. I was looking for a solution to apply this globally without writing\textbfinside all the labels. – alper Dec 08 '22 at 15:30\caption. They don't need and will not appreciate your help. – John Kormylo Dec 08 '22 at 15:52\captionformat. In the templated it is used as\caption{\textbf{MY CAPTION}}so muanually writes should add\textbf{}one by one into to ALL Tables and Figures. Instead I was looking for a global decleration to handle this at least for my draft work – alper Dec 08 '22 at 18:51