From e0c6872cf40896c7be36b11dcc744620f10adf1d Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 2 Sep 2019 13:46:59 +0900 Subject: Initial commit --- support/word2x/fmt-latex.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 support/word2x/fmt-latex.h (limited to 'support/word2x/fmt-latex.h') diff --git a/support/word2x/fmt-latex.h b/support/word2x/fmt-latex.h new file mode 100644 index 0000000000..96977c1d14 --- /dev/null +++ b/support/word2x/fmt-latex.h @@ -0,0 +1,45 @@ +/* $Id: fmt-latex.h,v 1.8 1997/04/22 20:09:49 dps Exp $ */ +/* Shared stuff for the *TeX output format */ + +#ifndef __fmt_latex_h__ +#define __fmt_latex_h__ +#include "tblock.h" +#include "interface.h" +#include "latex-table.h" + +/* Anything shorter than this is not a real paragraph */ +#define PAR_TRESHOLD_LEN 70 +/* Less than this is not a heading */ +#define HEADING_TRESHOLD_LEN 10 + +/* Type */ +struct embed +{ + const char *key; + int key_len; + void (*handle)(const char *txt, const docfmt *fmt, FILE *out, + void *d); +}; + + +/* Local data */ +struct latex_data +{ + latex_table *tabl; + int col; + int row; + const char *last_tc; + struct unit_info unit_d; + int par_flg; + int list_flg; +}; + +/* latex-fmt.cc */ +extern tblock *__latex_do_map(const char *s); + +/* latex-embed.cc */ +extern void ltx_embed(const tok_seq::tok *t, const docfmt *fmt, FILE *out, + void *d); + +#endif /* __fmt_latex_h__ */ + -- cgit v1.2.3