Skip to content
New issue

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

adapting to 2 pages? #36

Open
csaund opened this issue Oct 14, 2017 · 10 comments
Open

adapting to 2 pages? #36

csaund opened this issue Oct 14, 2017 · 10 comments

Comments

@csaund
Copy link

csaund commented Oct 14, 2017

Right now without any special formatting, any overflow onto a second page is poorly formatted. A version of this which allows experience to take up the full column on the first page and awards, leadership, etc to fully occupy the second would keep the clean style and continue to emphasize work experience.

Have you thought about adapting this to look good on 2 pages?

@juliocesar-io
Copy link

juliocesar-io commented Oct 26, 2017

Hi @csaund, you can create any pages you want like this (just keep the same textwidth for the correspondent column)

\begin{document}

% PAGE ONE

\begin{minipage}[t]{0.38\textwidth}
% COLUMN ONE SECTIONS
\end{minipage}

\begin{minipage}[t]{0.61\textwidth}
% COLUMN TWO SECTIONS
\end{minipage}

\newpage

% PAGE TWO

\begin{minipage}[t]{0.38\textwidth}
% COLUMN ONE SECTIONS
\end{minipage}

\begin{minipage}[t]{0.61\textwidth}
% COLUMN TWO SECTIONS
\end{minipage}

% PAGE N ...

\end{document}

@arp1561
Copy link

arp1561 commented Jul 13, 2018

The above-mentioned way and adding \hfill between mini pages makes the deedy resume work with 2 pages perfectly

@trenta3
Copy link

trenta3 commented Dec 24, 2018

I would also like to suggest the paracol package with which the splitting is much more easy to do without having to adjust the minipages each time you modify the CV. The document would look something like:

\begin{document}

\columnratio{0.44}
\begin{paracol}{2}
% LATERAL CONTENT
\switchcolumn
% CENTRAL CONTENT
\end{paracol}

@Ronaq13
Copy link

Ronaq13 commented May 31, 2020

The above-mentioned way and adding \hfill between mini pages makes the deedy resume work with 2 pages perfectly

\hill is necessary after every minipage.

@fzeiser
Copy link

fzeiser commented Aug 11, 2020

Have you had a look at the following discussion, for an automatic page break? tcolorbox worked fine for me.
How to make minipage spanning multiple pages

@prasenjitghose36
Copy link

where to add this ?

@prasenjitghose36
Copy link

Ok Got This thanks for help

@trenta3
Copy link

trenta3 commented Oct 28, 2020

I successfully used the paracol package to extend the template to multiple pages.
The bonus with it is that you can also seamlessy align text on the two columns using \switchcolumn*.

Minimal Example:

\columnratio{0.38}
\begin{paracol}{2}
\setlength{\columnsep}{8mm}
%% FIRST COLUMN
\switchcolumn
%% SECOND COLUMN
\end{paracol}

@prasenjitghose36
Copy link

Thanks it worked for me too

@lalit3011agarwal
Copy link

lalit3011agarwal commented Jul 7, 2024

I successfully used the paracol package to extend the template to multiple pages. The bonus with it is that you can also seamlessy align text on the two columns using \switchcolumn*.

Minimal Example:

\columnratio{0.38}
\begin{paracol}{2}
\setlength{\columnsep}{8mm}
%% FIRST COLUMN
\switchcolumn
%% SECOND COLUMN
\end{paracol}

After implementing paracol, I'm experiencing spacing issues in the first column with long titles (see image).
Screenshot 2024-07-07 at 21 12 17

How can I fix the unwanted spaces between words in "First Second Third" while maintaining the paracol structure?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants