0

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:

enter image description here

I need to remove this border!! Any help is welcome!!

imnothere
  • 14,215
Dex
  • 1
  • 1
  • Welcome to TeX SE. Could you expand your code to a minimal working example, starting with a \documentclass ending with a \end{document}? – Alain Remillard Apr 29 '20 at 01:08
  • I edited the code. – Dex Apr 29 '20 at 02:51
  • bmcart is the BioMed Central LaTeX class, obtainable here: https://www.biomedcentral.com/getpublished/writing-resources/additional-files – imnothere Apr 29 '20 at 03:06
  • 1
    The border is added by bmcart.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
  • @LianTzeLim thanks for your answer!!! I'm really doing an article for this magazine. In the latex model, they do not include sample images. Thank you!! – Dex Apr 29 '20 at 03:24

0 Answers0