BibTeX, biblatex and biberseminar | Page Style for Bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
thekappe
Posts: 6
Joined: Mon Oct 29, 2012 5:10 pm

seminar | Page Style for Bibliography

Post by thekappe »

Hello guys !!

I'm a pretty new LaTeX user and I'm experiencing some problems.

I'm trying to create a presentation with the seminar package. I have a custom page style called "mystyle" that I use for all the slides in the document:

Code: Select all

\newpagestyle{mystyle}
{.....}% end header box
{.....}% end footer box
\slideframe{none}
\pagestyle{mystyle}
What I want to do is to force the bibliography to respect such that style. I create the bibliography in this way:

Code: Select all

\newpage
\bibliographystyle{ieeetr}
\bibliography{tex}
And I have problems with margins, and page number position.

Someone know how I can fix it ?

Thank you

Have a nice day !

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

thekappe
Posts: 6
Joined: Mon Oct 29, 2012 5:10 pm

seminar | Page Style for Bibliography

Post by thekappe »

Solved.

Code: Select all

\begin{slide}
  % Bibliography
  \bibliographystyle{ieeetr}
  \bibliography{tex}
\end{slide}
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

seminar | Page Style for Bibliography

Post by localghost »

The seminar class is obsolete. The classes beamer or powerdot are the way to go.

Furthermore your code snippets do not really represent a solution for others who come here by search engine. So it would be very kind to post a complete solution in form of code (regardless of the fact that you use an obsolete class).


Best regards and welcome to the board
Thorsten
thekappe
Posts: 6
Joined: Mon Oct 29, 2012 5:10 pm

seminar | Page Style for Bibliography

Post by thekappe »

Using the seminar package the content of a slide goes between the slide tag.

I didn't know that also the bibliography code have to.

I use the seminar class because the style I have (as it has given to me) works with it but not with beamer.

Have a nice day.
Post Reply