Skip to content

Hidden slides #609

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Sep 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion man/pdfpc.in
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,12 @@ Go forward 10 slides
.B Shift + Left cursor key / 3rd mouse button / Mouse wheel up
Go back 10 slides
.TP
.B Shift + n
Go forward 1 slide irrespectively of its "hidden" attribute
.TP
.B Shift + p
Go backward 1 slide irrespectively of its "hidden" attribute
.TP
.B Home
Go to the first slide
.TP
Expand Down Expand Up @@ -244,7 +250,11 @@ Pause timer
Reset timer
.TP
.B Ctrl + o
Toggle the overlay flag for one particular slide (see Overlays
Toggle the overlay flag for one particular slide (see \fBOverlays\fR
below)
.TP
.B Ctrl + h
Toggle the hidden attribute for the current slide (see \fBHidden slides\fR
below)
.TP
.B Ctrl + e
Expand Down Expand Up @@ -425,6 +435,16 @@ correctly with this detection, you can supply this information using the \[aq]Ct
for each slide that is part of an overlay (except the first one!). The page
numbering is also adapted. This information is automatically stored.

.SS Hidden slides
.PP
When preparing presentation from an existing set of slides, it is sometimes
helpful to mark certain slides to be skipped during the talk. The \[aq]Ctrl +
h\[aq] combination toggles the "hidden" attribute of the current slide, making
it essentially invisible. It is still possible to navigate to a hidden slide
either in the \fBOverview\fR mode, using the Goto action (\[aq]g\[aq]), or
by hitting \[aq]Shift + n\[aq] or \[aq]Shift + p\[aq] to switch to the
next/previous slide, respectively, ignoring the "hidden" attribute.

.SS End slide
.PP
Some people like to have some additional, backup slides after the last
Expand Down
5 changes: 5 additions & 0 deletions rc/pdfpcrc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ bind S+Up firstOverlay
bind S+Right next10
bind S+Left prev10

# Incremental movement ignoring the "hidden" attribute
bind S+n nextForced
bind S+p prevForced

# Jumps
bind Home gotoFirst
bind End gotoLast
Expand Down Expand Up @@ -70,6 +74,7 @@ bind C+t resetTimer
bind C+n note
bind C+o overlay
bind C+e endSlide
bind C+h toggleHidden

# Annotation modes
bind 1 switchMode normal
Expand Down
Loading