How to change font size on part of the page in LaTeX?

Latex

Latex Problem Overview


I would like to change the text size for some page part, e.g. for a verbatim block:

\begin{verbatim}
    <how to set the font size here to 10 pt? />
\end{verbatim}

Latex Solutions


Solution 1 - Latex

\begingroup
    \fontsize{10pt}{12pt}\selectfont
    \begin{verbatim}  
        % how to set font size here to 10 px ?  
    \end{verbatim}  
\endgroup

Solution 2 - Latex

Example:

\Large\begin{verbatim}
   <how to set font size here to 10 px ? />
\end{verbatim}
\normalsize

\Large can be obviously substituted by one of:

\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge

If you need arbitrary font sizes:

Solution 3 - Latex

The use of the package \usepackage{fancyvrb} allows the definition of the fontsize argument inside Verbatim:

\begin{Verbatim}[fontsize=\small]
print "Hello, World"
\end{Verbatim}

The fontsize that you can specify are the common

\tiny 
\scriptsize  
\footnotesize 
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge

Solution 4 - Latex

To add exact fontsize you can use following. Worked for me since in my case predefined ranges (Large, tiny) are not match with the font size required to me.

\fontsize{10}{12}\selectfont This is the text you need to be in 10px

More info: https://tug.org/TUGboat/tb33-3/tb105thurnherr.pdf

Solution 5 - Latex

http://en.wikibooks.org/wiki/LaTeX/Formatting

use \alltt environment instead. Then set size using the same commands as outside verbatim environment.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionjwaliszkoView Question on Stackoverflow
Solution 1 - LatexAlexey MalistovView Answer on Stackoverflow
Solution 2 - LatexmikuView Answer on Stackoverflow
Solution 3 - LatexAziz AltoView Answer on Stackoverflow
Solution 4 - LatexMadura PradeepView Answer on Stackoverflow
Solution 5 - LatexPickmanView Answer on Stackoverflow