표의 점선을 오른쪽 정렬

표의 점선을 오른쪽 정렬

첨부된 그림과 같이 표의 점선을 오른쪽 정렬하고 싶습니다. 이것이 어떻게 달성될 수 있는지 아시나요?

점선 오른쪽 정렬 예

\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}

관련 정보