We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
I was able to fix it by adding -0.5 before the center tag in the middle column.
Before:
\makeatletter \newcommand\makeheader{ \begin{center} \begin{tabu} to 1\textwidth { X[l,m] X[2,c,m] X[r,m] } \printaddress & \printname & \printcontacts \\ \end{tabu} \end{center} \vspace*{\afterheaderspace} } \makeatother
After:
\makeatletter \newcommand\makeheader{ \begin{center} \begin{tabu} to 1\textwidth { X[l,m] X[2,-0.5c,m] X[r,m] } \printaddress & \printname & \printcontacts \\ \end{tabu} \end{center} \vspace*{\afterheaderspace} } \makeatother
I'm guessing it depends on the name size but the number before the left/center/right tag defines the size to increase/decrease the columns.
Sorry, something went wrong.
No branches or pull requests
How to Reproduce
What Should Happen
What Happens
The text was updated successfully, but these errors were encountered: