When I create a minipage to insert an operating mode in front of an image, I obtain a warning with an Underfull \hbox (badness 1748) in paragraph at lines 75--75 I can't understand what is causing this warning.
As I have received this warning several times, I would like to understand it to avoid repeating it. THANKS
PS: my code returns an error on overleaf but not when compiling on my "real" file
\RequirePackage{fix-cm} \documentclass{book} \usepackage[T1]{fontenc} \usepackage{inputenc} \usepackage[french]{babel} \usepackage[left=1.5cm, right=1.5cm, top=1.5cm, bottom=1.5cm]{geometry} \usepackage{enumitem} %pour l'option [resume] qui permet de reprendre la numérotation \usepackage{pifont} \usepackage{tabularray} \UseTblrLibrary{amsmath,booktabs,counter,diagbox,siunitx,varwidth} \usepackage{tikz} \usepackage{titlesec} \usepackage{caption} \usepackage{amsmath} \usepackage{amssymb} \usepackage{mathtools} \newcommand{\ofg}[1]{\og{}#1\fg{}} \newcommand{\itemmanip}{\begin{itemize}[label=\ding{45}]} \def\before@cadre{\par\medskip} \def\after@cadre{\par\medskip} %cadre simple \newcommand{\cadremanip}[1]{\before@cadre \tikzstyle{mybox} = [draw=gray, fill=gray!15, very thick, rectangle, rounded corners, inner sep=10pt, inner ysep=10pt] \tikzstyle{fancytitle} =[fill=gray!5, text=black] \begin{tikzpicture} \node [mybox] (box){% \begin{minipage}{0.9\textwidth} #1 \end{minipage} }; \node[fancytitle, right=10pt] at (box.north west) {Partie expérimentale}; %\node[fancytitle, rounded corners] at (box.east) {$\clubsuit$}; \end{tikzpicture} \after@cadre}% %fin cadre simple \begin{document} \subsection{Méthode de suivi pHmétrique} \subsubsection{Dispositif expérimental} \cadremanip{ \begin{minipage}{0.65\textwidth} \itemmanip{} \item on rince la burette graduée à l'eau distillée puis avec la solution titrante; \item on rince le bécher de prélèvement avec la solution à doser ; \item on rince la pipette, munie d'une propipette, avec la solution à doser ; \item on remplit la burette avec la solution titrante en veillant à dépasser un peu la graduation zéro; \item on ajuste le zéro en ouvrant doucement le robinet de manière à ce que le bas du ménisque soit à la graduation zéro; \item on étalonne le pHmètre ; \item on prélève le volume de solution à doser (pipette + propipette) que l'on verse dans un bécher haut; \item on plonge l'électrode combinée dans la solution; \item si la sonde ne plonge pas suffisamment dans la solution, on ajoute un volume d'eau distillée $V_0$ à l'aide d'une éprouvette graduée (ce volume n'a pas besoin d'être précis); \item on mesure le pH pour chaque volume de solution titrante : il est possible de le faire mL par mLloin de l'équivalence et de resserer aux alentours de l'équivalence afin d'obtenir un \ofg{beau} saut de pH; \end{itemize} \end{minipage} \hfill \begin{minipage}{0.3\textwidth} \center \includegraphics[width=0.7\textwidth]{example-image} \captionsetup{type=figure} \captionof{figure}{Montage dosage pHmétrique}% \label{montage_dosage_phmetrique}% \end{minipage} } \end{document} 


\centeris an internal command part of the definition of\begin{center}do not use as a command use\centering(unrelated to your question)example-image.pdfand uncomment the style definition line forfancytitle