mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-10 06:51:13 +00:00
New posts
This commit is contained in:
parent
59861d3bb9
commit
f78540d68e
3 changed files with 325 additions and 0 deletions
35
content/blog/codeinbeamer.md
Normal file
35
content/blog/codeinbeamer.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
title: "Code in LaTex Beamer"
|
||||
date: 2022-01-26T23:11:37-05:00
|
||||
draft: false
|
||||
tags: ["LaTex"]
|
||||
math: false
|
||||
---
|
||||
|
||||
I commonly use the [`listings` package](/blog/latexcode/) to showcase code in my LaTex documents. I tried doing the same in my Beamer slidedecks and I ran into an issue where the LaTex source code failed to compile. After digging around, I figured out its because every slide or frame that includes code (or any verbatim environment) needs to be marked as `fragile`. A minimal example is presented below:
|
||||
|
||||
```latex
|
||||
\documentclass{beamer}
|
||||
\usepackage[utf8]{inputenc}
|
||||
|
||||
% Beamer Packages
|
||||
\usepackage{harvard}
|
||||
\usetheme{Copenhagen}
|
||||
|
||||
% Code Rendering Packages
|
||||
\usepackage{listings}
|
||||
\lstset{
|
||||
language=Java,
|
||||
columns=flexible,
|
||||
}
|
||||
|
||||
% Begin Slidedeck
|
||||
\begin{document}
|
||||
\begin{frame}[fragile]{Code Example}
|
||||
\begin{lstlisting}
|
||||
int x = 5;
|
||||
\end{lstlisting}
|
||||
\end{frame}
|
||||
\end{document}
|
||||
```
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue