I am currently teaching a PreCalculus course, and I am using Mathematica to write units & texts for my course. But one thing I am having trouble is formatting the output. The stylesheet that I am using is "Textbook", and I would like to have the "f" in "f(x)" appear as Times New Roman - Bold Italic. I would like to do this as a default typeset for all my Outputs. It just looks more traditional/professional than the current typeset of Courier. I have tried editing the Stylesheet - "Output", but it does not change the look of the Output in the following code.
ProbNum= 6;
eval={13, 23, 30, -15, -17, 12.5};
firstrow={" ","f(x)", "=", "f(Reference #)", "=", "range value"};
Questions =Table[{StringForm["``.)",i],StringForm["f(``)",eval[[i]]],"=","f(__________)","=", "__________"},{i,1,ProbNum}];
Grid[Questions,Spacings->{3,3},Alignment->{Center,Center}]
This is the code I am using to create 6 questions concerning a given periodic function where they have to identify the reference number and range value for a given domain value. The given domain values are in the list "eval".
Any advice would be great.
Andrew Bayliss

