Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
composition:tableaux:cellules:fusionner_des_cellule_dans_une_colonne [2018/12/03 23:33] – jejust | 3_composition:tableaux:cellules:fusionner_des_cellule_dans_une_colonne [2021/11/27 14:49] (Version actuelle) – Correction d'une coquille. yannick.tanguy | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== | + | ====== |
+ | Certains tableaux nécessitent une cellule qui s' | ||
- | It's easy to come up with a table design that requires a cell that | + | ===== Avec l'extension “multirow” ===== |
- | spans several rows. An example is something where the left-most | + | |
- | column labels the rest of the table; this can be done (in simple | + | |
- | cases) by using | + | |
- | [[FAQ-slashbox|diagonal separation in corner cells]], but that | + | |
- | technique rather strictly limits what can be used as the content of | + | |
- | the cell. | + | |
- | The [[ctanpkg> | + | L' |
- | cells, in a very simple manner. For the simplest possible use, one | + | |
- | might write: | + | |
+ | <WRAP column 45ex> | ||
<code latex> | <code latex> | ||
\begin{tabular}{|c|c|} | \begin{tabular}{|c|c|} | ||
\hline | \hline | ||
- | \multirow{4}{*}{Common g text} | + | \multirow{4}{*}{Texte multiligne} |
- | & Column g2a\\ | + | & Ligne 1\\ |
- | & Column g2b \\ | + | & Ligne 2 \\ |
- | & Column g2c \\ | + | & Ligne 3 \\ |
- | & Column g2d \\ | + | & Ligne 4 \\ |
\hline | \hline | ||
\end{tabular} | \end{tabular} | ||
</ | </ | ||
- | and [[ctanpkg>multirow|multirow]] will position " | + | </WRAP> |
- | center of the space defined by the other rows. Note that the rows | + | |
- | that don't contain the " | + | |
- | cells where the multi-row is going to appear. | + | |
- | The '' | + | <WRAP column 45ex> |
- | case, the argument may contain forced line-breaks: | + | < |
+ | \documentclass{article} | ||
+ | \usepackage{multirow} | ||
+ | \pagestyle{empty} | ||
+ | \begin{document} | ||
+ | \begin{tabular}{|c|c|} | ||
+ | \hline | ||
+ | \multirow{4}{*}{Texte multiligne} | ||
+ | & Ligne 1 \\ | ||
+ | & Ligne 2 \\ | ||
+ | & Ligne 3 \\ | ||
+ | & Ligne 4 \\ | ||
+ | \hline | ||
+ | \end{tabular} | ||
+ | \end{document} | ||
+ | </ | ||
+ | </ | ||
+ | <WRAP clear /> | ||
+ | |||
+ | L' | ||
+ | |||
+ | Le symbole « '' | ||
+ | <WRAP column 45ex> | ||
<code latex> | <code latex> | ||
\begin{tabular}{|c|c|} | \begin{tabular}{|c|c|} | ||
\hline | \hline | ||
- | \multirow{4}{25mm}{Common\\g text} | + | \multirow{4}{25mm}{Texte% |
- | & Column g2a\\ | + | \\multiligne} |
- | & Column g2b \\ | + | & Ligne 1 \\ |
- | & Column g2c \\ | + | & Ligne 2 \\ |
- | & Column g2d \\ | + | & Ligne 3 \\ |
+ | & Ligne 4 \\ | ||
\hline | \hline | ||
\end{tabular} | \end{tabular} | ||
</ | </ | ||
- | A similar effect (with the possibility of a little more | + | </ |
- | sophistication) may be achieved by putting a smaller table that lines | + | |
- | up the text into a '' | + | |
- | The '' | + | <WRAP column 45ex> |
- | down one or other side of a table (with the help of the | + | < |
- | [[ctanpkg> | + | \documentclass{article} |
- | '' | + | \usepackage{multirow} |
+ | \pagestyle{empty} | ||
+ | \begin{document} | ||
+ | \begin{tabular}{|c|c|} | ||
+ | \hline | ||
+ | \multirow{4}{25mm}{Texte% | ||
+ | | ||
+ | & Ligne 1 \\ | ||
+ | & Ligne 2 \\ | ||
+ | & Ligne 3 \\ | ||
+ | & Ligne 4 \\ | ||
+ | \hline | ||
+ | \end{tabular} | ||
+ | \end{document} | ||
+ | </ | ||
+ | </ | ||
+ | <WRAP clear /> | ||
+ | |||
+ | Un effet similaire (permettant un peu plus de sophistication) peut être obtenu en mettant un tableau plus petit qui aligne le texte dans une commande | ||
+ | |||
+ | La commande '' | ||
+ | <WRAP column 45ex> | ||
<code latex> | <code latex> | ||
\begin{tabular}{|l|l|} | \begin{tabular}{|l|l|} | ||
\hline | \hline | ||
- | \multirow{4}{*}{\rotatebox{90}{hi there}} | + | \multirow{4}{*}{% |
- | & Column g2a\\ | + | \rotatebox{90}{Texte}} |
- | & Column g2b \\ | + | & Ligne 1 \\ |
- | & Column g2c \\ | + | & Ligne 2 \\ |
- | & Column g2d \\ | + | & Ligne 3 \\ |
+ | & Ligne 4 \\ | ||
\hline | \hline | ||
\end{tabular} | \end{tabular} | ||
</ | </ | ||
- | (which gives text going upwards; use angle '' | + | </ |
- | downwards, of course). | + | |
- | To make a '' | + | <WRAP column 45ex> |
- | enclose a '' | + | < |
- | around does not work, so: | + | \documentclass{article} |
+ | \usepackage{multirow} | ||
+ | \usepackage{graphicx} | ||
+ | \pagestyle{empty} | ||
+ | \begin{document} | ||
+ | \begin{tabular}{|l|l|} | ||
+ | \hline | ||
+ | \multirow{4}{*}{% | ||
+ | \rotatebox{90}{Texte}} | ||
+ | & Ligne 1 \\ | ||
+ | & Ligne 2 \\ | ||
+ | & Ligne 3 \\ | ||
+ | & Ligne 4 \\ | ||
+ | \hline | ||
+ | \end{tabular} | ||
+ | \end{document} | ||
+ | </ | ||
+ | </ | ||
+ | <WRAP clear /> | ||
+ | |||
+ | Cet exemple donne un texte qui va vers le haut. Pour un texte allant vers le bas, il faudrait prendre un angle de '' | ||
+ | |||
+ | Pour créer une cellule s' | ||
+ | <WRAP column 45ex> | ||
<code latex> | <code latex> | ||
\begin{tabular}{|c|c|c|}\hline | \begin{tabular}{|c|c|c|}\hline | ||
- | \multicolumn{2}{|c|}{\multirow{2}{*}{combined cells}} | + | \multicolumn{2}{|c|}{ |
- | &top right\\ \cline{3-3} | + | \multirow{2}{*}{Cellules |
+ | | ||
+ | &Haut droit\\ \cline{3-3} | ||
\multicolumn{2}{|c|}{} | \multicolumn{2}{|c|}{} | ||
- | &middle right\\ \hline | + | &Centre droit\\ \hline |
- | bottom left | + | Bas gauche |
- | &bottom center | + | &Bas centre |
- | &bottom right\\ \hline | + | &Bas droit\\ \hline |
\end{tabular} | \end{tabular} | ||
</ | </ | ||
- | [[ctanpkg>Multirow|Multirow]] is set up to interact with the [[ctanpkg> | + | </WRAP> |
- | package (which is also discussed in the answer to | + | |
- | [[FAQ-struttab|spacing lines in tables]]). | + | |
- | optional argument to the '' | + | |
- | rows in the multi-row have been opened up with '' | + | |
- | The documentation of both [[ctanpkg> | + | <WRAP column 45ex> |
- | to be found, as comments, in the package files themselves. | + | < |
+ | \documentclass{article} | ||
+ | \usepackage{multirow} | ||
+ | \pagestyle{empty} | ||
+ | \begin{document} | ||
+ | \begin{tabular}{|c|c|c|}\hline | ||
+ | \multicolumn{2}{|c|}{ | ||
+ | \multirow{2}{*}{Cellules | ||
+ | | ||
+ | & | ||
+ | \multicolumn{2}{|c|}{} | ||
+ | &Centre droit\\ \hline | ||
+ | Bas gauche | ||
+ | & | ||
+ | & | ||
+ | \end{tabular} | ||
+ | \end{document} | ||
+ | </ | ||
+ | </ | ||
+ | <WRAP clear /> | ||
+ | L' | ||
- | ----- | + | La documentation de [[ctanpkg> |
+ | ----- | ||
//Source:// [[faquk> | //Source:// [[faquk> | ||
- | {{htmlmetatags> | + | {{htmlmetatags> |
- | metatag-og: | + | metatag-og: |
metatag-og: | metatag-og: | ||
}} | }} | ||
- |