I need to fit 6 pictures in two lines in Latex (3 figures per line). The method I am using now makes them too small
\documentclass[12 pt,a4paper, oneside, openany, notitlepage]{article}
\usepackage{subcaption}
\usepackage{mathtools}
\newcommand{\mathsym}[1]{{}}
\newcommand{\unicode}[1]{{}}
\newcounter{mathematicapage}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{multicol}
\usepackage[inner=1in,outer=1in,bottom=1in,top=1in]{geometry}
\usepackage{setspace}
\onehalfspacing
\usepackage{changepage}
\usepackage{caption}
\begin{document}
\begin{figure}
\begin{adjustwidth}{-2cm}{}
\centering
\begin{subfigure}[b]{0.37\textwidth}
\includegraphics[width=\textwidth]{case1_1.jpg}
\end{subfigure}
\begin{subfigure}[b]{0.37\textwidth}
\centering
\includegraphics[width=\textwidth]{case1_2.jpg}
\end{subfigure}
\begin{subfigure}[b]{0.37\textwidth}
\centering
\includegraphics[width=\textwidth]{case1_3.jpg}
\end{subfigure}
\begin{subfigure}[b]{0.37\textwidth}
\includegraphics[width=\textwidth]{case1_4.jpg}
\end{subfigure}
\begin{subfigure}[b]{0.37\textwidth}
\centering
\includegraphics[width=\textwidth]{case1_5.jpg}
\end{subfigure}
\begin{subfigure}[b]{0.37\textwidth}
\centering
\includegraphics[width=\textwidth]{case1_6.jpg}
\end{subfigure}
\caption{Blah. }
\label{case1_fig}
\end{adjustwidth}
\end{figure}
\end{document}
If I increase 0.37the 3 figures are set into 2 rows. I tried to play with
adjustwidth but without success. I think I need to find a way to reduce the space between the 3 figures in each line but I can't see how.
I can't find a way to attach my 6 pictures to the question, to explain better. Please let me know what can I do to clarify further my question.



\begin{subfigure}[b]{\textwidth/3}, so they will be as large as possible. Take a look here: https://tex.stackexchange.com/a/407620/134574 The problem is the same. – Phelype Oleinik Jan 21 '19 at 17:36