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

how to make cv more than one page? #12

Closed
annProg opened this issue May 7, 2018 · 3 comments
Closed

how to make cv more than one page? #12

annProg opened this issue May 7, 2018 · 3 comments

Comments

@annProg
Copy link

annProg commented May 7, 2018

Seem that limecv does not support multipage, is it a bug?

@opieters
Copy link
Owner

opieters commented May 10, 2018

The current implementation (unlikely to change in the future) requires the user to manually split the CV into multiple page. You can either re-use the cvSidebar and cvMainContent or the starred variants (cvSidebar* + cvMainContent* typesets the coloured bar on the right side) to create a second page.

@p3d2
Copy link

p3d2 commented Jul 3, 2018

Still regarding this question, I'm trying the manual splitting workaround. However, contents keep the same location. How can I reset this (flush everything to the top)?

@p3d2
Copy link

p3d2 commented Jul 3, 2018

Just found out how to avoid this. Created a new blank environment, where the counters where reset, in the class file:

\NewDocumentEnvironment{cvBlank}{}{
\setcounter{cv@itemPrev}{0}
\setcounter{cv@itemNext}{1}
\setcounter{cv@lastItem}{1}}{}

In the main document, after stopping for the new page, just called the blank environment. Hope this can help others:

(...)
\end{cvPublications}
\end{cvMainContent}
% FORCE END OF PAGE 1
\newpage
\begin{cvSidebar}
\end{cvSidebar}
\begin{cvMainContent}
\begin{cvBlank}
\end{cvBlank}
\begin{cvPublications}
(...)

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

3 participants