metanorma / metanorma-itu

Metanorma for ITU-T Recommendations
BSD 2-Clause "Simplified" License
4 stars 4 forks source link

Visual appearance document attributes #506

Closed Intelligent2013 closed 8 months ago

Intelligent2013 commented 9 months ago

Source issue: https://github.com/metanorma/metanorma-itu/issues/474#issuecomment-1969044338

We need to add these attributes for ITU "Service Publications" (Flagship):

Note: similar to https://github.com/metanorma/metanorma-bsi?tab=readme-ov-file#visual-appearance.

Intelligent2013 commented 9 months ago

@ronaldtse may be it would be better to put the logos on cover page directly by the designer/user? Then we don't need to introduce these parameters:

:coverpage-image-event-logo: :coverpage-image-partner-logo: :coverpage-image-copublisher-logo:

From Guidelines:

Partner logos also appear in the bottom left corner. Please note that when there are multiple partners / sponsors / collaborators and not enough space on the cover to include all the logos, they can be placed on the title page instead (first page of the publication).

It means that we need to allow the user to specify second page with additional logos:

ronaldtse commented 9 months ago

@Intelligent2013 I agree that it's easier to have the background include the logos. We just need to find a way to insert the second cover page even though it's not critical right now.

Intelligent2013 commented 9 months ago

@opoudjis then task is: we need to add this attribute for ITU "Service Publications" (Flagship):

opoudjis commented 8 months ago

Done, code identical to BSI, images end up in metanorma-extensions/presentation-metadata:

       <metanorma-extension>
         <presentation-metadata>
           <name>coverpage-image</name>
           <value>
             <image src="images/image1.gif"/>
             <image src="images/image2.gif"/>
           </value>
         </presentation-metadata>
...
Intelligent2013 commented 8 months ago

@opoudjis thank you!