I am not quite sure what you mean. Verbatim switches to a non-proportional typrewriter font. You can change that, of course, but there is a reason for that.
You might also be interested in package listings.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
I think I'm having problems with too much text inside the verbatim. So, I was thinking of moving part of the text outside the verbatim. And, have the text outside and inside be the same font, same size, etc.
Basically, I have a few long sentances in front of a few columns of data. I'd want to try and put the sentances outside of the verbatim, and put the columns inside the verbatim.
I already looked at the listing package, but I didn't see anything that I had to have.
\documentclass{article}
\usepackage{listings}
\lstset{
breaklines=true,
basicstyle=\ttfamily}
\begin{document}
\begin{verbatim}
This is a very very very very very very long line that will run off the page in verbatim but not in lstlisting with breaklines=true.
\end{verbatim}
\begin{lstlisting}
This is a very very very very very very long line that will run off the page in verbatim but not in lstlisting with breaklines=true.
\end{lstlisting}
\end{document}
But, when I incorporate the above into my own large document I get the error:
Well, I'm no longer getting the Error that I talked about above, but the text is no wrapping around as desired.
Can I put the below two "lstset" option setting in the "\usepackage{listings}" command. If I can put the "breaklines" and "basicstyle" options in the "\usepackage" can you post the code showing how to do that.
\documentclass{article}
\usepackage{listings}
\lstset{
breaklines=true,
basicstyle=\ttfamily}
\begin{document}
\begin{verbatim}
This is a very very very very very very long line that will run off the page in verbatim but not in lstlisting with breaklines=true.
\end{verbatim}
\begin{lstlisting}
This is a very very very very very very long line that will run off the page in verbatim but not in lstlisting with breaklines=true.
\end{lstlisting}
\end{document}