LyX ⇒ Makros for text
Makros for text
Of course one could use MathMacros and \textrm, but that looks like a dodgy workaround to me. Using ERT isn't very satisfying either.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Makros for text
Code: Select all
\newcommand{\etal}{\textit{et al.}}
...
Santa \etal have written an article
...
and Claus \etal made the pictures
Makros for text
This will gobble the space after the command name. You have to use "\etal\ " or the xspace package.ihiribar wrote:you could do something likeCode: Select all
\newcommand{\etal}{\textit{et al.}} ... Santa \etal have written an article ... and Claus \etal made the pictures