Logotipo en el lugar apropiado como la muestra.

Logotipo en el lugar apropiado como la muestra.

Quiero colocar un logotipo como este en mi clase de artículo, como el siguiente ejemplo

la muestra de lo que quiero

el logotipo a utilizar

Esto es lo que he probado

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx, tikz}
\begin{document}
    %%% remove comment delimiter ('%') and select language if required
    %\selectlanguage{spanish} 
    \begin{tikzpicture}[remember picture,overlay]
        \node[anchor=north west,yshift=-53.5pt,xshift=43pt]%
        at (current page.north west)
        {\includegraphics[height=5mm]{futa_logo.png}};
    \end{tikzpicture}
    
    \noindent \textbf{THE FEDERAL UNIVERSITY OF LATEX, TEXT}
    
    %\noindent \textbf{\includegraphics*[width=0.78in, height=0.63in, keepaspectratio=false]{image1}
        %       SCHOOL OF POSTGRADUATE STUDIES}
    
    \noindent \textbf{}
    
    \noindent \textbf{FORM:  SPGS/ARTT-AE}
    
    \noindent \textbf{}
    
    \noindent \textbf{APPLICATION FOR REGISTRATION OF THESIS TITLE}
    
    \noindent \textbf{AND APPOINTMENT OF EXAMINERS}
    
    \noindent \textbf{}
    
    \noindent \textbf{SECTION ``A''}
    
    \noindent \textbf{}
    
    \noindent \textbf{(TO BE COMPLETED BY THE CANDIDATE)}
    
    \noindent \textbf{}
    
    \noindent \textbf{}
\end{document}

Respuesta1

La forma más sencilla de hacerlo es utilizar elentorno de minipágina, por lo que es muy sencillo controlar el tamaño de la imagen junto con el texto.

Código

\documentclass[10pt, a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx, tikz}
\usepackage{float}


\begin{document}

%%% remove comment delimiter ('%') and select language if required
%\selectlanguage{spanish} 
\begin{minipage}{0.25\textwidth}
    \begin{figure}[H]
        \centering
        \includegraphics[width = 3cm]{futa_logo.png}
    \end{figure}
\end{minipage}
\begin{minipage}{0.7\textwidth}
    \begin{center}
        \textbf{THE FEDERAL UNIVERSITY OF LATEX, TEXT}
    
        \vspace{0.5cm}
    \textbf{SCHOOL OF POSTGRADUATE STUDIES}
    
        \vspace{0.5cm}
    \textbf{FORM:  SPGS/ARTT-AE}
    \end{center}
\end{minipage}
\begin{center}
    \textbf{}

    \textbf{APPLICATION FOR REGISTRATION OF THESIS TITLE}
    
    \textbf{AND APPOINTMENT OF EXAMINERS}
    
    \textbf{}
    
    \textbf{SECTION ``A''}
    
    \textbf{}
    
    \textbf{(TO BE COMPLETED BY THE CANDIDATE)}
    
    \textbf{}
    
    \textbf{}
\end{center}





\end{document}

Producción:

ingrese la descripción de la imagen aquí

Tenga en cuenta que este método no es el mejor ni el más optimizado, pero funciona como usted desea. Si quieres algo más sofisticado, puedo darte otra respuesta.

información relacionada