Right align dotted lines in a table












2















I would like to right align dotted lines in a table as shown in the attached picture. Any idea how this can be achieved?



right align dotted lines example



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}









share|improve this question























  • Have a look at xhfill.

    – JouleV
    Feb 25 at 13:27











  • Next time you ask a question, please post a complete working example of your code (including documentclass, preamble etc.) This will make helping you a lot easier for others.

    – sheß
    Feb 25 at 13:49


















2















I would like to right align dotted lines in a table as shown in the attached picture. Any idea how this can be achieved?



right align dotted lines example



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}









share|improve this question























  • Have a look at xhfill.

    – JouleV
    Feb 25 at 13:27











  • Next time you ask a question, please post a complete working example of your code (including documentclass, preamble etc.) This will make helping you a lot easier for others.

    – sheß
    Feb 25 at 13:49
















2












2








2








I would like to right align dotted lines in a table as shown in the attached picture. Any idea how this can be achieved?



right align dotted lines example



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}









share|improve this question














I would like to right align dotted lines in a table as shown in the attached picture. Any idea how this can be achieved?



right align dotted lines example



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}






tables






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 25 at 13:24









user3048741user3048741

756




756













  • Have a look at xhfill.

    – JouleV
    Feb 25 at 13:27











  • Next time you ask a question, please post a complete working example of your code (including documentclass, preamble etc.) This will make helping you a lot easier for others.

    – sheß
    Feb 25 at 13:49





















  • Have a look at xhfill.

    – JouleV
    Feb 25 at 13:27











  • Next time you ask a question, please post a complete working example of your code (including documentclass, preamble etc.) This will make helping you a lot easier for others.

    – sheß
    Feb 25 at 13:49



















Have a look at xhfill.

– JouleV
Feb 25 at 13:27





Have a look at xhfill.

– JouleV
Feb 25 at 13:27













Next time you ask a question, please post a complete working example of your code (including documentclass, preamble etc.) This will make helping you a lot easier for others.

– sheß
Feb 25 at 13:49







Next time you ask a question, please post a complete working example of your code (including documentclass, preamble etc.) This will make helping you a lot easier for others.

– sheß
Feb 25 at 13:49












1 Answer
1






active

oldest

votes


















1














You can either define your own command and modify it as needed, e.g. based on this answer you could come up with something like:



newcommanddotsuntilendofline{leavevmodexleadershbox{.}hfillkern0pt}


or you just use dotfill. This could give you
screenshot of compiled pdf



documentclass{article}
usepackage[margin=1in]{geometry}
usepackage{array}
newcolumntype{L}[1]{>{raggedrightarraybackslash}p{#1}}
begin{document}
renewcommand{arraystretch}{2.0}
begin{tabular}{| L{0.5textwidth} @{} L{0.1textwidth} @{} L{0.4textwidth}|}
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}





share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "85"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f476595%2fright-align-dotted-lines-in-a-table%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    You can either define your own command and modify it as needed, e.g. based on this answer you could come up with something like:



    newcommanddotsuntilendofline{leavevmodexleadershbox{.}hfillkern0pt}


    or you just use dotfill. This could give you
    screenshot of compiled pdf



    documentclass{article}
    usepackage[margin=1in]{geometry}
    usepackage{array}
    newcolumntype{L}[1]{>{raggedrightarraybackslash}p{#1}}
    begin{document}
    renewcommand{arraystretch}{2.0}
    begin{tabular}{| L{0.5textwidth} @{} L{0.1textwidth} @{} L{0.4textwidth}|}
    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}





    share|improve this answer




























      1














      You can either define your own command and modify it as needed, e.g. based on this answer you could come up with something like:



      newcommanddotsuntilendofline{leavevmodexleadershbox{.}hfillkern0pt}


      or you just use dotfill. This could give you
      screenshot of compiled pdf



      documentclass{article}
      usepackage[margin=1in]{geometry}
      usepackage{array}
      newcolumntype{L}[1]{>{raggedrightarraybackslash}p{#1}}
      begin{document}
      renewcommand{arraystretch}{2.0}
      begin{tabular}{| L{0.5textwidth} @{} L{0.1textwidth} @{} L{0.4textwidth}|}
      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}





      share|improve this answer


























        1












        1








        1







        You can either define your own command and modify it as needed, e.g. based on this answer you could come up with something like:



        newcommanddotsuntilendofline{leavevmodexleadershbox{.}hfillkern0pt}


        or you just use dotfill. This could give you
        screenshot of compiled pdf



        documentclass{article}
        usepackage[margin=1in]{geometry}
        usepackage{array}
        newcolumntype{L}[1]{>{raggedrightarraybackslash}p{#1}}
        begin{document}
        renewcommand{arraystretch}{2.0}
        begin{tabular}{| L{0.5textwidth} @{} L{0.1textwidth} @{} L{0.4textwidth}|}
        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}





        share|improve this answer













        You can either define your own command and modify it as needed, e.g. based on this answer you could come up with something like:



        newcommanddotsuntilendofline{leavevmodexleadershbox{.}hfillkern0pt}


        or you just use dotfill. This could give you
        screenshot of compiled pdf



        documentclass{article}
        usepackage[margin=1in]{geometry}
        usepackage{array}
        newcolumntype{L}[1]{>{raggedrightarraybackslash}p{#1}}
        begin{document}
        renewcommand{arraystretch}{2.0}
        begin{tabular}{| L{0.5textwidth} @{} L{0.1textwidth} @{} L{0.4textwidth}|}
        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}






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Feb 25 at 13:48









        sheßsheß

        1,87711429




        1,87711429






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f476595%2fright-align-dotted-lines-in-a-table%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?