I asked a question earlier about \verb and overfull hbox :
In-line \verb -- overfull hbox problem
And regarding the solution there, changed many of my \verbs to \texttt{}s. I have come up with a new problem now. An example:
\documentclass {article}
\begin{document}
\section {Introduction}
The entry point is in \texttt{TRCS.Main()} (\texttt{TRCS\char`\\TRCS.cs}).
The stateless (see \S 3.4.3) forms are started immediately, then another controller
is invoked, namely \texttt{Workflow}.
\end{document}
Compiling this example will show my problem. \texttt{Workflow} causes an overflow, and a rather significant one. What should I do to alleviate the problem? Thanks in advance for your help!
\allowbreakwas helpful for me. When writing method names in code, I would suggest against using hyphenation and toward\allowbreak. I'm making a habit of inserting these at the case changes in in my camel-case method names. – greg Jan 06 '12 at 18:44