Kamis, 12 September 2024

Add Image In Latex

Type this following Latex source code sample in Latex editor:
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\graphicspath{{assets/image/}}
\usepackage{fourier}

\begin{document}
The universe is immense and it seems to be homogeneous,in a large scale, everywhere we look at.

\begin{figure}[h]
\centering
\includegraphics[scale=1]{images.jpeg}
\caption{sample image}
\label{fig:image1}
\end{figure}

There's a picture of brands above.
\end{document}
Then run the Latex typesetting processing tools, e.g. pdflatex.

Output

The universe is immense and it seems to be homogeneous,in a large scale, everywhere we look at.
Figure 1: sample image


There's a picture of brands above.

Notes: some graphics format is unsupported by Latex. Then convert to supported graphics format, like: jpg or png to Latex document.

latex image, latex graphics, latex picture, latex images, latex pictures, latex graphic


Bibliography

https://latex-tutorial.com/
http://www.njit.edu/ ( university )
https://www.overleaf.com/

Related Post

Tidak ada komentar:

Posting Komentar

Various Other Posts