diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-04-15 20:05:56 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-05-20 11:27:26 -0400 |
commit | 0b484b0a1a6405a53616416aaaa6512a602b6072 (patch) | |
tree | e9737b80ad9fd83254510368198f3fb6dfb8926c /src/doc_reform/io_out/latex.d | |
parent | cgi search form: path; theme; download remote src (diff) |
cli precedence over config file settings
- cli precedence over config file settings
- latex papersize settings sorted
Diffstat (limited to 'src/doc_reform/io_out/latex.d')
-rw-r--r-- | src/doc_reform/io_out/latex.d | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/doc_reform/io_out/latex.d b/src/doc_reform/io_out/latex.d index a021ee2..38dd486 100644 --- a/src/doc_reform/io_out/latex.d +++ b/src/doc_reform/io_out/latex.d @@ -1297,18 +1297,7 @@ string table(O,M)( string tail; } auto latex = LaTeX(); - foreach (paper_size_orientation; [ - "a4.portrait", - "a4.landscape", - "letter.portrait", - "letter.landscape", - "a5.portrait", - "a5.landscape", - "b4.portrait", - "b4.landscape", - // "legal.portrait", - // "legal.landscape", - ]) { + foreach (paper_size_orientation; doc_matters.conf_make_meta.conf.set_papersize) { latex.head = latex_head(doc_matters, paper_size_orientation); latex.content = latex_body(doc_abstraction, doc_matters, paper_size_orientation); latex.tail = latex_tail(doc_matters, paper_size_orientation); |