Stephni Posted May 3, 2009 Share Posted May 3, 2009 Hi guyes small question in presentation with LaTex, what is the command to add the slide number, e.g (1/25) ? Link to comment Share on other sites More sharing options...
neddie Posted May 3, 2009 Share Posted May 3, 2009 Do you really mean slide number? I think it's quite unusual to make slides with Latex, do you maybe mean page number? Depending on your document class the page number should be automatically inserted, but you can change this by modifying the header/footer styles. Try searching for "latex page number" and you should get lots of results. Link to comment Share on other sites More sharing options...
coverup Posted May 3, 2009 Share Posted May 3, 2009 Quite an opposite, it is very common to make slides with LaTeX:-) If you use the document style seminar, you can add slide numbers using the package fancyhdr: \documentclass{seminar} \usepackage{pstcol} % To use the standard `color' package with Seminar \usepackage{semcolor} \usepackage{slidesec} \usepackage{fancyhdr} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0pt} \fancyhead[L]{} \fancyhead[R]{\theslide} \fancyfoot[C]{} % To center horizontally the headers and footers (see seminar.bug) \renewcommand{\headwidth}{\textwidth} \pagestyle{fancy} Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now