[RESOLVIDO] Quebra de página _ imprimir cheque

Prezados, estou com dificuldades de colocar 4 cheques em 1(uma) pagina.

Aqui preciso imprimir cheque em impressora matricial. Ja fiz tudo, tento cheque único como cheque em série.

Porém a folha de cheque vem com 4(cheques), no entanto ao selecionar mais de 1 pagamento sai 1 cheque em cada pagina.
Preciso que saia até 4 na mesma página.

como faço essa quebra de pagina/linha?

como você gera esse relatório?

Gero no pdf

e imprime numa matricial?

Isso…para impressão em matricial

tÁ I o codigo

/------------------ Page 1 -----------------/
sc_pdf_print($cell_valor_parcela);
sc_pdf_print_extenso($extenso, 3.5277777777778);
sc_pdf_print($cell_fornecedor);
sc_pdf_date($cell_data, ‘d F Y’); // preciso fazer uma quebra de pagina aqui… porque preciso imprimir 4 cheques em 1(uma)folha
/-------------------------------------------/

AddPage

AddPage([string orientation [, mixed size]])
Description

Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer. Then the page is added, the current position set to the top-left corner according to the left and top margins, and Header() is called to display the header.
The font which was set before calling is automatically restored. There is no need to call SetFont() again if you want to continue with the same font. The same is true for colors and line width.
The origin of the coordinate system is at the top-left corner and increasing ordinates go downwards.
Parameters

orientation
Page orientation. Possible values are (case insensitive):
P or Portrait
L or Landscape
The default value is the one passed to the constructor.
size
Page size. It can be either one of the following values (case insensitive):
A3
A4
A5
Letter
Legal
or an array containing the width and the height (expressed in user unit).

The default value is the one passed to the constructor.

sc_pdf_AddPage([string orientation [, mixed size]]);

Vcs não vão acreditar na simplicidade que era pra resolver isso…

na Configuração do Report PDF coloquei meu formato em customizado 312 x 176 que é o padrão do formulário contínuo do cheque.
Lá embaixo em quantidade de paginas = 1, quantidade de colunas =1, Largura das Colunas = 176(largura do cheque, Altura das Colunas = 76,(altura de cada cheque).

pronto…apareceu tudo na mesma página…
Obrigado a todos…