digraph nonvirt {
    graph [nodesep=1.5, rankdir=BT];

    L1 [label = "L", shape=plaintext, height=.1, fontsize=24];
    L2 [label = "L", shape=plaintext, height=.1, fontsize=24];
    A [shape=plaintext, height=.1, fontsize=24];
    B [shape=plaintext, height=.1, fontsize=24];
    C [shape=plaintext, height=.1, fontsize=24];

    C -> B;
    C -> A;
    B -> L2;
    A -> L1;
}