-tlatex
in der Kommandozeile verwenden, oder format="latex"
in der Ant-Aufgabe
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.
#### Embedding in LaTeX Documents
If you're aiming to incorporate the LaTeX output directly within another LaTeX document, employ the `-tlatex:nopreamble` flag. By doing so, PlantUML will output only the tikz-picture component, excluding the document preamble, facilitating a seamless integration into your existing LaTeX files.
If you want to incorporate the LaTeX output directly within another LaTeX document, use option `-tlatex:nopreamble`. PlantUML will output only the tikz-picture component, excluding the document preamble, facilitating a seamless integration into your existing LaTeX files.
@startuml
class Subscriber {
subscriberId
}
class AccumUsage {
subscriberId
}
class IpSession {
ipAddress
specificData
sapcOriginStateId
apnId
}
Subscriber "1" -[#blue]-> "1..*" IpSession
Subscriber "1" --> "0..1" AccumUsage
@enduml
@startuml
Bob -> Alice: hello
return Ok
@enduml
(TODO: #362 provide some examples in Overleaf)
hyperref
hyperref
in Ihren LaTeX-Dokumenten verwenden, haben Sie die Möglichkeit, Links zu erstellen, die zu bestimmten Ankern innerhalb desselben LaTeX/PDF-Dokuments führen. Im PlantUML-Beispiel unten sehen Sie, dass der zweite und letzte Link auf eine bestimmte Ressource innerhalb des LaTeX-Dokuments verweist:
@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
Eine ausführliche Diskussion und verwandte Fragen finden Sie im zweiten Q&A-Thread unten.