Bonjour
this code
\documentclass{article}
\usepackage{verbatim}
\usepackage{array}
\usepackage{longtable}
\usepackage{hhline}
\makeatletter
\newwrite\verbatim@out
\def\ExoCANWrite#1{%
\@bsphack
\immediate\openout \verbatim@out "#1" %
\let\do\@makeother\dospecials
\catcode`\^^M\active
\def\verbatim@processline{%
\immediate\write\verbatim@out{\the\verbatim@line}}%
\verbatim@start}
\def\endExoCANWrite{\immediate\closeout\verbatim@out\@esphack}%
\makeatother
\def\ArrayStretch{2}
\begin{document}
\begin{ExoCANWrite}{TestA}
Hello\par
World A !
\end{ExoCANWrite}
\begin{ExoCANWrite}{TestB}
Hello\par
World B !
\end{ExoCANWrite}
\begin{ExoCANWrite}{TestC}
Hello\par
World C !
\end{ExoCANWrite}
\renewcommand{\arraystretch}{\ArrayStretch}%
\begin{longtable}{|c|m{0.4\linewidth}|>{\centering\arraybackslash}m{0.35\linewidth}|m{0.1\linewidth}|}%
\hhline{~---}%
\multicolumn{1}{c|}{}&Question&Réponse&Jury\\%
\hline%
\endhead%
1&\input{TestA}&&\\
\hline
2&\input{TestB}&&\\
\hline%
3&\input{TestC}&&\\
\hline%
\end{longtable}%
\renewcommand{\arraystretch}{1}%
\end{document}
give me this with array 2.6 i
and this with array 2.6.g


\documentclass{article} \usepackage{array} \begin{document} \renewcommand{\arraystretch}{2} \begin{tabular}{m{0.4\linewidth}} Hello \\ \hline \end{tabular} \end{document}The extra space after "Hello" is a blank line in the source