I want to use the \ast asterisk in my document. However in the PDF there is no more space after the occurrence of the star, and LaTeX wants to cram all the following text in one line which obviously isn't working. It is not only the subsequent space, it is all the spaces in the rest of the document which get ignored.
So this leads to the error -Overfull \hbox
The issue seems to have something to do with "Math Mode" because all LaTeX commands after the \ast will get the Warning: Command xy invalid in math mode
Is \asteating spaces?
\documentclass[a4paper,12pt,ngerman]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{textcomp}
\begin{document}
text text text John Doe (\ast 1958) text text text text text text text text text
text text text text text text text text text text text text text text text text text
text text text text text text text text text
\end{document}
\ast~to keep it together with the next char. – Sigur Feb 14 '15 at 01:39$\ast$, not just\ast... – Werner Feb 14 '15 at 06:27\newcommand{\written}[1]{\textasteriskcentered~#1}and then useJones (\written{1958). – egreg Feb 14 '15 at 10:57\newcommand{\born}{$\textasteriskcentered$}and use it(\born1959)I think there is a curly bracket too much in your example. – Max N Feb 15 '15 at 06:12\newcommand{\born}{\textasteriskcentered}and\born 1958. – egreg Feb 15 '15 at 10:43