Document Classesbeamer | Problem with two Columns

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
raja
Posts: 1
Joined: Wed Jul 27, 2011 5:39 pm

beamer | Problem with two Columns

Post by raja »

Dear Users,

I am facing problem in achieving footnotes to the two column in latex.

Problem : left column is giving a footnote with (a) as the reference, similarly for right column also it is giving a foot note with (a).

I would like to get (a) in the left column and (b) in the right column.

Please find the code.

Code: Select all

\documentclass{beamer}

\begin{document}
  \begin{frame}
    \begin{columns}
      \begin{column}{.5\linewidth}
        \begin{block}{Some equation\footnote{this is first}}
           \begin{align*}
             a &= b \\
               &= d \\
               &= f
           \end{align*}
        \end{block}
      \end{column}
      \begin{column}{.5\linewidth}
        \begin{tabular}{cc}\hline
          some text & some text \footnote{this is second} \\\hline
        \end{tabular}
      \end{column}
    \end{columns}
  \end{frame}
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply