All of the Arduino print functions can be used in this library, see: Serial Print Functions
The functions work with any selected font. All of these functions print from the current cursor position
The println variants of these functions are also supported:
Because of the AVR processor architecture, character strings consume RAM. This is not the case for other processors like ARM or PIC32. The Arduino sytem includes a F() macro to help work around this AVR issue. Printing strings using the F() macro results in the compiler not using RAM on AVR based systems to store the string. The F() macro can also be used on non AVR based systems.