My latex code below put a border around subfigures.
\documentclass{bmcart}
%%% Load packages
\usepackage{graphicx}
\usepackage[utf8]{inputenc} %unicode support
% Para inserir figuras lado a lado.
\usepackage{subfigure}
%%% Begin ...
\begin{document}
\subsection*{Figure 3}
\begin{figure}
\subfigure[MLP]{\label{fig:a}\includegraphics[width=60mm, trim=4 4 4 4,clip]{img/mlp.png}}
\subfigure[ANFIS]{\label{fig:b}\includegraphics[width=60mm, trim=4 4 4 4,clip]{img/anfis.png}}
\subfigure[SVM]{\label{fig:c}\includegraphics[width=60mm, trim=4 4 4 4,clip]{img/svm.png}}
\subfigure[DT]{\label{fig:d}\includegraphics[width=60mm, trim=4 4 4 4,clip]{img/dt.png}}
\caption{Exemplos dos quatro diferentes modelos de algoritmos utilizando aprendizado de máquina~\cite{Hassan2017}}
\end{figure}
\end{document}
This code, generate this image:
I need to remove this border!! Any help is welcome!!

\documentclassending with a\end{document}? – Alain Remillard Apr 29 '20 at 01:08bmcartis the BioMed Central LaTeX class, obtainable here: https://www.biomedcentral.com/getpublished/writing-resources/additional-files – imnothere Apr 29 '20 at 03:06bmcart.cls, so it's part of the journal template's style. If you are submitting to this journal, just leave the border in. – imnothere Apr 29 '20 at 03:07