Skip to content

[numerics] Use absolute-value markers in math mode. #1566

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

Merged
merged 1 commit into from
Mar 25, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -9690,10 +9690,10 @@
\begin{itemdescr}
\pnum
\requires
\tcode{|m|} and \tcode{|n|} shall
$|\tcode{m}|$ and $|\tcode{n}|$ shall
be representable as a value of \tcode{common_type_t<M, N>}.
\begin{note} These requirements ensure, for example,
that \tcode{gcd(m, m) = |m|} is representable as a value of type \tcode{M}. \end{note}
that $\tcode{gcd(m, m)} = |\tcode{m}|$ is representable as a value of type \tcode{M}. \end{note}

\pnum
\remarks
Expand All @@ -9703,7 +9703,7 @@
\pnum
\returns
Zero when \tcode{m} and \tcode{n} are both zero.
Otherwise, returns the greatest common divisor of \tcode{|m|} and \tcode{|n|}.
Otherwise, returns the greatest common divisor of $|\tcode{m}|$ and $|\tcode{n}|$.

\pnum
\throws
Expand All @@ -9721,9 +9721,9 @@
\begin{itemdescr}
\pnum
\requires
\tcode{|m|} and \tcode{|n|} shall
$|\tcode{m}|$ and $|\tcode{n}|$ shall
be representable as a value of \tcode{common_type_t<M, N>}.
The least common multiple of \tcode{|m|} and \tcode{|n|}
The least common multiple of $|\tcode{m}|$ and $|\tcode{n}|$
shall be representable as a value of type \tcode{common_type_t<M,N>}.

\pnum
Expand All @@ -9734,7 +9734,7 @@
\pnum
\returns
Zero when either \tcode{m} or \tcode{n} is zero.
Otherwise, returns the least common multiple of \tcode{|m|} and \tcode{|n|}.
Otherwise, returns the least common multiple of $|\tcode{m}|$ and $|\tcode{n}|$.

\pnum
\throws
Expand Down