Further set of documentation fixes

mr#1909
Johannes Pfeifer 2021-08-16 16:52:46 +02:00 committed by Stéphane Adjemian (Charybdis)
parent 41b3146273
commit c809e1c0a1
Signed by: stepan
GPG Key ID: 295C1FE89E17EB3C
4 changed files with 8 additions and 8 deletions

View File

@ -71,11 +71,11 @@
} }
@techreport{kamenik:2003, @techreport{kamenik:2004,
author = {Kamenik, Ondra}, author = {Kamenik, Ondra},
title = {Solution of Specialized Sylvester Equation}, title = {Solution of Specialized Sylvester Equation},
institution = {Manuscript}, institution = {Manuscript},
year = {2003} year = {2004}
} }
@Article{collard/juillard:2001:compecon, @Article{collard/juillard:2001:compecon,

View File

@ -649,8 +649,8 @@ equation is:
\end{equation*} \end{equation*}
In the general case, this equation is a specialized Sylvester equation, which In the general case, this equation is a specialized Sylvester equation, which
can be solved using the algorithm proposed by can be solved using the algorithm proposed by
\citet{kamenik:2003}\footnote{This paper is distributed with Dynare, in the \citet{kamenik:2004}\footnote{This paper is distributed with Dynare, in the
\texttt{sylvester.pdf} file under the documentation directory.}. \texttt{sylvester.pdf} file under the Dynare++ documentation directory.}.
\bibliographystyle{elsarticle-harv} \bibliographystyle{elsarticle-harv}
\bibliography{dr} \bibliography{dr}

View File

@ -1,9 +1,9 @@
% Encoding: UTF-8 % Encoding: UTF-8
@Article{Ratto_CompEcon_2008, @Article{Ratto_CompEcon_2008,
author = {Ratto, M.}, author = {Ratto, Marco},
journal = {Computational Economics}, journal = {Computational Economics},
title = {Analysing DSGE Models with Global Sensitivity Analysis}, title = {Analysing {DSGE} models with global sensitivity analysis},
year = {2008}, year = {2008},
pages = {115--139}, pages = {115--139},
volume = {31}, volume = {31},

View File

@ -37,7 +37,7 @@ class DynareLexer(RegexLexer):
"predetermined_variables","trend_var","log_trend_var","external_function", "predetermined_variables","trend_var","log_trend_var","external_function",
"write_latex_original_model","write_latex_dynamic_model", "write_latex_original_model","write_latex_dynamic_model",
"write_latex_static_model","write_latex_steady_state_model","resid","initval_file","histval_file","dsample", "write_latex_static_model","write_latex_steady_state_model","resid","initval_file","histval_file","dsample",
"periods","values","corr","steady","check","model_diagnostics","model_info", "periods","values","scales","corr","stderr","steady","check","model_diagnostics","model_info",
"print_bytecode_dynamic_model"," print_bytecode_static_model", "print_bytecode_dynamic_model"," print_bytecode_static_model",
"perfect_foresight_setup","perfect_foresight_solver","simul","stoch_simul", "perfect_foresight_setup","perfect_foresight_solver","simul","stoch_simul",
"extended_path","varobs","estimation","unit_root_vars","bvar_density", "extended_path","varobs","estimation","unit_root_vars","bvar_density",
@ -81,7 +81,7 @@ class DynareLexer(RegexLexer):
'shock_groups','conditional_forecast_paths','optim_weights', 'shock_groups','conditional_forecast_paths','optim_weights',
'osr_params_bounds','ramsey_constraints','irf_calibration', 'osr_params_bounds','ramsey_constraints','irf_calibration',
'moment_calibration','identification','svar_identification', 'moment_calibration','identification','svar_identification',
'matched_moments','occbin_constraints','surprise','overwrite', 'matched_moments','occbin_constraints','surprise','overwrite','bind','relax',
'verbatim','end','node','cluster','paths','hooks'), prefix=r'\b', suffix=r'\s*\b'),Keyword.Reserved), 'verbatim','end','node','cluster','paths','hooks'), prefix=r'\b', suffix=r'\s*\b'),Keyword.Reserved),
# FIXME: Commands following multiline comments are not highlighted properly. # FIXME: Commands following multiline comments are not highlighted properly.