Skip to content

Commit 1c520e3

Browse files
committed
Bump version.
1 parent 5836bca commit 1c520e3

File tree

4 files changed

+37
-6
lines changed

4 files changed

+37
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ On Debian/Ubuntu you can install all that is needed with::
7373

7474
sudo apt install git cmake python3-dev g++ libpcre3 libpcre3-dev libgmp3-dev \
7575
libgtkmm-3.0-dev libboost-all-dev libgmp-dev libsqlite3-dev uuid-dev \
76-
texlive texlive-latex-extra dvipng \
76+
texlive texlive-latex-extra texlive-science dvipng \
7777
python3-matplotlib python3-mpmath python3-sympy python3-gmpy2
7878

7979
(on Ubuntu 14.04 you need to replace `cmake` with `cmake3` and also

cmake/version.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
set(CADABRA_VERSION_MAJOR 2)
22
set(CADABRA_VERSION_MINOR 3)
3-
set(CADABRA_VERSION_PATCH 3)
4-
set(CADABRA_VERSION_TWEAK 2)
3+
set(CADABRA_VERSION_PATCH 4)
4+
set(CADABRA_VERSION_TWEAK 0)
55
set(COPYRIGHT_YEARS "2001-2020")
66
math(EXPR SYSTEM_BITS "${CMAKE_SIZEOF_VOID_P} * 8")
77
find_program(GIT git PATHS ${GIT_DIR})

web2/cadabra2/source/faq.html

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,22 @@ <h1>Frequently Asked Questions</h1>
1414
<h2>Installation</h2>
1515

1616
<div class='faq_item'>
17-
<input type="radio" name="collapse" id="q_01_01">
17+
<input type="radio" name="collapse" id="q_01_02">
1818
<h3 class="handle">
19-
<label for="q_01_01">Starting the Jupyter kernel gives an error.</label>
19+
<label for="q_01_02">I get a 'Generic LaTeX error' when evaluating a cell.</label>
2020
</h3>
2121
<div class="content">
2222
<p>
23+
This is typically caused by a missing LaTeX package. The error
24+
dialog may give you a hint, but if you want to see the full
25+
LaTeX error, take note of the file name in the error dialog, and
26+
try to run that file through <tt>latex</tt> by hand.
27+
</p>
28+
<p>
29+
The most common missing package is <tt>ytableau</tt>, which you
30+
can get on Debian/Ubuntu systems by installing
31+
the <tt>texlive-science</tt> package and on Fedora by
32+
installing <tt>texlive-ytableau</tt>.
2333
</p>
2434
</div>
2535
</div>
@@ -33,7 +43,20 @@ <h3 class="handle">
3343
and independent indices?</label>
3444
</h3>
3545
<div class="content">
36-
When you declare an index set, you can give it...
46+
When you declare an index set, you can give it a <tt>position</tt>
47+
property, which takes one of three
48+
values <tt>free</tt>, <tt>fixed</tt>
49+
or <tt>independent</tt>. Indices which are <tt>free</tt> can be
50+
raised or lowered at will, and pairs can be at the same position;
51+
these are typically used in case there is no metric associated to
52+
them. Indices which have a different meaning when they are in
53+
subscript or superscript position should, instead, be
54+
declared <tt>fixed</tt>; this is what you would typically do in
55+
special/general relativity, where the difference between an upper
56+
or lower index is a factor of the metric. Cadabra can still swap
57+
the position of pairs of indices in e.g. the <tt>canonicalise</tt>
58+
function. If you want Cadabra to never touch the position of
59+
indices in a set, declare them <tt>independent</tt>.
3760
</div>
3861
</div>
3962

web2/cadabra2/source/help.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ <h2>Forum</h2>
1616
at <a href="mailto:[email protected]">[email protected]</a>.
1717
</p>
1818

19+
<h2>Frequently asked questions</h2>
20+
<p>
21+
If you have a question, please first consult the list of
22+
<a href="faq.html">frequently asked questions</a>; yours may be on
23+
it already.
24+
</p>
25+
26+
1927
<h2>Reference guide</h2>
2028
<p>
2129
This reference guide is the place to go for a detailed specification

0 commit comments

Comments
 (0)