Category: problems

  • latex minipage wider than textwidth

    In normale minipage examples allways textwidth would be used to determine width of minipage. But also the paperwidth could be used too. example \documentclass{article} \begin{document} \noindent \begin{minipage}{0.5\textwidth} \fbox{frame around dummy text and more} \end{minipage} \begin{minipage}{0.5\textwidth} \fbox{second framed dummy text and more} \end{minipage} \begin{minipage}{0.5\paperwidth} \fbox{frame around dummy text and more} \end{minipage} \begin{minipage}{0.5\paperwidth} \fbox{second framed dummy text […]

  • latex minipage text beside figure

    How to put text beside figure with minipage? We use two minipages side by side in first one we put the figure e.g. pic1 und in second one the text. The vspace command in the second minipage is only a hint, for example if the text is not enough you could push it up by […]

  • latex minipage side by side figures

    To get two figures side by side just use this example: \documentclass{article} \usepackage{graphicx} \begin{document} \begin{minipage}[c]{0.5\textwidth} \includegraphics[width=\textwidth]{figure 1} \end{minipage} \begin{minipage}[c]{0.5\textwidth} \includegraphics[width=\textwidth]{figure 2} \end{minipage} \end{document} It also works with two tables side by side.

  • latex beamer change font size table

    One of the typical problem by using beamer class are tables respectively showing tables. If they are to big to be shown on one frame there are two possibilities to solve this problem. Frist, use the plain option at the frame where you want to set the table \begin{frame}[plain] \frametitle{a table is to big} \begin{table} […]

  • latex font size 20pt

    How to get a document with font size 20pt? If your using one of the default documentclass e.g. article with default font size 10 pt then just use the command \huge and size will be increase to 20 pt. \documentclass{article} \begin{document} \huge text text … \end{document}