If you need the flexibility use RichText:
http://docs.unity3d.com/Manual/StyledText.html
GUIStyle style = new GUIStyle ();
style.richText = true;
GUILayout.Label("Some RICH text ",style);
We used this everywhere in "Codey's Lab" and it is excellent if you need more control.
↧