Skip to main content
ExLibris
  • Subscribe by RSS
  • Ex Libris Knowledge Center

    How to fix bad alignment bib info display in forms that are sent by email.

    • Article Type: General
    • Product: Aleph
    • Product Version: 20

    Description:
    The form acq- arrival-message-00 had bad alignment of the bibliographic information when it was sent by email.

    Here is how it can be fixed:



    Resolution:
    The fix is in the file "plain-funcs-bib-info.xsl":
    (1)
    Inside the <xsl:template name="bib-info"> -
    Remove - or make as a remark - the following line line: <xsl:call-template name="new-line"/> as shown below:

    <xsl:if test="$first != ''">
    <xsl:value-of select="$first"/>
    <!-- <xsl:call-template name="new-line"/> -->
    </xsl:if>

    (2) Right after this line (inside the <xsl:template name="bib-info">), there is the following line:
    <xsl:with-param name="line" select="concat(' ',$rest)"/>

    - You should do remove the spaces in "concat(' ',$rest)".
    I mean - change the ' ' to: '' (two single quotes with no space).
    The line should look as follows:
    <xsl:with-param name="line" select="concat('',$rest)"/>

    Additional Information

    form bib-info alignment email


    • Article last edited: 10/8/2013