cdelledonne / llresume

Lean LaTeX résumé class
MIT License
22 stars 4 forks source link

Need help for two line address #1

Open viveksinghenv opened 1 year ago

viveksinghenv commented 1 year ago

Thank you for uploading the wonderful latex format of resume. I have a query in the resume package \personalinfo. Inside this package we use \infoaddress for one line address. suppose the residential address comes in two line then?. suppose address is 'B-98 Pushpanjali Vatika, Agra Mathura road, Sikandra, Agra(Uttar Pradesh), India-282007'. I already tried '\\' and '\par', but both wont work here and cause section distortion. can you suggest me the solutions?

cdelledonne commented 1 year ago

Hi, thank you for reporting this, and for giving this template a try :)

At the moment, \info commands are indeed expecting single lines of information. As a workaround, you can add an \infoGeneric command for each additional line you want to create, for instance

\personalinfo{
    \infoAddress{B-98 Pushpanjali Vatika, Agra Mathura road,}
    \infoGeneric{}{Sikandra, Agra (Uttar Pradesh), India-282007}
}

Nevertheless, I will try to find some time to make these commands multi-line friendly, but I can't guarantee by when I'll be ready with this. I hope the workaround can at least give you the output you're looking for.

viveksinghenv commented 1 year ago

Thank you It works perfectly