-tlatex
with the command line, or format="latex"
with the Ant task.
If you want to include the LaTeX output directly into another LaTeX document you can use -tlatex:nopreamble
. This way PlantUML will only export the tikz-picture itself, without the document preamble.
@startuml
class Subscriber {
subscriberId
}
class AccumUsage {
subscriberId
}
class IpSession {
ipAddress
specificData
sapcOriginStateId
apnId
}
Subscriber "1" -[#blue]-> "1..*" IpSession
Subscriber "1" --> "0..1" AccumUsage
@enduml
在线查看结果(TODO:#362)
@startuml
Bob -> Alice: hello
return Ok
@enduml
See result online (TODO: #362)
hyperref
package then you can make links to defined anchors within your Latex/PDF document.
For example, the second and last links below are to the Latx document:
@startuml
participant Bob [[http://www.yahoo.com]]
participant Alice [[latex://resource-interaction]]
Bob -> Alice : [[http://www.google.com]] hello
Bob -> Alice : [[latex://resource-interaction]] interact
@enduml
[Ref. QA-3558]