How to Insert Figures in LaTeX: Adding Captions, Labels, and References

Опубликовано: 27 Октябрь 2024
на канале: Federico Tartarini
2,092
38

In this video, I will be showing you how to add images to your LaTeX document using the Figure environment. I will explain how to add a caption that describes the image and a label that allows you to reference it in the text. I will also show you how to insert images in different formats and how to resize them. This is a fundamental skill for any LaTeX user, especially for those in academia, who need to present graphs, charts, or pictures in their research papers. By the end of this video, you will be able to add professional-looking figures to your documents.

Keywords: LaTeX, Figures, Caption, Label, Reference, Image, Resize, Format, Graph, Chart, Picture, Research, Papers, Academia, Professional

Hashtags: #LaTeX #Figures #Caption #Label #Reference #Image #Resize #Format #Graph #Chart #Picture #Research #Papers #Academia #Professional

✅ Subscribe for more videos like this one
🔔 Click on the bell icon to be notified when I release a new video
👍 Please like my video!

⚠️ Join my channel to get access to perks:    / @federicotartarini  
🙏 Support my channel on Patreon at   / federicotartarini  
☕ Support my channel by buying me a coffee - https://www.buymeacoffee.com/FedericoT

✅ Let's connect:
🌍 My website - https://federicotartarini.github.io/
💻 GitHub - https://github.com/FedericoTartarini
Twitter -   / federicotartar1  
LinkedIn –   / federico-tartarini  

👨‍💻 Source code:
\usepackage{graphicx}

\begin{figure}[htb]
\centering
\includegraphics[width=.5\textwidth, angle=45]{universe}
\caption{Image of the universe}
\label{fig:universe}
\end{figure}

Figure~\ref{fig:universe}

\listoffigures

🎥 Content of this video:
00:00 - Import graphic package
00:15 - Create a Figure environment
00:25 - Add caption and label
00:35 - Specify the width
00:45 - Positioning of the image, top, bottom, or here
01:11 - Reference image
01:30 - Import an image from a directory
02:00 - Add a list of Figures or Images