Skip to content

Commit f33873d

Browse files
carnavaljakebolewski
authored andcommitted
add latex rst rendering, fix #12775
1 parent 24ea97c commit f33873d

File tree

4 files changed

+23
-18
lines changed

4 files changed

+23
-18
lines changed

base/error.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ systemerror(p, b::Bool) = b ? throw(Main.Base.SystemError(string(p))) : nothing
3838
assert(x) = x ? nothing : throw(Main.Base.AssertionError())
3939
macro assert(ex, msgs...)
4040
msg = isempty(msgs) ? ex : msgs[1]
41-
if !isempty(msgs) && isa(msg, Expr)
41+
if !isempty(msgs) && (isa(msg, Expr) || isa(msg, Symbol))
4242
# message is an expression needing evaluating
4343
msg = :(Main.Base.string($(esc(msg))))
4444
elseif isdefined(Main, :Base) && isdefined(Main.Base, :string)

base/markdown/render/rst.jl

+7
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,13 @@ function rst(io::IO, md::HorizontalRule)
5252
println(io, "" ^ 5)
5353
end
5454

55+
function rst(io::IO, l::LaTeX)
56+
println(io, ".. math::\n")
57+
for l in lines(l.formula)
58+
println(io, " ", l)
59+
end
60+
end
61+
5562
rst(io::IO, md) = writemime(io, "text/rst", md)
5663

5764
# Inline elements

doc/genstdlib.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ end
3737
torst(md) = isrst(md) ? flatten(md).content[1].code : tryrst(md)
3838

3939
function translate(file)
40-
@assert isfile(file)
40+
@assert(isfile(file))
4141
ls = split(readall(file), "\n")[1:end-1]
4242
doccing = false
4343
func = nothing

doc/stdlib/math.rst

+14-16
Original file line numberDiff line numberDiff line change
@@ -2858,28 +2858,26 @@ multi-threading. Use `FFTW.set_num_threads(np)` to use `np` threads.
28582858

28592859
.. function:: fft(A [, dims])
28602860

2861-
Performs a multidimensional FFT of the array ``A``. The optional ``dims``
2862-
argument specifies an iterable subset of dimensions (e.g. an integer,
2863-
range, tuple, or array) to transform along. Most efficient if the
2864-
size of ``A`` along the transformed dimensions is a product of small
2865-
primes; see :func:`nextprod`. See also :func:`plan_fft` for even
2866-
greater efficiency.
2861+
.. Docstring generated from Julia source
2862+
2863+
.. code-block:: julia
2864+
2865+
fft(A[, dims])
2866+
2867+
Performs a multidimensional FFT of the array ``A``\ . The optional ``dims`` argument specifies an iterable subset of dimensions (e.g. an integer, range, tuple, or array) to transform along. Most efficient if the size of ``A`` along the transformed dimensions is a product of small primes; see ``nextprod()``\ . See also ``plan_fft()`` for even greater efficiency.
28672868

2868-
A one-dimensional FFT computes the one-dimensional discrete Fourier
2869-
transform (DFT) as defined by
2869+
A one-dimensional FFT computes the one-dimensional discrete Fourier transform (DFT) as defined by
28702870

28712871
.. math::
28722872
2873-
\operatorname{DFT}(A)[k] = \sum_{n=1}^{\operatorname{length}(A)}
2874-
\exp\left(-i\frac{2\pi (n-1)(k-1)}{\operatorname{length}(A)} \right)
2875-
A[n].
2873+
\operatorname{DFT}(A)[k] =
2874+
\sum_{n=1}^{\operatorname{length}(A)}
2875+
\exp\left(-i\frac{2\pi
2876+
(n-1)(k-1)}{\operatorname{length}(A)} \right) A[n].
28762877
2877-
A multidimensional FFT simply performs this operation along each transformed
2878-
dimension of ``A``.
2878+
A multidimensional FFT simply performs this operation along each transformed dimension of ``A``\ .
28792879

2880-
Higher performance is usually possible with multi-threading. Use
2881-
`FFTW.set_num_threads(np)` to use `np` threads, if you have `np`
2882-
processors.
2880+
Higher performance is usually possible with multi-threading. Use ``FFTW.set_num_threads(np)`` to use ``np`` threads, if you have ``np`` processors.
28832881

28842882
.. function:: fft!(A [, dims])
28852883

0 commit comments

Comments
 (0)