diff options
author | Karl Berry <karl@freefriends.org> | 2023-08-04 21:15:45 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-08-04 21:15:45 +0000 |
commit | 65d9ff0725fc889bd68eacc199fc719fe6aa1c2e (patch) | |
tree | 90ce3ace0da47d3026b6850c61e0aef470e1ec99 /Master/texmf-dist/doc/lualatex/luamaths | |
parent | 95de607f96c1041b2529ed9234141206f63ba71e (diff) |
luamaths (4aug23)
git-svn-id: svn://tug.org/texlive/trunk@67817 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/lualatex/luamaths')
-rw-r--r-- | Master/texmf-dist/doc/lualatex/luamaths/README.txt | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/lualatex/luamaths/luamaths.bib | 1 | ||||
-rw-r--r-- | Master/texmf-dist/doc/lualatex/luamaths/luamaths.pdf | bin | 145138 -> 146025 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/lualatex/luamaths/luamaths.tex | 18 |
4 files changed, 17 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/lualatex/luamaths/README.txt b/Master/texmf-dist/doc/lualatex/luamaths/README.txt index 926a94962c7..43acb565dd9 100644 --- a/Master/texmf-dist/doc/lualatex/luamaths/README.txt +++ b/Master/texmf-dist/doc/lualatex/luamaths/README.txt @@ -1,5 +1,5 @@ # The luamaths package -# version 1.1 +# version 1.3 # Authors: Chetan Shirore and Ajit Kumar # Email: mathsbeauty@gmail.com diff --git a/Master/texmf-dist/doc/lualatex/luamaths/luamaths.bib b/Master/texmf-dist/doc/lualatex/luamaths/luamaths.bib index 4069c4adc2a..8078492e116 100644 --- a/Master/texmf-dist/doc/lualatex/luamaths/luamaths.bib +++ b/Master/texmf-dist/doc/lualatex/luamaths/luamaths.bib @@ -1,4 +1,3 @@ -\begin{filecontents}{luamodtbl.bib} @online{online.luaorg, title = {Lua Programming Language}, diff --git a/Master/texmf-dist/doc/lualatex/luamaths/luamaths.pdf b/Master/texmf-dist/doc/lualatex/luamaths/luamaths.pdf Binary files differindex 0b5d310b1d5..d5389a3894f 100644 --- a/Master/texmf-dist/doc/lualatex/luamaths/luamaths.pdf +++ b/Master/texmf-dist/doc/lualatex/luamaths/luamaths.pdf diff --git a/Master/texmf-dist/doc/lualatex/luamaths/luamaths.tex b/Master/texmf-dist/doc/lualatex/luamaths/luamaths.tex index 8e501abf14e..3cb499b88c8 100644 --- a/Master/texmf-dist/doc/lualatex/luamaths/luamaths.tex +++ b/Master/texmf-dist/doc/lualatex/luamaths/luamaths.tex @@ -42,7 +42,7 @@ The \verb|luamaths| package is released under the LaTeX Project Public License v \section{Commands in the luamaths package} Table \ref{tbl:opluamaths} lists operations in the \verb|luamaths| package. \begin{center} -\begin{longtable}{llm{6cm}} +\begin{longtable}{llm{6.5cm}} \toprule \multicolumn{1}{c}{\textcolor{blue}{Function}} & \multicolumn{1}{l}{\textcolor{blue}{Command Format}} & \multicolumn{1}{c}{\textcolor{blue}{Description}} \\ \toprule @@ -161,7 +161,7 @@ Table \ref{tbl:opluamaths} lists operations in the \verb|luamaths| package. \end{lstlisting} & \begin{lstlisting} \mathRound{number}{digits} -\end{lstlisting} & It rounds off a real number to a specified number of digits. \\ +\end{lstlisting} & It rounds off a real number to a specified number of decimal places. \\ \midrule \begin{lstlisting} \mathSin @@ -183,6 +183,15 @@ Table \ref{tbl:opluamaths} lists operations in the \verb|luamaths| package. \begin{lstlisting} \mathTan{number} \end{lstlisting} & Gives the tangent of a real number. Here the number is in radians.\\ +\midrule +\begin{lstlisting} +\complexRound +\end{lstlisting} & +\begin{lstlisting} +\complexRound{cx_num}{digits} +\end{lstlisting} & It rounds off a complex number to a specified number of decimal places.\\ + + \bottomrule \\ \caption{Operations in the luamaths package} \label{tbl:opluamaths} @@ -319,6 +328,11 @@ Table \ref{tbl:illluamaths} illustrates operations in the \verb|luamaths| packag \begin{lstlisting} \mathRound{\mathOp{9+\mathSin{4}}}{6} \end{lstlisting} & \(\mathRound{\mathOp{9+\mathSin{4}}}{6}\)\\ +\midrule + +\begin{lstlisting} +\complexRound{lcomplex(\mathPi,6)}{4} +\end{lstlisting} & \(\complexRound{lcomplex(\mathPi,6)}{4}\)\\ \bottomrule \\ \caption{Illustrations of commands in the luamaths package} \label{tbl:illluamaths} |