表格中的虛線右對齊

表格中的虛線右對齊

我想將表格中的虛線右對齊,如附圖所示。知道如何實現這一點嗎?

右對齊虛線範例

\renewcommand{\arraystretch}{2.0}
\begin{tabular}{| L{80mm} @{} L{15mm} @{} L{65mm}|}
    \hline
    \multicolumn{3}{| L{160mm} |}{
        \textbf{Naam-voornaam:} ...................................................
    } 
    \\

    \textbf{Geboortedatum:} 
    \framebox(12,12){} \framebox(12,12){} / \framebox(12,12){} \framebox(12,12){} / 
            \framebox(12,12){} \framebox(12,12){} \framebox(12,12){} \framebox(12,12){}
    & \textbf{Adres:} 
    & ...................................................
    \\

    &
    &
    ...................................................
    \\

    \textbf{Tel. of GSM:} ...................................................
    & \textbf{Email:} 
    & .......................... @ .............................................
    \\

    \hline
\end{tabular}

答案1

您可以定義自己的命令並根據需要修改它,例如基於這個答案你可以想出類似的東西:

\newcommand\dotsuntilendofline{\leavevmode\xleaders\hbox{.}\hfill\kern0pt}

或者你只是使用\dotfill.這可以給你 編譯後的pdf的螢幕截圖

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\begin{document}
    \renewcommand{\arraystretch}{2.0}
    \begin{tabular}{| L{0.5\textwidth} @{} L{0.1\textwidth} @{} L{0.4\textwidth}|}
     \hline
     \multicolumn{3}{|l|}{ \textbf{Naam-voornaam:} \dotfill } 
     \\
     \textbf{Geboortedatum:} \framebox(12,12){} \framebox(12,12){} / \framebox(12,12){} \framebox(12,12){} / \framebox(12,12){} \framebox(12,12){} \framebox(12,12){} \framebox(12,12){} & \textbf{Adres:} & \dotfill \\
     & & \dotfill \\
     \textbf{Tel. of GSM:} \dotfill & \textbf{Email:} & \dotfill @ \dotfill \\
     \hline
    \end{tabular}
\end{document}

相關內容