Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
xmltops
converte arquivos de ajuda xml do Scilab para formato Postscript
Seqüência de Chamamento
xmltops(dirs [,titles [,dir_language [default_language]]]]])
Parâmetros
- dirs
vetor de strings: um conjunto de endereços de diretórios para os quais os manuais postscript devem ser gerados ou
[]
- titles
vetor de strings: títulos associados a endereços de diretórios ou []
- dir_language
vetor de strings: idiomas associados a endereços de diretórios ou []
- default_language
vetor de strings: idiomas padrões associados aos endereços de diretórios ou []. Se um arquivo XML estiver faltando em dir_language, ele é copiado de default_language.
Descrição
Converte arquivos de ajuda Scilab contidos em um conjunto de diretórios para formato PS.
Exemplos
// example_1/ // `-- help // |-- en_US // | |-- example_1_function_1.xml // | |-- example_1_function_2.xml // | `-- example_1_function_3.xml // `-- fr_FR // |-- example_1_function_1.xml // |-- example_1_function_2.xml // `-- example_1_function_3.xml // `-- zh_TW // |-- example_1_function_1.xml // |-- example_1_function_2.xml // `-- example_1_function_3.xml my_module_path = pathconvert(SCI+'/modules/helptools/examples/example_1',%f,%f) // Construindo a ajuda em francês // ============================================================================= my_french_help_dir = my_module_path+'/help/fr_FR'; my_french_help_title = 'Example 1 [fr_FR]'; my_french_ps = xmltops(my_french_help_dir,my_french_help_title,'fr_FR') // Construindo a ajuda em inglês // ============================================================================= my_english_help_dir = my_module_path+'/help/en_US'; my_english_help_title = 'Example 1 [EN_US]'; my_english_ps = xmltops(my_english_help_dir,my_english_help_title,'en_US') // Construindo a ajuda em chinês // ============================================================================= my_chinese_help_dir = my_module_path+'/help/zh_TW'; my_chinese_help_title = 'Example 1 [zh_TW]'; my_chinese_ps = xmltops(my_chinese_help_dir,my_chinese_help_title,'zh_TW');
Ver Também
Report an issue | ||
<< xmltopdf | utilities | apropos >> |