This question follows this one How to reduce the spacing between responses in the alterqcm package?
The solution given by @UlrikeFischer to reduce the spacing between answers is not compatible with the True/False MCQs of the alterqcm package.
In this case, the question often overlaps with the next question as you can see (highlighted in yellow on the screenshot).
Is there a solution to this problem?
Simon Dispa solution
These settings work fine when the question text takes up more vertical space than the True/False choices, but when the question takes up less space, it spills over onto the line (I highlighted it in yellow). Here, I set the bottom parameter to -0.9em and the other to -0.8em
\documentclass[12pt]{article}
\usepackage{etoolbox,tikzducks}% http://ctan.org/pkg/etoolbox
\usepackage[french]{alterqcm}
\usepackage{siunitx}
\usepackage[right]{eurosym}
\def\square{\tikz[scale=0.2]\duck;} %
\def\nogreekalph{??} %
\parindent0pt
\makeatletter
\newcommand\aqheightadvance{4pt}
\newcommand\aqdepthadvance{3pt}
\patchcmd \aq@prop {4pt}{\aqheightadvance}{}{\fail}
\patchcmd \aq@prop {3pt}{\aqdepthadvance}{}{\fail}
\makeatother
\begin{document}
\renewcommand\aqheightadvance{0pt}
\renewcommand\aqdepthadvance{0pt}
\begin{alterqcm}[lq=8cm]
\AQquestion{Question}{%
{Proposition 1},
{Proposition 2},
{Proposition 3}}
\end{alterqcm}
\bigskip
\begin{alterqcm}[lq=.78\textwidth,VF,num=false,symb = \dingsquare]
\renewcommand{\arraystretch}{0.8}
\AQquestion{Dans une recette, il faut 3 \oe ufs pour faire un gâteau pour 4 personnes. Il en faudra 6 pour faire un gâteau pour 8 personnes.}
\AQquestion{La pointure moyenne des chaussures d'un enfant est proportionnelle à son âge.}
\AQquestion{Une paquet de macaronis pesant \SI{250}{g} est vendue \EUR{0,90}. Un paquet de \SI{500}{g} de ces mêmes macaronis est vendu \EUR{1,70}. Le prix des paquets de macaronis est proportionnel à leur masse. }
\end{alterqcm}
\begin{minipage}{.6\textwidth}
\begin{alterqcm}[lq=20mm,num=false,title=false,symb = \dingsquare]
\AQquestion{$11-9\div3$}{%
{je commence par $11-9$},
{dans l'ordre que je veux},
{je commence par $9\div3$}}
\AQquestion{$8\times(3+4)$}{%
{je commence par $8\times3$},
{dans l'ordre que je veux},
{je commence par $3+4$}}
\end{alterqcm}
\end{minipage}
\end{document}




V/Fassembly. – Simon Dispa Apr 20 '21 at 12:10-0.9emand the other to-0.8em– AndréC Apr 20 '21 at 13:40-0.8emand the lower-0.6emare the obvious limits. The space available can not be less to V/F in a vertical disposition. There are two heights, the higher wins. – Simon Dispa Apr 20 '21 at 14:49