Figures, subfigures and figures side-by-side in LaTeX all you need to know.

Описание к видео Figures, subfigures and figures side-by-side in LaTeX all you need to know.

If you're a student, researcher, or writer who needs to add images and figures to your LaTeX document, this tutorial is for you. In this video, we'll show you how to add images and figures to your LaTeX document and how to place them in line with the text, side-by-side, or add subfigures.

We'll cover everything you need to know, from including graphicx package to importing images, scaling them, and adding captions. You will also learn how to position images, float them, and create a list of figures.

We will go into detail about how to place images side-by-side or add subfigures with the subfigure package. We will demonstrate how to customize subfigures with different captions and references.

By the end of this tutorial, you'll have a solid understanding of how to add images and figures to your LaTeX document, and you'll be able to create beautiful and professional-looking documents with images and figures.

So if you're ready to level up your LaTeX skills, be sure to check out our tutorial. Don't forget to subscribe to our channel for more tutorials on LaTeX and other tools and technologies.

Keywords: LaTeX, images, figures, graphicx, subfigure, captions, references, positioning, floating, list of figures, scaling, subfigures, side-by-side

Hashtags: #LaTeX #Images #Figures #Graphicx #Subfigure #Captions #References #Positioning #Floating #ListOfFigures #Scaling #Subfigures #SideBySide

✅ 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:
```
\documentclass{article}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{hyperref}

\title{Figures side by side and sub-figures}

\begin{document}

\maketitle

\begin{figure}[t]
\centering

\begin{minipage}{0.49\textwidth}
\centering
\includegraphics[width=1\textwidth]{universe}
\caption{Caption}
\label{fig:1}
\end{minipage}
\hfill
\begin{minipage}{0.49\textwidth}
\centering
\includegraphics[width=1\textwidth]{figure2}
\caption{Caption}
\label{fig:2}
\end{minipage}

\end{figure}

The universe is shown in Figure~\ref{fig:1} and a mountain is shown in Figure~\ref{fig:2}.

\begin{figure}[t]
\centering

\begin{subfigure}[t]{0.49\textwidth}
\centering
\includegraphics[width=1\textwidth]{universe}
\caption{Caption}
\label{fig:3-a}
\end{subfigure}
\hfill
\begin{subfigure}[t]{0.49\textwidth}
\centering
\includegraphics[width=1\textwidth]{figure2}
\caption{Caption}
\label{fig:3-b}
\end{subfigure}
\caption{For the sub-figures}
\label{fig:3}
\end{figure}

The universe is shown in sub-figure~\ref{fig:3-a} and a mountain is shown in sub-figure~\ref{fig:3-b} and finally the Figure~\ref{fig:3} is showing the universe and mountain side by side.

\lipsum

\end{document}
```

🎥 Content of this video:
00:00 - What you will learn
01:40 - Add an image to your document
02:45 - Add figures side by side
07:00 - Reference figures in text
08:35 - Add subfigures

Комментарии

Информация по комментариям в разработке