Logotipo no local apropriado como a amostra

Logotipo no local apropriado como a amostra

Quero colocar um logotipo como este na minha classe de artigo, como o exemplo abaixo

a amostra do que eu quero

o logotipo a ser usado

Isto é o que eu tentei

\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}

Responder1

A maneira mais simples de fazer isso é usar oambiente de minipágina, então é muito simples controlar o tamanho da imagem junto com o 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}

Saída:

insira a descrição da imagem aqui

Observe que este método não é o melhor, nem o mais otimizado, mas funciona da maneira que você deseja. Se você quiser algo mais sofisticado, posso dar outra resposta para isso.

informação relacionada