Pregunta

Estoy utilizando Beamer con el fin de hacer una presentación. En uno de los cuadros que quiero escribir algo como esto:

" cursiva es así"

utiliza un comando \ it de Beamer para hacer esto:

\ it {} La cursiva es así

Sin embargo, como resultado me sale:

" La cursiva es así "

¿Es posible hacer cursiva sólo una pieza del texto?

¿Fue útil?

Solución

What about \emph{text} ?

Otros consejos

I believe you're looking for \textit{}.

Also, in the future, consider asking LaTeX questions on the TeX - LaTeX Stack Exchange site.

\it is a switch, it changes the font series starting from the point it was issued till the end of the current block. Therefore you have to enclose the block of text it should affect:

{\it Italics} is like that

Alternatively you can use \textit as suggested by gotgenes which only affects the text passed to the command within braces:

\textit{Italics} is like that.
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top