Increase Font Size in Ticket and Duplicate Ticket

1> I am unable to Increase the font size of the ticket, but I was able to change the font size of Date Time and Ticket. By Changing the L00 To L01 but it does not work in J10 . I use Epson T81 Receipt Printer.

2> And Is there a Option , When I click cash button and it Prints 2 Tickets instead of 1, I mean Duplicate ticket ?

Please check the image for reference.

Show your template please.

Yes just go to the rule that has the Execute Print Job action and click Add Action and right click inside the box choose show all actions and then add the same action again. This will print it twice.

  [LAYOUT]
    
    -- General layout
    
    <T>Ticket
    
    <L01>Date:{TICKET DATE}
    
    <L01>Time:{TIME}
    
    {ENTITIES}
    
    <L01> No:{TICKET NO}
    
    <F>-
    
    {ORDERS}
    
    <F>=
    
    <EB>
    
    {DISCOUNTS}
    
    [<J10>Total Gift:|{ORDER STATE TOTAL:Gift}]
    
    {SERVICES}
    
    <J10>Total:|{TICKET TOTAL}
    
    {PAYMENTS}
    
    <DB>
    
    <F>=
    
    <C10>T H A N K   Y O U
    
    
    
    [DISCOUNTS]
    
    <J00>{CALCULATION NAME} %{CALCULATION AMOUNT}|{CALCULATION TOTAL}
    
    
    
    [SERVICES]
    
    <J00>{CALCULATION NAME}|{CALCULATION TOTAL}
    
    
    
    [PAYMENTS]
    
    <J00>{PAYMENT NAME}|{PAYMENT AMOUNT}
    
    
    
    [ORDERS]
    
    -- Default format for orders
    
    <J00>- {QUANTITY} {NAME}|{TOTAL PRICE}
    
    {ORDER TAGS}
    
    
    
    [ORDERS:Gift]
    
    -- Format for gifted orders
    
    <J00>- {QUANTITY} {NAME}|**GIFT**
    
    {ORDER TAGS}
    
    
    
    [ORDERS:Void]
    
    -- Nothing will print for void lines
    
    
    
    [ORDER TAGS]
    
    -- Format for order tags
    
    <J00> * {ORDER TAG NAME} | {ORDER TAG PRICE}
    
    
    
    [ENTITIES:Table]
    
    -- Table entity format
    
    <L01>Table: {ENTITY NAME}
    
    
    
    [ENTITIES:Customer]
    
    -- Customer entity format
    
    <J00>Customer: {ENTITY NAME} | {ENTITY DATA:Phone}

What pasting it be sure to select all the code and click the < / > button on the toolbar to make sure the forum doesn’t strip the formatting code. LOL, already done it :smile:

Did you read this?

Special attention to this:

For example <J10> sets font height to 1 and font width to 0.

Your template has no size changes for Orders which is the line you showed in your screenshot as wanting to change.

[ORDERS]
-- Default format for orders
<J00>- {QUANTITY} {NAME}|{TOTAL PRICE}
{ORDER TAGS}
2 Likes

The <L01> in;

<L01>Date:{TICKET DATE}

<L01>Time:{TIME}

and

<L01> No:{TICKET NO}

Change back to <L00>

Then change;
[ORDERS]

-- Default format for orders

<J00>- {QUANTITY} {NAME}|{TOTAL PRICE}

{ORDER TAGS}

to
[ORDERS]

-- Default format for orders

<J01>- {QUANTITY} {NAME}|{TOTAL PRICE}

{ORDER TAGS}

The two numbers are height and width if tweaking size.

1 Like