Added variable scaling factor for Tex output

This commit is contained in:
2018-07-19 17:54:05 +02:00
parent d9f0f3cdd5
commit b72466957c
3 changed files with 13 additions and 13 deletions

2
main.c
View File

@@ -229,7 +229,7 @@ static void on_convert_clicked(gpointer button, gpointer user)
switch (sett.renderer) {
case RENDERER_LATEX_TIKZ:
output_file = fopen(file_name, "w");
latex_render_cell_to_code(cell_to_render, layer_list, output_file);
latex_render_cell_to_code(cell_to_render, layer_list, output_file, sett.scale);
fclose(output_file);
break;
case RENDERER_CAIROGRAPHICS: