Search found 9 matches

by grinder
Thu Jun 10, 2010 3:40 am
Forum: Document Classes
Topic: Beamer: how not to print the logo on a specific frame
Replies: 2
Views: 4152

Beamer: how not to print the logo on a specific frame

I 've just found a way. You can use the plain option:

Code: Select all

\begin{frame}[plain]
by grinder
Thu Jun 10, 2010 3:26 am
Forum: Document Classes
Topic: Beamer: how not to print the logo on a specific frame
Replies: 2
Views: 4152

Re: Beamer: how not to print the logo on a specific frame

Did you or anyone else has an answer to that? I don't want the logo to appear on the titlepage of my presentation
by grinder
Mon Feb 15, 2010 11:42 pm
Forum: General
Topic: How to pdfbookmark first page, abstract, etc?
Replies: 1
Views: 17821

How to pdfbookmark first page, abstract, etc?

Finally found it! Here's the code:

\clearpage
\phantomsection
\pdfbookmark[0]{Titlepage}{title} % Sets a PDF bookmark for the title page
\maketitle % Generate the title page

\pdfbookmark[0]{Abstract}{abstract} % Sets a PDF bookmark for the abstract
\chapter*{Abstract}

\clearpage
\phantomsection ...
by grinder
Mon Feb 15, 2010 11:01 pm
Forum: General
Topic: How to pdfbookmark first page, abstract, etc?
Replies: 1
Views: 17821

How to pdfbookmark first page, abstract, etc?

Hello! Yet another question on pdfbookmark and the hyperref package, I 'm afraid... I want to use it in order to bookmark the first page of my document, as well as the abstract, list of figures/tables, acknowledgments and so on. Chapters and sections work as expected automagically, but I am trying ...
by grinder
Fri Nov 06, 2009 12:23 am
Forum: Graphics, Figures & Tables
Topic: Itemize inside a table
Replies: 8
Views: 23951

Itemize inside a table

Thanx for your answer. I am afraid there is no MWE :( I 've already used localghost's suggestion, but it doesn't work. I 've also used the paralist package with the compactitem environment, like the original poster, but I still have vertical space after the itemize block, which I don't want ...
by grinder
Thu Nov 05, 2009 7:21 pm
Forum: Graphics, Figures & Tables
Topic: Itemize inside a table
Replies: 8
Views: 23951

Re: Itemize inside a table

Did you find any solution to that? I have exactly the same problem :(
by grinder
Sat Oct 24, 2009 11:06 pm
Forum: Graphics, Figures & Tables
Topic: setcounter to zero vs. hyperref error
Replies: 8
Views: 10492

setcounter to zero vs. hyperref error

Yeah baby, found it at last!!! :D Here it is:

\newcounter{myc}[part] % define new counter which is going to be automagically reset at the start of each part
\renewcommand{\thesection}{\arabic{myc}} % use the new counter for sections
\let\osection\section % take a "snapshot" of the current state of ...
by grinder
Sat Oct 24, 2009 4:34 pm
Forum: Graphics, Figures & Tables
Topic: setcounter to zero vs. hyperref error
Replies: 8
Views: 10492

Re: setcounter to zero vs. hyperref error

I perfectly understand what the original poster has done. I am almost there (i 've done some progress), but the problem is that I don't know exactly which parameters of the section environment I need to look at. Any help?
by grinder
Sat Oct 24, 2009 3:12 pm
Forum: Graphics, Figures & Tables
Topic: setcounter to zero vs. hyperref error
Replies: 8
Views: 10492

setcounter to zero vs. hyperref error

Hi! I am trying to do the same, but for sections. The documentclass is article. I am having problems with the bookmarks in the produced pdf. Specifically, my document consists of two parts, so I want the sections to be automatically reset in the start of each part. Currently, I am reseting the ...