如何设置kaminari中第一页的初始偏移量?

我需要实现一些逻辑,以便在第一页上显示3个元素,在下一个页面上显示1个元素。 对于第一页没有问题:

items = @model.limit(@first_page_items) 

对于我试过的所有下一个:

 @model.offset(@first_page_items).page(@current_page - 1).per(@per) #makes no offset at all - all the items going from the beginning @model.page(@current_page - 1).per(@per).offset(@first_page_items) #produces 4-th element on the second page and stays on it for ever 

我究竟做错了什么? 谢谢