Skip to content

Instantly share code, notes, and snippets.

/.tex

Created November 12, 2015 00:56
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save anonymous/36d4046f851ac21ffa79 to your computer and use it in GitHub Desktop.
Save anonymous/36d4046f851ac21ffa79 to your computer and use it in GitHub Desktop.
graphics matrix
\documentclass[10pt,a4paper]{article}
\usepackage{graphicx}
\usepackage{subfig}
\captionsetup{labelformat=empty}
\begin{document}
\begin{figure}[H]
\centering
\captionsetup[subfigure]{labelformat=empty}
\begin{minipage}{0.51\textwidth}
\subfloat[Left]{\includegraphics[width=1.0\linewidth]{1.png}}
\end{minipage}
\begin{minipage}{0.48\textwidth}
\subfloat[Top right]
{
\subfloat[1]{\includegraphics[width=0.45\linewidth]{2.png}}
\subfloat[2]{\includegraphics[width=0.45\linewidth]{2.png}}
}\\
\subfloat[Bottom right]
{
\subfloat[3]{\includegraphics[width=0.45\linewidth]{2.png}}
\subfloat[4]{\includegraphics[width=0.45\linewidth]{2.png}}
}
\end{minipage}
\caption{This is caption}
\end{figure}
\end{document}
@lawlietsoul
Copy link

Thank u very much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment