You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
735 B
Python
17 lines
735 B
Python
import pypandoc
|
|
|
|
pypandoc.convert_file('main.md', 'docx', outputfile='Ponce_Mario.docx',
|
|
extra_args=[
|
|
'--filter=pandoc-crossref',
|
|
'--citeproc',
|
|
'--reference-doc=template-AJ25.docx',
|
|
'--bibliography=Hydrogen_Project.bib',
|
|
'--csl=ieee.csl'
|
|
#'--metadata=figureTitle=Figura',
|
|
#'--metadata=tableTitle=Tabla',
|
|
#'--metadata=listingTitle=Listado',
|
|
#'--metadata=link-citations=true',
|
|
#'--metadata=eqnPrefix=Ecuación '
|
|
]
|
|
|
|
) |