3

There's any way on LaTeX to make a note between lines of the normal text? Exactly like this: Note

In this case, the note/var ("r") over the "t" character...

  • \underset and \overset commands are your friends: https://tex.stackexchange.com/a/39230/31034 –  Dec 30 '19 at 14:05
  • This is so simple... Thank you very much... If you want to make the response I'm happy to confirm it to put the question as answered... – Raphael Soares Dec 30 '19 at 14:09

1 Answers1

2

Using \overset with amsmath package in math mode is a possible solution.

\documentclass[]{article}
\usepackage{amsmath}
\newcommand{\os}[2]{${\overset{\text{#1}}{\text{#2}}}$}
\begin{document}
Vat. has \textit{an\os{r}{t}e:}

Vat. has an\os{r}{t}e:
\end{document}

enter image description here

  • This obviously works -- but strictly speaking math-typesetting should be reserved for typesetting mathematics ... Especially if you use this kind of arrangement more often or if you need a specific font, you should look into the stackengine-package – Florian Jan 24 '20 at 13:38