You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$phpWord->addNumberingStyle(
'numberStyle', // Nombre del estilo
[
'type' => 'multilevel', // Tipo de lista: 'multilevel' para numeración
'levels' => [
[
'format' => 'decimal',
'text' => '%1.', // Formato de número
'left' => 360, // Sangría
'hanging' => 360,
'tabPos' => 360,
'font' => 'Times New Roman', // Fuente para los números
'size' => 16 // Tamaño del número
]
]
]
);
the size or font items do not work when i use the numberStyle
the text rigth to the number apply the font and paragraph styles, the number apply the format, text, left, hanging, tabPos styles but the number remains on default values of font size or color or font family....
Expected behavior
the number should be size 16
Steps to reproduce
'Times New Roman', 'size' => 20, 'color' => 'FF0000'];
$estiloParrafoSeccion2 = ['alignment' => 'left', 'spaceAfter' => 100]; // Alineado a la izquierda
// Definir un estilo de lista numerada con tamaño modificado para los números
$phpWord->addNumberingStyle(
'numberStyle', // Nombre del estilo
[
'type' => 'multilevel', // Tipo de lista: 'multilevel' para numeración
'levels' => [
[
'format' => 'decimal',
'text' => '%1.', // Formato de número
'left' => 360, // Sangría
'hanging' => 360,
'tabPos' => 360,
'font' => 'Times New Roman', // Fuente para los números
'size' => 20 // Tamaño del número
]
]
]
);
// Crear una nueva sección
$section2 = $phpWord->addSection();
// Agregar una lista numerada, con el tamaño de número aumentado
$section2->addListItem("Primer elemento", 0, $estiloTextoSeccion2, 'numberStyle', $estiloParrafoSeccion2);
$section2->addListItem("Segundo elemento", 0, $estiloTextoSeccion2, 'numberStyle', $estiloParrafoSeccion2);
$section2->addListItem("Tercer elemento", 0, $estiloTextoSeccion2, 'numberStyle', $estiloParrafoSeccion2);
// Guardar el documento como archivo Word
$writer = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
$writer->save('listas_con_estilos.docx');
### PHPWord version(s) where the bug happened
1.3.0
### PHP version(s) where the bug happened
8.2
### Priority
- [ ] I want to crowdfund the bug fix (with [@algora-io](https://docs.algora.io/bounties/overview)) and fund a community developer.
- [ ] I want to pay the bug fix and fund a maintainer for that. (Contact @Progi1984)
The text was updated successfully, but these errors were encountered:
Describe the bug and add attachments
$phpWord->addNumberingStyle(
'numberStyle', // Nombre del estilo
[
'type' => 'multilevel', // Tipo de lista: 'multilevel' para numeración
'levels' => [
[
'format' => 'decimal',
'text' => '%1.', // Formato de número
'left' => 360, // Sangría
'hanging' => 360,
'tabPos' => 360,
'font' => 'Times New Roman', // Fuente para los números
'size' => 16 // Tamaño del número
]
]
]
);
the size or font items do not work when i use the numberStyle
the text rigth to the number apply the font and paragraph styles, the number apply the format, text, left, hanging, tabPos styles but the number remains on default values of font size or color or font family....
Expected behavior
the number should be size 16
Steps to reproduce
'Times New Roman', 'size' => 20, 'color' => 'FF0000']; $estiloParrafoSeccion2 = ['alignment' => 'left', 'spaceAfter' => 100]; // Alineado a la izquierda // Definir un estilo de lista numerada con tamaño modificado para los números $phpWord->addNumberingStyle( 'numberStyle', // Nombre del estilo [ 'type' => 'multilevel', // Tipo de lista: 'multilevel' para numeración 'levels' => [ [ 'format' => 'decimal', 'text' => '%1.', // Formato de número 'left' => 360, // Sangría 'hanging' => 360, 'tabPos' => 360, 'font' => 'Times New Roman', // Fuente para los números 'size' => 20 // Tamaño del número ] ] ] ); // Crear una nueva sección $section2 = $phpWord->addSection(); // Agregar una lista numerada, con el tamaño de número aumentado $section2->addListItem("Primer elemento", 0, $estiloTextoSeccion2, 'numberStyle', $estiloParrafoSeccion2); $section2->addListItem("Segundo elemento", 0, $estiloTextoSeccion2, 'numberStyle', $estiloParrafoSeccion2); $section2->addListItem("Tercer elemento", 0, $estiloTextoSeccion2, 'numberStyle', $estiloParrafoSeccion2); // Guardar el documento como archivo Word $writer = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007'); $writer->save('listas_con_estilos.docx'); ### PHPWord version(s) where the bug happened 1.3.0 ### PHP version(s) where the bug happened 8.2 ### Priority - [ ] I want to crowdfund the bug fix (with [@algora-io](https://docs.algora.io/bounties/overview)) and fund a community developer. - [ ] I want to pay the bug fix and fund a maintainer for that. (Contact @Progi1984)The text was updated successfully, but these errors were encountered: