Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

provide the spacing commands for math also in text (as amsmath does) #303

Closed
FrankMittelbach opened this issue Mar 6, 2020 · 0 comments
Closed

Comments

@FrankMittelbach
Copy link
Member

Brief outline of the enhancement

Core LaTeX only offers \, in math and text while \:, \; and \! are only available in math. However, all of them are quite useful for text but there only \negthinspace (long form of \! is available.

In contrast amsmath once loaded makes all of them available in text and math. This should be moved to the kernel to be always available.

Minimal example showing the current behaviour

\RequirePackage{latexbug}       % <--should be always the first line (see CONTRIBUTING)!
\documentclass{article}

%\usepackage{amsmath}
\setlength{\parindent}{0pt}

\begin{document}

X\,X \par
X\:X \par
X\;X \par
X\!X \par

\end{document}

Minimal example showing the desired new behaviour

no error in the above document when amsmath is not loaded

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

No branches or pull requests

1 participant