blob: 546797a7c19042c6bc9e90a86802e66f35fa0926 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef TEX_HH
#define TEX_HH
#include "string.hh"
#include "boxes.hh"
/// parameter substitution in TeXstrings
String
substitute_args(String source, svec<String> args);
/**
this structure provides a simple macro mechanism:
if source == "tex%bla%", then
eval({"X","Y"}) == "texXblaY"
*/
/// #h# is in points
String vstrut(Real h);
#endif
|