I'll try to cover the parts of your question separately.
Multiplexing
Is the multiplexer represented in the schematic where it says "buffers"?
Nope! The multiplexer is the select digit part of the circuit. As you said, a multiplexer is an electrical switch: if I have \$n\$ "selector" inputs, I can choose from \$2^n\$ outputs. In your case, you have a two bit counter (because 1 bit isn't enough to count up to 2) which is connected to the "select" part of the multiplexer. The mux then sets one of its four outputs high, depending on what the counter is. If you make your counter reset as soon as it hits 3, then your multiplexer will set 0 high, then 1, then 2, and repeat this loop forever.
If the ultimate goal is to display the output on two additional displays, why couldn't we just wire the all the a's, b's, c's, etc. together?
When the mux has set digit 0 high, we only want to light up display 0 (and likewise for 1 and 2). If you wire the displays together, you can't control them all with different digits.
High End Digit Driver
The purpose of the transistor drivers are to supply/sink current to/from the LEDs, but it's unclear to what it's connected to electrically in terms of the emitter, collector, and base.
Look at a single digit driver. When its mux output is high, you want current to flow from your power supply into the LEDs; when the mux is low, you want to block that current. That means your which digit? output is probably connected to the base of the transistor, and setting it high allows current to flow from the collector to the emitter. Is that enough of a step in the right direction?
If the drivers are simply sourcing or sinking current, why are they connected to the multiplexer?
You'll have three drivers. You only want to turn on one at a time, and the multiplexer picks which one. They aren't "simply sourcing current", I guess - they're current sources that you can selectively turn on and off.
Counter Circuit
However, what is considered a desirable output here?
You want to count
0, 1, 2, 0, 1, 2, ...
so you'll need two wires (like I mentioned above). What parts do you have access to? What kind of counter circuits have you seen before?
As Nedd mentioned, you have a good oscillator set up - that'll be the input to your counter. Flip-flops would be a standard approach from there.
Best Answer
This is the schematic of a TTL logic component (here an 7404 inverter), with the typical totem-pole output. The output consists of a push-pull driver with a resistor and a diode added. Like Russell says this is not the classic PNP-NPN complementary pair push-pull, but one where both transistors are NPN. Typical of the TTL totem-pole output is its asymmetrical drive capability: 16mA sink/-0.4mA source.
I guess the name comes from the stacking of components on top of each other, like the objects on a real totem-pole. I'm not an anthropologist.