Quitar el bit de etiqueta del título no funciona

Quitar el bit de etiqueta del título no funciona

Estoy haciendo un póster e intento eliminar la parte de la etiqueta, "Figura xx:", de un figuretítulo, como se describe enhttps://stackoverflow.com/questions/3162234/getting-rid-of-the-figure-1-bit.

La parte del código es la siguiente:

\documentclass{sciposter}
\usepackage{lipsum}
\usepackage{epsfig}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{multicol}
\usepackage{graphicx,url}
\usepackage{authblk}
\usepackage[portuges, brazil, english]{babel}   
\usepackage[utf8]{inputenc}
%\usepackage{fancybullets}
%\usepackage{caption}
\usepackage[labelformat=empty]{caption}

\newtheorem{Def}{Definition}



\title{Title1}


\author[1]{name1}
\affil[1]{Insti1}


\leftlogo[1]{Instilogo}
\rightlogo[1]{lablogo}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Begin of Document


\begin{document}

\conference{Famous conference}



\maketitle

%%% Begin of Multicols-Enviroment
\begin{multicols}{3}

% Other irrelavent sections not shown here


\section*{Simulation Set-up}

\begin{itemize}
        \item Approach is validated using DNS simulations.
        
    \begin{figure}[H]
        \centering
        \includegraphics[width = \columnwidth]{Simulation.png}
        \caption{Numerical Set-up}
        
        
        %\label{fig:enter-label}
    \end{figure}
    
    
        \item Pt 2
    
\end{itemize}

% Other irrelavent sections not shown here


\bibliographystyle{plain}\bibliography{poster}

\end{multicols}

\end{document}

Pero, sorprendentemente, aparece el siguiente error:ingrese la descripción de la imagen aquí

¿Puede sugerir qué pudo haber salido mal?

Muchas gracias.

Respuesta1

La causa inmediata del problema es que elmulticolorEl paquete y su multicolsentorno no permiten el uso de tableflotadores figure. ancho completo figure*ytable* sonpermitido; Sin embargo, eso no es relevante para ti, ¿verdad?

Sin embargo, en un sentido más profundo, el error reside enfigure: Dado que no tiene intención de dejar que el gráfico flote en ninguna parte, para empezar no debería utilizar un entorno. (El débil [H]especificador de ubicación no puede ayudarlo aquí). En cambio, lo que debería hacer es (a) emplear un centerentorno básico (diciéndole a LaTeX que inserte un poco de espacio en blanco encima y debajo de la combinación de gráfico/título) y (b) usar \captionofen lugar de \captioncomponer el título sin numerar.

Una observación más sobre su código: debe usar la opción width=\linewidthen lugar de width=\columnwidth, ya que \includegraphicsocurre dentro de un itemizeentorno, lo que reduce automáticamente el valor de \linewidth(pero no el de \columnwidth).

ingrese la descripción de la imagen aquí

\documentclass[demo]{sciposter} % remove 'demo' option in real document

\usepackage{lipsum} % filler text

%%%\usepackage{epsfig} % is loaded automatically by 'graphixc'

\usepackage{amsmath,amssymb}
\usepackage{multicol} % for 'multicols' env.
\usepackage{graphicx,xurl} % use 'xurl', not 'url'
\usepackage{authblk}
\usepackage[portuges, brazil, english]{babel}  
 
%%%\usepackage[utf8]{inputenc} % that's the default nowadays
\usepackage[T1]{fontenc} % <-- new
\usepackage{enumitem} % <-- new

\usepackage{caption} % provides '\captionof' macro
\captionsetup{labelformat=empty, 
              skip=0.5\baselineskip} % <--- new

\title{Title1}
\author[1]{Name1}
\affil[1]{Insti1}

\leftlogo{Instilogo}
\rightlogo{lablogo}
\conference{Famous conference}

\begin{document}

\maketitle

\begin{multicols}{3}

% Other irrelevant sections not shown here

\section*{Simulation Set-up}

\begin{itemize}[left=0pt] % '[left=0pt]' is new

    \item Approach is validated using DNS simulations
        
    %%%\begin{figure}[H] % cannot use 'figure' float
    \begin{center}
        %%%\centering
        \includegraphics[width=\linewidth]{Simulation.png} % NOT '\columnwidth'
        %%%\caption{Numerical Set-up}
        \captionof{figure}{Numerical Setup}
        \label{fig:enter-label}
    %%%\end{figure}
    \end{center}

    \item Pt 2
    
    \item Pt 3
    
\end{itemize}

\lipsum[1-3] % filler text
    
% Other irrelevant sections not shown here

\end{multicols}

\end{document}

información relacionada