If you load the natbib citation management package (with the option numbers, since it looks like you use a numeric citation call-out style), you could issue the following citation command to achieve your objective:
\cite[\S12.3.2]{<foo>}
where <foo> is the key of the bib entry you wish to cite.
Here's the output of a minimal working example that illustrates these points:

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{abcdefgh.bib}
@article{xyz,
author = "Anne Author",
title = "Thoughts",
year = "3001",
journal= "Circularity Today",
volume = "111",
number = 1,
pages = "1-100",
}
\end{filecontents}
\usepackage[numbers]{natbib}
\bibliographystyle{plainnat}
\begin{document}
\cite[\S12.3.2]{xyz}
\bibliography{abcdefgh}
\end{document}
natlibhave some incompatibility withalgorithm2e. I got an error when using both libraries in the same document. – Daniel Hernández Feb 04 '15 at 20:30natbibbeforealgorithm2e. – Mico Feb 04 '15 at 20:39titlesecbefore both packages. Your solution is better. – Daniel Hernández Feb 04 '15 at 22:14