Newpage is not workingwith teoz

+3 votes
asked Apr 16, 2019 in Bug by Serge Wenger Work (15,620 points)

newpage is not working with teoz

@startuml
!pragma teoz true
Bob -> Alice : hello
newpage
Bob -> Alice : hello page2
@enduml

http://www.plantuml.com/plantuml/png/SoWkIImgAStDuL8iA4fCpqrKA4dDhr8eAIfDvNBAJrBGjLDmpCbCJbMmKiX8pSd9vyfBBIz8JCSkgG2ICU9oICrB0Pe80000

1 Answer

+1 vote
answered Apr 22, 2019 by plantuml (294,960 points)
Thanks for the feedback.

This has been partially solved with last version (1.2019.5). We still have to remove the "white" unused part of diagrams.

However, before we finish the job, it would be nice if you could tell us if it's (almost) working on some complex examples of yours.

Thanks !
commented Apr 24, 2019 by Serge Wenger Work (15,620 points)
Hello,
Except the "white unused part", I see no problem
Thanks for the correction
commented Dec 15, 2020 by Yucheng

I use the latest version, it still has the problem with unwanted white part.

     PlantUML version 1.2020.24beta2 (Unknown compile time)    
     (GPL source distribution)                                 
                                                               
     Dot version: dot - graphviz version 2.44.1 (20200629.0846)
     Installation seems OK. File generation OK                 
                                                               
     Java Runtime: Java(TM) SE Runtime Environment             
     JVM: Java HotSpot(TM) Client VM                           
     Default Encoding: GBK                                     
     Language: zh                                              
     Country: CN                                               
                                                               
     PLANTUML_LIMIT_SIZE: 4096

the test plantuml:

@startuml

!pragma teoz true

participant Bob as b

participant AliceB as a

a->b: request

b->a: response

a->b: request

b->a: response

newpage 

a->b: request

b->a: response

a->b: request

b->a: response

a->b: request

b->a: response

a->b: request

b->a: response

newpage

a->b: request

b->a: response

a->b: request

b->a: response

a->b: request

b->a: response

@enduml

commented Mar 7, 2023 by Ken Campbell (120 points)

Hi,

This issue is still not fixed as of version 1.2023.2.  When I execute the following Plantuml the lifelines from both pages are repeated on both pages.

@startuml

!pragma teoz true

app1 -> app2 ++

app2 -->> app1 --

newpage

app1 -> app2 ++

app2 -->> app1 --

@enduml

All else seems to work.

...