Code: Select all
@page {
@top-left {
content: string(guideword, first);
}
@top-center {
content: counter(page);
}
@top-right {
content: string(guideword, last);
}
}
@page :first {
@top-left { content: ''; }
@top-center { content: ''; }
@top-right { content: ''; }
@bottom-left { content: ''; }
@bottom-center { content: counter(page); }
@bottom-right { content: ''; }
}
If you run the above code, The first page shows only page number at the bottom and the all the remaining page are show header with guidewords.
Here we don't know where the first page content ends.
How this case possible in Latex?