aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_latex.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2024-04-10 22:24:34 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2024-04-10 23:08:18 -0400
commit90873fabd7451e1dd8c4b39303906e19bdc481f7 (patch)
tree2dbb0e41f3e9c761645c8b37dafe979a01d38d32 /org/out_latex.org
parent0.15.0 (diff)
0.16.0 sisudoc (src/sisudoc sisudoc spine)
- src/sisudoc (replaces src/doc_reform) - sisudoc spine (used more)
Diffstat (limited to 'org/out_latex.org')
-rw-r--r--org/out_latex.org22
1 files changed, 11 insertions, 11 deletions
diff --git a/org/out_latex.org b/org/out_latex.org
index 8783da8..daafd37 100644
--- a/org/out_latex.org
+++ b/org/out_latex.org
@@ -1,5 +1,5 @@
-*- mode: org -*-
-#+TITLE: spine (doc_reform) output latex
+#+TITLE: sisudoc spine (doc_reform) output latex
#+DESCRIPTION: documents - structuring, publishing in multiple formats & search
#+FILETAGS: :spine:output:latex:pdf:
#+AUTHOR: Ralph Amissah
@@ -22,11 +22,11 @@
** _module template_ :latex:pdf:module:
*** latex.d module & templates
-#+HEADER: :tangle "../src/doc_reform/io_out/latex.d"
+#+HEADER: :tangle "../src/sisudoc/io_out/latex.d"
#+HEADER: :noweb yes
#+BEGIN_SRC d
<<doc_header_including_copyright_and_license>>
-module doc_reform.io_out.latex;
+module sisudoc.io_out.latex;
@safe:
<<Template_paper_latex>>
<<Template_output_latex>>
@@ -134,7 +134,7 @@ template outputLaTeX() {
#+HEADER: :noweb yes
#+BEGIN_SRC d
template outputLaTeXstyInit() {
- import doc_reform.io_out;
+ import sisudoc.io_out;
auto paper = paperLaTeX;
<<Function_output_style_write>>
<<Function_output_stylesheets_get_each_written>>
@@ -218,7 +218,7 @@ void writeOutputLaTeX(T,M)(
}
}
if (!exists(pth_latex.latex_path_stuff ~ "/index.html")) {
- import doc_reform.io_out.html_snippet;
+ import sisudoc.io_out.html_snippet;
mixin htmlSnippet;
auto f = File(pth_latex.latex_path_stuff ~"/index.html", "w");
f.writeln(format_html_blank_page_guide_home(
@@ -232,7 +232,7 @@ void writeOutputLaTeX(T,M)(
}
// should be in latex init and done just once, doc_matters not passed there though
if (!exists(pth_latex.base ~ "/index.html")) {
- import doc_reform.io_out.html_snippet;
+ import sisudoc.io_out.html_snippet;
mixin htmlSnippet;
auto f = File(pth_latex.base ~"/index.html", "w");
f.writeln(format_html_blank_page_guide_home(
@@ -244,7 +244,7 @@ void writeOutputLaTeX(T,M)(
));
}
if (!exists(pth_latex.base_sty ~ "/index.html")) {
- import doc_reform.io_out.html_snippet;
+ import sisudoc.io_out.html_snippet;
mixin htmlSnippet;
auto f = File(pth_latex.base_sty ~"/index.html", "w");
f.writeln(format_html_blank_page_guide_home(
@@ -670,9 +670,9 @@ import
std.uri,
std.conv : to;
import
- doc_reform.io_out,
- doc_reform.io_out.rgx,
- doc_reform.io_out.rgx_latex;
+ sisudoc.io_out,
+ sisudoc.io_out.rgx,
+ sisudoc.io_out.rgx_latex;
mixin spineRgxOut;
static auto rgx = RgxO();
mixin spineRgxLSC;
@@ -2409,7 +2409,7 @@ string _latex_tail = format(q"┃
#+NAME: doc_header_including_copyright_and_license
#+HEADER: :noweb yes
#+BEGIN_SRC emacs-lisp
-<<./spine_version_info_and_doc_header_including_copyright_and_license.org:spine_doc_header_including_copyright_and_license()>>
+<<./sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org:spine_doc_header_including_copyright_and_license()>>
#+END_SRC
* __END__