How to customize summary with beamer?Customize Beamer navigational barBeamer table of contents — customize...
Can you use a beast's innate abilities while polymorphed?
The change directory (cd) command is not working with a USB drive
Second-rate spelling
Auto Insert date into Notepad
Linear regression when Y is bounded and discrete
Is there a low-level alternative to Animate Objects?
How to properly claim credit for peer review?
How can atoms be electrically neutral when there is a difference in the positions of the charges?
Replacement ford fiesta radiator has extra hose
What can I substitute for soda pop in a sweet pork recipe?
Why does Starman/Roadster have radial acceleration?
What am I? I am in theaters and computer programs
When should a commit not be version tagged?
Equivalent to "source" in OpenBSD?
Difference between 'stomach' and 'uterus'
How to deny access to SQL Server to certain login over SSMS, but allow over .Net SqlClient Data Provider
Multiplication via squaring and addition
Make me a metasequence
Hacker Rank: Array left rotation
If a druid in Wild Shape swallows a creature whole, then turns back to her normal form, what happens?
Can you benefit from a Hammer of Thunderbolts’s Strength increase by holding it with something else than your hands?
How to speed up a process
Is there a frame of reference in which I was born before I was conceived?
Skis versus snow shoes - when to choose which for travelling the backcountry?
How to customize summary with beamer?
Customize Beamer navigational barBeamer table of contents — customize with block environmentsAnimation with Latex BeamerHow to customize Beamer “definition” environment?Customize beamer block styleLaTeX beamer: pagenumbering appendixHow to show Mini table only sections in a chapter not other chapter?How to customize TOC entries in beamer?line spacing between each number in list of figureHow to keep the same layout with beamer animation?
My question: How to customize the summary/table of contents in order to have section sided on the right and subsection on the left ?
The expected result is close to the below image
Moreover, I would like to use animate itemize in order to get shaded subsection.
Currently to do it, I do this:
defsingleletter#1{rotatebox[origin=B]{90}{#1}}
makeatletter
defparseletters#1{@tfor @tempa := #1 do {kern2ptsingleletter{@tempa}}}
makeatother
defverticaltext#1{rotatebox[origin=c]{-90}{parseletters{#1}}}
definecolor{LightGray}{gray}{0.95}
begin{frame}{Summary}
setlengtharrayrulewidth{2pt}
begin{table}[]
begin{tabularx}{textwidth}{l|l}
multirow{4}{*}{colorbox{LightGray}{verticaltext{section 1}}} & subsection 1 \
& subsection 2 \
& subsection 3 \
& subsection 4
end{tabularx}
end{table}
end{frame}
A MWE is available here
beamer table-of-contents animations
add a comment |
My question: How to customize the summary/table of contents in order to have section sided on the right and subsection on the left ?
The expected result is close to the below image
Moreover, I would like to use animate itemize in order to get shaded subsection.
Currently to do it, I do this:
defsingleletter#1{rotatebox[origin=B]{90}{#1}}
makeatletter
defparseletters#1{@tfor @tempa := #1 do {kern2ptsingleletter{@tempa}}}
makeatother
defverticaltext#1{rotatebox[origin=c]{-90}{parseletters{#1}}}
definecolor{LightGray}{gray}{0.95}
begin{frame}{Summary}
setlengtharrayrulewidth{2pt}
begin{table}[]
begin{tabularx}{textwidth}{l|l}
multirow{4}{*}{colorbox{LightGray}{verticaltext{section 1}}} & subsection 1 \
& subsection 2 \
& subsection 3 \
& subsection 4
end{tabularx}
end{table}
end{frame}
A MWE is available here
beamer table-of-contents animations
Please can you add a full MWE and not a fragment of your code?
– Sebastiano
Feb 15 at 10:47
Thanks Sebastiano, I edited in order to put a MWE . but I think that the way to do it is not carried by the use of tabular env. but maybe by the use of a framed env with a sided bar and inside an enumeration...
– bioinfornatics
Feb 15 at 11:03
2
That's unfortunately not quite an MWE. An MWE starts withdocumentclass
and ends withend{document}
and can be compiled.
– marmot
Feb 15 at 15:38
ok following your recommendation I updated it
– bioinfornatics
Feb 15 at 16:11
@bioinfornatics Thank you very much for your collaboration. It is very important a full MWE also to understand the best way to solve a question and fix the errors.
– Sebastiano
Feb 15 at 21:24
add a comment |
My question: How to customize the summary/table of contents in order to have section sided on the right and subsection on the left ?
The expected result is close to the below image
Moreover, I would like to use animate itemize in order to get shaded subsection.
Currently to do it, I do this:
defsingleletter#1{rotatebox[origin=B]{90}{#1}}
makeatletter
defparseletters#1{@tfor @tempa := #1 do {kern2ptsingleletter{@tempa}}}
makeatother
defverticaltext#1{rotatebox[origin=c]{-90}{parseletters{#1}}}
definecolor{LightGray}{gray}{0.95}
begin{frame}{Summary}
setlengtharrayrulewidth{2pt}
begin{table}[]
begin{tabularx}{textwidth}{l|l}
multirow{4}{*}{colorbox{LightGray}{verticaltext{section 1}}} & subsection 1 \
& subsection 2 \
& subsection 3 \
& subsection 4
end{tabularx}
end{table}
end{frame}
A MWE is available here
beamer table-of-contents animations
My question: How to customize the summary/table of contents in order to have section sided on the right and subsection on the left ?
The expected result is close to the below image
Moreover, I would like to use animate itemize in order to get shaded subsection.
Currently to do it, I do this:
defsingleletter#1{rotatebox[origin=B]{90}{#1}}
makeatletter
defparseletters#1{@tfor @tempa := #1 do {kern2ptsingleletter{@tempa}}}
makeatother
defverticaltext#1{rotatebox[origin=c]{-90}{parseletters{#1}}}
definecolor{LightGray}{gray}{0.95}
begin{frame}{Summary}
setlengtharrayrulewidth{2pt}
begin{table}[]
begin{tabularx}{textwidth}{l|l}
multirow{4}{*}{colorbox{LightGray}{verticaltext{section 1}}} & subsection 1 \
& subsection 2 \
& subsection 3 \
& subsection 4
end{tabularx}
end{table}
end{frame}
A MWE is available here
beamer table-of-contents animations
beamer table-of-contents animations
edited 16 hours ago
AlexG
33.8k480149
33.8k480149
asked Feb 15 at 9:47
bioinfornaticsbioinfornatics
28819
28819
Please can you add a full MWE and not a fragment of your code?
– Sebastiano
Feb 15 at 10:47
Thanks Sebastiano, I edited in order to put a MWE . but I think that the way to do it is not carried by the use of tabular env. but maybe by the use of a framed env with a sided bar and inside an enumeration...
– bioinfornatics
Feb 15 at 11:03
2
That's unfortunately not quite an MWE. An MWE starts withdocumentclass
and ends withend{document}
and can be compiled.
– marmot
Feb 15 at 15:38
ok following your recommendation I updated it
– bioinfornatics
Feb 15 at 16:11
@bioinfornatics Thank you very much for your collaboration. It is very important a full MWE also to understand the best way to solve a question and fix the errors.
– Sebastiano
Feb 15 at 21:24
add a comment |
Please can you add a full MWE and not a fragment of your code?
– Sebastiano
Feb 15 at 10:47
Thanks Sebastiano, I edited in order to put a MWE . but I think that the way to do it is not carried by the use of tabular env. but maybe by the use of a framed env with a sided bar and inside an enumeration...
– bioinfornatics
Feb 15 at 11:03
2
That's unfortunately not quite an MWE. An MWE starts withdocumentclass
and ends withend{document}
and can be compiled.
– marmot
Feb 15 at 15:38
ok following your recommendation I updated it
– bioinfornatics
Feb 15 at 16:11
@bioinfornatics Thank you very much for your collaboration. It is very important a full MWE also to understand the best way to solve a question and fix the errors.
– Sebastiano
Feb 15 at 21:24
Please can you add a full MWE and not a fragment of your code?
– Sebastiano
Feb 15 at 10:47
Please can you add a full MWE and not a fragment of your code?
– Sebastiano
Feb 15 at 10:47
Thanks Sebastiano, I edited in order to put a MWE . but I think that the way to do it is not carried by the use of tabular env. but maybe by the use of a framed env with a sided bar and inside an enumeration...
– bioinfornatics
Feb 15 at 11:03
Thanks Sebastiano, I edited in order to put a MWE . but I think that the way to do it is not carried by the use of tabular env. but maybe by the use of a framed env with a sided bar and inside an enumeration...
– bioinfornatics
Feb 15 at 11:03
2
2
That's unfortunately not quite an MWE. An MWE starts with
documentclass
and ends with end{document}
and can be compiled.– marmot
Feb 15 at 15:38
That's unfortunately not quite an MWE. An MWE starts with
documentclass
and ends with end{document}
and can be compiled.– marmot
Feb 15 at 15:38
ok following your recommendation I updated it
– bioinfornatics
Feb 15 at 16:11
ok following your recommendation I updated it
– bioinfornatics
Feb 15 at 16:11
@bioinfornatics Thank you very much for your collaboration. It is very important a full MWE also to understand the best way to solve a question and fix the errors.
– Sebastiano
Feb 15 at 21:24
@bioinfornatics Thank you very much for your collaboration. It is very important a full MWE also to understand the best way to solve a question and fix the errors.
– Sebastiano
Feb 15 at 21:24
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f474991%2fhow-to-customize-summary-with-beamer%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f474991%2fhow-to-customize-summary-with-beamer%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please can you add a full MWE and not a fragment of your code?
– Sebastiano
Feb 15 at 10:47
Thanks Sebastiano, I edited in order to put a MWE . but I think that the way to do it is not carried by the use of tabular env. but maybe by the use of a framed env with a sided bar and inside an enumeration...
– bioinfornatics
Feb 15 at 11:03
2
That's unfortunately not quite an MWE. An MWE starts with
documentclass
and ends withend{document}
and can be compiled.– marmot
Feb 15 at 15:38
ok following your recommendation I updated it
– bioinfornatics
Feb 15 at 16:11
@bioinfornatics Thank you very much for your collaboration. It is very important a full MWE also to understand the best way to solve a question and fix the errors.
– Sebastiano
Feb 15 at 21:24