diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2025-07-15 23:52:22 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2025-07-15 23:52:25 -0400 |
commit | 4321a13979f52a7c3c2fc0352dc7bf253527ddb1 (patch) | |
tree | 83bc8273d50f1017b7e6bdce02a8a48086061f12 /org/out_latex.org | |
parent | source & pod (fix build from non-pod source) (diff) |
imports, make line searchable
Diffstat (limited to 'org/out_latex.org')
-rw-r--r-- | org/out_latex.org | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/org/out_latex.org b/org/out_latex.org index 9767286..9312827 100644 --- a/org/out_latex.org +++ b/org/out_latex.org @@ -41,9 +41,8 @@ module sisudoc.io_out.latex; #+HEADER: :noweb yes #+BEGIN_SRC d template paperLaTeX() { - import - std.format, - std.conv : to; + import std.format; + import std.conv : to; auto paperLaTeX() { <<Struct_shared_geometry_paper_dimensions>> return PaperType(); @@ -289,9 +288,8 @@ void outputLaTeX(D,M)( #+NAME: Initialize_output_style #+BEGIN_SRC d -import - std.format, - std.conv : to; +import std.format; +import std.conv : to; #+END_SRC **** write latex styles output :latex:out: @@ -663,15 +661,13 @@ fonts to try: #+NAME: ImportsAndMixins_imports #+BEGIN_SRC d -import - std.file, - std.outbuffer, - std.uri, - std.conv : to; -import - sisudoc.io_out, - sisudoc.io_out.rgx, - sisudoc.io_out.rgx_latex; +import std.file; +import std.outbuffer; +import std.uri; +import std.conv : to; +import sisudoc.io_out; +import sisudoc.io_out.rgx; +import sisudoc.io_out.rgx_latex; mixin spineRgxOut; static auto rgx = RgxO(); mixin spineRgxLSC; |