对齐表格单元格中的特定文本

对齐表格单元格中的特定文本

我正在做下面的代码

\documentclass{article}
\usepackage{array}
\usepackage{dsfont}
\begin{document}
    \begin{tabular}{|l|}\hline
         myText\\\hline
         $F:x\mapsto c$ où $c\in\mathds{R}$ \\\hline
         $F:x\mapsto x+c$ où $c\in\mathds{R}$\\\hline
         $F:x\mapsto ax+c$ où $c\in\mathds{R}$\\\hline
    \end{tabular}
\end{document}

我想知道是否有可能将“oùCR“到单元格的最右边,同时将所有其他数学运算保持在最左边。

答案1

在此处输入图片描述

\documentclass{article}
\usepackage{array}
\usepackage{dsfont}
\begin{document}
    \begin{tabular}{|l|}\hline
         myText\\\hline
         $F:x\mapsto c \hfill $ où $c\in\mathds{R}$ \\\hline
         $F:x\mapsto x+c \hfill $ où $c\in\mathds{R}$\\\hline
         $F:x\mapsto ax+c \hfill $ où $c\in\mathds{R}$\\\hline
    \end{tabular}
\end{document}

或者

\documentclass{article}
\usepackage{array}
\usepackage{dsfont}
\begin{document}
    \begin{tabular}{|lr|}\hline
         myText&\\\hline
         $F:x\mapsto c$   & où $c\in\mathds{R}$\\\hline
         $F:x\mapsto x+c$ & où $c\in\mathds{R}$\\\hline
         $F:x\mapsto ax+c$& où $c\in\mathds{R}$\\\hline
    \end{tabular}
\end{document}

在此处输入图片描述

答案2

你可能喜欢一种截然不同的风格:

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}
\usepackage{dsfont}
\usepackage{tabularray}

\begin{document}
    \begin{tblr}{hlines, vlines,
                 rowsep = {7pt},
                 row{1} = {rowsep=4pt},
                 }
         myText             \\
    $
     \begin{rcases}
         F:x\mapsto c       \\
         F:x\mapsto x+c     \\
         F:x\mapsto ax+c    \\
     \end{rcases}   \text{ où } c\in\mathds{R}
    $     
    \end{tblr}
\end{document}

相关内容