summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/dynamicnumber
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-10-04 22:26:15 +0000
committerKarl Berry <karl@freefriends.org>2015-10-04 22:26:15 +0000
commitdf227257473b435c063d95133438434400e00a9c (patch)
tree98e674df9df643cefd467aa13dbfe5abc0d97ea6 /Master/texmf-dist/doc/latex/dynamicnumber
parent9cae4f47b91ce3982f822bba831b250e18b9c110 (diff)
fibeamer (4oct15)
git-svn-id: svn://tug.org/texlive/trunk@38549 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/dynamicnumber')
-rw-r--r--Master/texmf-dist/doc/latex/dynamicnumber/LICENSE.txt22
-rw-r--r--Master/texmf-dist/doc/latex/dynamicnumber/README.md88
-rw-r--r--Master/texmf-dist/doc/latex/dynamicnumber/dynamicnumber.pdfbin0 -> 157486 bytes
3 files changed, 110 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/dynamicnumber/LICENSE.txt b/Master/texmf-dist/doc/latex/dynamicnumber/LICENSE.txt
new file mode 100644
index 00000000000..6327fe56a11
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/dynamicnumber/LICENSE.txt
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 Olivier Pieters
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
diff --git a/Master/texmf-dist/doc/latex/dynamicnumber/README.md b/Master/texmf-dist/doc/latex/dynamicnumber/README.md
new file mode 100644
index 00000000000..5830bd89cf4
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/dynamicnumber/README.md
@@ -0,0 +1,88 @@
+Dynamic Number
+==============
+
+What is it?
+-----------
+
+Dynamic Number dynamically typesets values generated in different kinds of scripts in LaTeX through the use of symbolic links. The aim is to reduce errors resulting from out-of-date numbers by directly setting them in the number generating file and importing a symbolic link in the LaTeX source file.
+
+It can be used to import not only numerical values into LaTeX, but even strings and pieces of code are possible. The main repository is located in [this](https://github.com/opieters/DynamicNumber) repository.
+
+**Attention** The symbolic links mentioned here are ***NOT*** related in any kind to the symbolic links used in UNIX systems. See example below to see what is meant with a symbolic link.
+
+Installation
+------------
+
+Depending on your desires, one or more might not be applicable. All the supported languages have a file in the `languages` folder. Currently only MATLAB and Python are supported to produce Dynamic Number (dn) list files (also called symbolic link lists).
+
+### LaTeX
+
+Currently the package is also available on CTAN. This is the preferred way of installing LaTeX packages. You can thus download it using your favourite (La)TeX package manager. The instructions below are thus obsolete.
+
+#### Linux and OS X
+
+Run the installation file in terminal: `source install.sh`.
+
+#### Windows
+
+For Windows, there is not yet a script. You must install it manually and add it to MiKTeX.
+
+1. Open the command line (`CTRL-R` and type `cmd`).
+2. Create the package with: `latex dynamicnumber.ins`.
+3. Extract the documentation to pdf with: `pdflatex dynamicnumber.dtx`.
+4. Use the instructions in [this](http://tex.stackexchange.com/questions/2063/how-can-i-manually-install-a-package-on-miktex-windows)
+
+### MATLAB
+
+Add the necessary functions to MATLAB's path.
+
+1. Clone the directory in your MATLAB folder (`Documents/MATLAB`).
+2. Now the contents should be in `Documents/MATLAB/DynamicNumber`.
+3. Open MATLAB.
+4. Set path to include the cloned folder. The Set path can be found in the File menu on older MATLAB installations or HOME, Environment in newer installations.
+
+### Python
+
+**TODO** Add to PyPI if stable.
+
+For the moment, add it to your project directory.
+
+Quick start
+-----------
+
+### LaTeX
+
+LaTeX usage is very straightforward. Load the package with `\usepackage{dynamicnumber}` and next load a symbolic link lists with `\dnreadfile{list}`. Now you can start using your dynamic variables with `\dnget{variable}`.
+
+More information and additional commands can be found in the documentation.
+
+**Attention!** Do not attempt to create a `pgfkey` with the name `dynamicnumber`, it will conflict with the internal workings of the package.
+
+### MATLAB and Python
+
+Create a symbolic link lists with the `dn()` command, then add symbolic links with the `add`-method.
+
+The `add`-method requires at least 2 arguments: the symbolic link name and a value (either numerical or string). The optional third can specify a unit for the value. The symbolic link will be stored to typeset both number and unit in a nice way, with the `units` package (`\unit{<value}{<unit>}`).
+
+Example (in Python, MATLAB code is almost identical)
+
+```python
+# Some computations and sensor readout to predict temperature tomorrow:
+temperature = 23.4
+temp_predictions = dn('TemperaturePredictions')
+temp_predictions.add('tomorrow',temparture,'C') # or \\Celcius instead of C
+```
+
+**Note!**: If you wish to use special LaTeX commands such as `\Celcius` or `\metre`, your need to be careful with the use of the backslash. In MATLAB you only need to add one backslash because of the way it is parsed, but in Python you need to add two of them! This is needed because the backslash is also used for escape sequences.
+
+Contributions
+-------------
+
+The libraries are basic in a sense that they do not have a lot of features or options. This is intentional. Users can easily adopt them to suit their own needs without having to go through 100s of lines of code and the learning curve is very small. So the main goal is to have a library that support many platforms, is (almost) identical on all these platforms and is simple to use.
+
+Bug fixes and small feature improvements are always welcome, you can use a pull request to add must-have features or perform bug fixes.
+
+License
+-------
+
+See the `LICENSE.txt` file.
diff --git a/Master/texmf-dist/doc/latex/dynamicnumber/dynamicnumber.pdf b/Master/texmf-dist/doc/latex/dynamicnumber/dynamicnumber.pdf
new file mode 100644
index 00000000000..1cc09e02bce
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/dynamicnumber/dynamicnumber.pdf
Binary files differ