This question has a continuation here How to reduce the spacing between responses in True/False MCQs of the alterqcm package?
The alterqcm package is no longer maintained by Alain Matthes. Two other developers maintain it. I wrote to them 15 days ago by email to report the error reported here: Is there a conflict between the xkeyval and alterqcm packages?
I have not received a reply.
I am trying to reduce the spacing between the lines of the QCM as indicated in this solution by @Werner and it does not work.
In addition, by using the David Carlisle's code given in the chat, I get an X instead of a square.
Full code of the screenshot:
\documentclass[12pt]{article}
%\usepackage[utf8]{inputenc}
%\usepackage[upright]{fourier}
\usepackage{etoolbox}% http://ctan.org/pkg/etoolbox
\usepackage[english]{alterqcm}
\def\square{X} % <---------- David Carlisle comment
\def\nogreekalph{??} % <---- David Carlisle comment
\parindent0pt
\begin{document}
% Original display
\begin{alterqcm}[lq=8cm]
\AQquestion{Question}{%
{Proposition 1},
{Proposition 2},
{Proposition 3}}
\end{alterqcm}
\bigskip
% Smashed display !!!!!! Dont work now
{\begin{alterqcm}[lq=8cm]
\AQquestion{Question}{%
{\smash{Proposition 1}},
{\smash{Proposition 2}},
{\smash{Proposition 3}}}
\end{alterqcm}}
\bigskip
% Global smashed display !!!! Dont work now
\makeatletter
\patchcmd{\aq@prop}{\vbox{#1}}{\vbox{\smash{#1}}}{}{}% patch \aq@prop
\makeatother
\begin{alterqcm}[lq=8cm]
\AQquestion{Question}{%
{Proposition 1},
{Proposition 2},
{Proposition 3}}
\end{alterqcm}
\end{document}
Is there a solution?


\smashmacro? – AndréC Oct 09 '19 at 17:39\smashworked correctly to reduce this space. – AndréC Oct 09 '19 at 18:04\makeatothercommand – AndréC Oct 09 '19 at 18:39