I have a large set of text that I would like to export as pdf on multiple pages and with page margins – e.g. typical A4 page. When I export the text, a single pdf file without any page margins is created. How do I get multiple pages with page margins? The text itself is a column, maybe imagine a long list of business cards.
I should have provided and example. Here it is – assume I want to export this text on probably 2-3 pages:
font = FontFamily -> "Times"; ex = TextGrid[{{Style["Hello", FontFamily -> font, Bold]}, {Style[ "World (the one with humans on it. Solar System in the Milky \ Way and the so far only known Universe, although it might actually be \ a Multiverse)", FontFamily -> font]}, {Style["Just Testing", Darker@Gray, FontFamily -> font]}}, Alignment -> Left]; Table[ex, 20]; Column@% The text, of course, is not 20 times the same, but pulled from a database and different in each paragraph.


