Skip to content

Commit 5b5c7f0

Browse files
author
Kasper Peeters
committed
Update docs.
1 parent ac9bcb7 commit 5b5c7f0

File tree

7 files changed

+36
-13
lines changed

7 files changed

+36
-13
lines changed

cmake/version.cmake

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

web2/cadabra2/source/changelog.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ <h1>Change log</h1>
1818
<a name="master"></a>
1919
<h3>github master (2.4.1)</h3>
2020
<ul>
21+
<li>Add missing trig functions for display and passthrough to sympy (Oscar).</li>
2122
</ul>
2223

2324
<h3>2.4.0 (released 25-Aug-2022)</h3>

web2/cadabra2/source/index.html

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,19 @@
1414
<h1>News</h1>
1515
<p>See the <a href="changelog.html">change log</a> for latest changes
1616
only available on github.</p>
17-
<p><img class="running_image"
18-
src="/static/icons/cadabra2-cloud.png">Now available: Cadabra in the
19-
cloud, from your
20-
browser. Email <a href="mailto:[email protected]?Subject=Cadabra%20Cloud%20access&Body=I%20would%20like%20to%20register%20for%20beta%20access%20to%20Cadabra%20Cloud.">[email protected]</a>
21-
if you want to get access (please provide some details about
22-
what you want to use it for).
17+
<p><div id="cloud">
18+
<img class="running_image" src="/static/icons/cadabra2-cloud.png">
19+
<div>
20+
Now available: Cadabra in the
21+
cloud, from your
22+
browser. Email <a href="mailto:[email protected]?Subject=Cadabra%20Cloud%20access&Body=I%20would%20like%20to%20register%20for%20beta%20access%20to%20Cadabra%20Cloud.">[email protected]</a>
23+
if you want to get access (please provide some details about
24+
what you want to use it for).
25+
</div>
26+
</div>
2327
</p>
2428
<dl>
25-
<dt>25 Aug 2021</dt>
29+
<dt>25 Aug 2022</dt>
2630
<dd>Release of 2.4.0 (<a href="changelog.html#2.4.0">changes</a>).
2731
Update to accompany the release of
2832
the <a href="http://arxiv.org/abs/2208.11946">paper about the meld

web2/cadabra2/source/layout.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@
109109
</div>
110110
</div>
111111
</a>
112-
<a href="/v1x.html">
112+
<!-- <a href="/v1x.html">
113113
<div class="icon_background" >
114114
<img src="/static/icons/v1.png" alt="[upgrade]" />
115115
<div class="icon_text">
116116
Upgrade
117117
</div>
118118
</div>
119-
</a>
119+
</a> -->
120120
<hr/>
121121
<a href="/help.html">
122122
<div class="icon_background" >
@@ -138,7 +138,7 @@
138138
<div class="icon_background" >
139139
<img src="/static/icons/features.png" alt="[features]" />
140140
<div class="icon_text">
141-
Manual
141+
<div class="firstline">Reference</div><div>manual</div>
142142
</div>
143143
</div>
144144
</a>

web2/cadabra2/source/papers.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,16 @@ <h1>Papers about Cadabra</h1>
4444
<p>
4545
Please cite the three papers above when you use Cadabra in your own
4646
work; those citations are the only way to convince the bean counters
47-
that this software is useful.
47+
that this software is useful!
4848
</p>
49+
<p>
50+
The <tt>meld</tt> algorithm has been documented in
51+
</p>
52+
<blockquote class="reference">
53+
<div class="author">Dominic Price, Kasper Peeters and Marija Zamaklar</div>
54+
<div class="title">Hiding canonicalisation in tensor computer algebra</div>
55+
<div class="pubinfo"><a href="https://arxiv.org/abs/2208.11946">arXiv:2208.11946</a></div>
56+
</blockquote>
4957
<p>Finally, a general introduction to the old version of Cadabra for a
5058
wider public can be found in</p>
5159
<blockquote class="reference">

web2/cadabra2/source/people.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ <h2>Acknowledgements</h2>
3333
Special thanks to José M. Martín-García (for the xPerm
3434
canonicalisation code), James Allen (for writing much of the original
3535
factoring code), Leo Brewin (for writing beautiful
36-
tutorials), Mattia Scomparin (for contributing tutorial notebooks) the
36+
tutorials), Mattia Scomparin (for contributing tutorial notebooks),
37+
Oscar Felisola (for LaTeX related patches), the
3738
Software Sustainability Institute and the Institute of Advanced Study
3839
(for financial support). Thanks to the many people who have sent me
3940
bug reports (keep 'm coming), and thanks to all of you who use

web2/cadabra2/source/static/styles/cadabra-web.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,16 @@ div#main h1 span.date {
193193
font-weight: normal;
194194
}
195195

196+
#cloud {
197+
display: flex;
198+
flex-direction: row;
199+
align-items: center;
200+
}
201+
#cloud div {
202+
margin-left: 20px;
203+
}
196204
.running_image {
205+
margin-left: 40px;
197206
height: 40px;
198207
width: 40px;
199208
}

0 commit comments

Comments
 (0)