Système d’équations
Je voudrais obtenir un résultat semblable au premier système visible sur [cette page](http://imss-www.upmf-grenoble.fr/prevert/MathSHS/MASS1/Alg2/Cours/Chap7.htm), donc avec des indices non numéraux égaux à `nn` ou `n`.
Le package *[systeme](http://mirrors.ctan.org/macros/generic/systeme/systeme_fr.pdf)* me permettrait-il d'y parvenir ?
Voici un ECM :
\documentclass{article}
\usepackage{systeme}
\begin{document}
\systeme[x_1x_2]{ax_1+bx_2=c_1,dx_1+ex_2=b2}
% \systeme{a{11}x1+a{12}x_2+\dots+a{1p}x_p=k_1,a{21}x1+a{22}x_2+\dots+a{2p}x_p=k_2}
\systeme{a_{11}x_1+a_{12}x_2+\dots+a_{1p}x_p=k_1,a_{21}x_1+a_{22}x_2+\dots+a_{2p}x_p=k_2}
\end{document}