Skip to content

Instantly share code, notes, and snippets.

@foooomio
Created December 8, 2019 12:42
Show Gist options
  • Save foooomio/d7c749ad00b2e5cd560cc4953c00f423 to your computer and use it in GitHub Desktop.
Save foooomio/d7c749ad00b2e5cd560cc4953c00f423 to your computer and use it in GitHub Desktop.
digraph G {
graph [rankdir = LR];
LTP_01 -> LTP_01_01 [label = "track"];
LTP_01 -> LTP_01_02 [label = "track"];
LTP_01 -> LTP_01_03 [label = "track"];
LTP_01_01 -> Thank_You [label = "recordingOf"];
LTP_01_02 -> Thank_You [label = "recordingOf"];
LTP_01_03 -> Thank_You [label = "recordingOf"];
LTP_01_01 [label = "1曲目", style = dashed];
LTP_01_02 [label = "2曲目", style = dashed];
LTP_01_03 [label = "3曲目", style = dashed];
LTSC_06_Princess -> LTSC_06_01 [label = "track"];
LTSC_06_01 -> Thank_You [label = "recordingOf"];
LTSC_06_01 [label = "1曲目", style = dashed];
MusicAlbum [shape = none];
MusicRecording [shape = none];
MusicComposition [shape = none];
MusicAlbum -> MusicRecording -> MusicComposition [arrowhead = none];
{rank = same; MusicAlbum; LTP_01;}
{rank = same; MusicRecording; LTP_01_01;}
{rank = same; MusicComposition; Thank_You;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment