On this page:
Two ways to start new page
Difference between @page[] and @slide[]

@page[] vs @slide[]

    Two ways to start new page
    Difference between @page[] and @slide[]

Two ways to start new page

In the multipage mode, there are two ways to start new page:


@slide["Title" #:tag ... #:showtitle #t]{
            content
            }


and


@page["Title" #:tag ... #:showtitle #t]
 
content


Difference between @page[] and @slide[]

The main difference is, there is no  {} around the content. This simplifies writing. But, on the other hand, @page[] has a disadvantage over @slide[]:
  • No way to use @after-pause[] when using @page[] instead of @slide[]

When using @page[], inside the content, use:
@bystro-local-toc[] instead of @table-of-contents[]
@subpage[1 ...] instead of @section[...]
@subpage[2 ...] instead of @subsection[...]
@subpage[3 ...] instead of @subsubsection[...]
@slide[] is more slideshow-oriented while @page[] is more writeup-oriented.