I'm using Springers svmono for a book with many mathematical symbols and special characters.
There are quite a few problems with characters that are simply not printed (using pdfLatex), so I tried to add utf8 support:
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
However, there are errors. This is a MWE (svmono.cls needed to make it run):
%%%%%%%%%%%%%%%%%%%% book.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% sample root file for the chapters of your "monograph"
%
% Use this file as a template for your own input.
%
%%%%%%%%%%%%%%%% Springer-Verlag %%%%%%%%%%%%%%%%%%%%%%%%%%
% RE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[graybox,envcountchap,sectrefs]{svmono}
% choose options for [] as required from the list
% in the Reference Guide
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
\begin{verbatim}
# sin(π * t)
\end{verbatim}
Kudos (κῦδος)
\end{document}
Using utf8x I get:
ERROR: Undefined control sequence.
--- TeX said ---
\u-default-954 #1->\textkappa
Using utf8 I get:
ERROR: Package inputenc Error: Unicode char \u8:π not set up for use with LaTeX.
And I need characters more exotic than pi or kappa - like latin small letter long s e.g.

\piinstead ofπ, and similarly for the other symbols? You can do a Find&Replace in any good text editor. – yo' Aug 26 '12 at 21:06verbatim? E.g.allttorlistings? (Disclaimer: I don't say thatverbatimis wrong, but it simply does not interpret anything, and allowing the commands to be interpreted is one of the ways IMHO.) – yo' Aug 27 '12 at 06:05