Answers for "latex include graphics annoation"

1

include graphics latex

documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}

title{A project with images}
author{Overleaf}
date{}

graphicspath{{Images/}}

begin{document}

maketitle

section{Introduction}
begin{figure}[htp]
    centering
    includegraphics[width=4cm]{InsertingImagesEx5}
    caption{An image of a galaxy}
    label{fig:galaxy}
end{figure}

end{document}
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language