| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 9 months |
| seen | 19 hours ago | |
| stats | profile views | 13 |
I am currently doing my PhD in Physics and I am looking for career opportunities, mainly in the UK and US.
|
Mar 19 |
comment |
Beamer: combining footnote in one column with figure in the other one @Gonzalo For me it does. Did you add \footnotetext after \end{columns}? |
|
Mar 19 |
comment |
Beamer: combining footnote in one column with figure in the other one you could use \footnotemark[num] in the item and \footnotetext[num]{text} outside of columns. check out this question |
|
Jan 7 |
comment |
How to change color at beamer class using Luebeck theme and split outertheme? a list of beamercolors might help. |
|
Dec 2 |
comment |
Is there a specialized Pdf viewer for Latex-Beamer presentations on Linux? this! Notes and video support make it the best viewer |
|
Nov 24 |
comment |
Beamer copenhagen theme banner height Please add a minimal working example (MWE) that helps other to help you. |
|
Nov 21 |
comment |
Highlight the next uncovered part in beamer This is a problem of verbatim. Apparently the \end{frame} of a fragile frame needs to be at the beginning of a new line - no spaces! |
|
Nov 20 |
comment |
Highlight the next uncovered part in beamer now that I see the gif, I noticed that the text wiggles when the last box is displayed. I guess that could be done nicer. |
|
Nov 2 |
comment |
beamer: How to align images in separate columns? yes, of course. |
|
Oct 30 |
comment |
Shift Odd Page in Duplex Print @egreg: yes, but it is definitely a problem on the printer side. It happens to all prints; not only PDF's. I think it is a general problem of printers when they turn the page. |
|
Oct 26 |
comment |
Is there a designated symbol for the negative sign in, say, -16? @barbara beeton --yes, I noticed the difference. In the answer I gave below I used \scalebox to get a shorter minus in math mode. |
|
Oct 26 |
comment |
Is there a designated symbol for the negative sign in, say, -16? Seems like it is related to tex.stackexchange.com/questions/6058/making-a-shorter-minus and tex.stackexchange.com/questions/4756/… to make it shorter I use \text{-} |
|
Oct 25 |
comment |
How to create this multi-column and multi-row table? Welcome to TeX.sx! On this site, a question should typically revolve around an abstract issue (e.g. "How do I get a double horizontal line in a table?") rather than a concrete application (e.g. "How do I make this table?"). Questions that look like "Please do this complicated thing for me" tend to get closed because they are "too localized". Please try to make your question clear and simple by giving a minimal working example (MWE): you'll stand a greater chance of getting help. |
|
Oct 10 |
comment |
Find optimal figure size to fit two images on one page keep in mind that the caption needs some space too. But even without the figure environment I need something like height=0.5\textheight and height=0.495\textheight to put two images on one page - cause there is a gap of 0.1em between the images. |
|
Oct 10 |
comment |
Find optimal figure size to fit two images on one page did you use 0.6\pageheight for the width or the height? |
|
Oct 9 |
comment |
Caption for figure I though you just wanted the caption changed and not the figure format. Since it was closed and it might be interesting to someone, here my answer: If you have different figures (and not all are examples) you could make a counter for your examples \newcounter{examplecount}
\setcounter{examplecount}{1}
\newcommand{\Example}{Example \arabic{examplecount}\addtocounter{examplecount}{1}}
and when you want to use it in the caption just use \caption{\Example}
This will give you something like Figure 3: Example 1, Figure 5: Example 2 |
|
Oct 9 |
comment |
Getting rid of \vspace{1em} from MATLAB LaTeX publish sed is a stream editor (that is not used here...) It works like that: You put a file (stream) in and you get something out that is changed by certain rules. This way you could replace the "\vspace{1em}" with something else, but you would have do it outside of LaTex for all your MATLAB files. |
|
Oct 9 |
comment |
Changing Margins in Stockton Beamer Theme The screen shots on the link to the theme don't have this black frame. Maybe you can copy the code you used for this frame. |
|
Aug 27 |
comment |
Change colors/contrast in beamer navigation between active and dimmed section great! Thanks a lot. |