Write results in latex

Dear Dynare users,
I am wondering whether there is an option to write the results generated by stoch simul in a latex file. In particular I would like to export the log file to tex (containing correlation table, variance decomposition, other moments, etc). Unfortunately I was able only to find the options

    write_latex_dynamic_model;
    write_latex_parameter_table;
    write_latex_definitions;

which only write in tex model equations and parameters.

Thanks in advance for any help!

Best,
Alessandro

Yes, stoch_simul takes tex as an option to enable LaTeX output. Alternatively, put
options_.TeX=1 before stoch_simul (or the first command where you want TeX-output)

1 Like

Thanks for your answer!