I would like to vertically align texts of different sizes in latex (xelatex). For example, normal {\footnotesize small} normal does base-line alignment, while I want center-align. I know I can use \lower or \raisebox for small chunks, but I want to allow line breaks too. As I want this functionality very often in texts of various lengths, I would like a macro. How could I do it?
\documentclass[12pt]{article}
\begin{document}
I have notes {\footnotesize (footnote-size, too low)}.
Want to raise it {\lower-.2ex\hbox{\footnotesize (like this)}} a bit
{\footnotesize (but I want to allow for line break)}. How could I do this?
\end{document}
I've read Vertical alignment of fonts of different sizes on same line but the answers rely on boxes which don't allow line breaks. I've also read Something like \raisebox that respects line breaks but I'm not sure if there is an answer.


\raise(or\loweras you have it) each word and have the word spaces outside to allow line breaking. – David Carlisle Oct 11 '16 at 14:20