Corrected inline bash formatting

This commit is contained in:
Philipp Homan yoga ubuntu 17.10 2018-04-02 15:25:40 -04:00
parent b9fdc6f9bb
commit fd78dc7eda
5 changed files with 40 additions and 40 deletions

BIN
src/3.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -235,9 +235,9 @@ data.frame(Mean=m, SD=s)
:BEAMER_opt: [T] :BEAMER_opt: [T]
:END: :END:
\small \footnotesize
#+NAME: code3 #+NAME: code3
#+BEGIN_SRC sh :exports both :file emacs.png #+BEGIN_SRC bash :exports both :file emacs.png
curl -0 https://www.gnu.org/software/emacs/images/emacs.png curl -0 https://www.gnu.org/software/emacs/images/emacs.png
#+END_SRC #+END_SRC
\normalsize \normalsize

Binary file not shown.

View File

@ -1,4 +1,4 @@
% Created 2018-04-02 Mon 13:45 % Created 2018-04-02 Mon 15:25
% Intended LaTeX compiler: pdflatex % Intended LaTeX compiler: pdflatex
\documentclass[final]{beamer} \documentclass[final]{beamer}
\usetheme{ph} \usetheme{ph}
@ -29,11 +29,11 @@ Philipp Homan$^{1}$,
\normalsize{Hempstead, NY} \normalsize{Hempstead, NY}
} }
\usetheme{default} \usetheme{default}
\date{2018-04-02 13:45} \date{2018-04-02 15:25}
\title{A scientific poster entirely written in org-mode using GNU emacs and the beamer library} \title{A scientific poster entirely written in org-mode using GNU emacs and the beamer library}
\begin{document} \begin{document}
\begin{frame}[fragile,label={sec:org81c45e2}]{} \begin{frame}[fragile,label={sec:orga07b5dd}]{}
\begin{columns} \begin{columns}
\begin{column}[t]{0.45\columnwidth} \begin{column}[t]{0.45\columnwidth}
\begin{block}{Background} \begin{block}{Background}
@ -47,21 +47,21 @@ org-mode syntax
code, graphs and numbers from inline code in languages such as R, code, graphs and numbers from inline code in languages such as R,
python, Matlab and even shell scripting python, Matlab and even shell scripting
\item Inline code would look like this, which will produce a graph \item Inline code would look like this, which will produce a graph
(Fig. \ref{fig:org22c0db4}): (Fig. \ref{fig:orgfe25245}):
\end{itemize} \end{itemize}
\begin{columns} \begin{columns}
\begin{column}[T]{0.48\columnwidth} \begin{column}[T]{0.48\columnwidth}
\begin{verbatim} \begin{minted}[linenos=true]{r}
x <- rnorm(100, 0, 1) x <- rnorm(100, 0, 1)
hist(x, col="gray") hist(x, col="gray")
\end{verbatim} \end{minted}
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[width=.9\linewidth]{3.png} \includegraphics[width=.9\linewidth]{3.png}
\caption{\label{fig:org22c0db4} \caption{\label{fig:orgfe25245}
This is the output.} This is the output.}
\end{figure} \end{figure}
\end{column} \end{column}
@ -75,16 +75,16 @@ This is the output.}
capabilities capabilities
\item Some code to process the vector from above to make a table out of its \item Some code to process the vector from above to make a table out of its
summary could look like this, which would result in a little table summary could look like this, which would result in a little table
(Table \ref{tab:org8233f27}) : (Table \ref{tab:org6afde98}) :
\end{itemize} \end{itemize}
\begin{columns} \begin{columns}
\begin{column}[T]{0.48\columnwidth} \begin{column}[T]{0.48\columnwidth}
\begin{verbatim} \begin{minted}[linenos=true]{r}
m <- round(mean(x), 2) m <- round(mean(x), 2)
s <- round(sd(x), 2) s <- round(sd(x), 2)
data.frame(Mean=m, SD=s) data.frame(Mean=m, SD=s)
\end{verbatim} \end{minted}
\vspace{2cm} \vspace{2cm}
@ -93,9 +93,9 @@ data.frame(Mean=m, SD=s)
\begin{tabular}{rr} \begin{tabular}{rr}
Mean & SD\\ Mean & SD\\
\hline \hline
-0.06 & 0.94\\ -0.14 & 0.97\\
\end{tabular} \end{tabular}
\caption{\label{tab:org8233f27} \caption{\label{tab:org6afde98}
A table.} A table.}
\end{table} \end{table}
@ -111,15 +111,15 @@ A table.}
\begin{itemize} \begin{itemize}
\item Of course we can also include graphics \item Of course we can also include graphics
\item Here, we use shell scripting to grab an image with curl from the \item Here, we use shell scripting to grab an image with curl from the
internet (Fig. \ref{fig:org5d9dd5a}): internet (Fig. \ref{fig:org1ba5872}):
\end{itemize} \end{itemize}
\begin{columns} \begin{columns}
\begin{column}[T]{0.78\columnwidth} \begin{column}[T]{0.78\columnwidth}
\small \footnotesize
\begin{verbatim} \begin{minted}[linenos=true]{bash}
curl -0 https://www.gnu.org/software/emacs/images/emacs.png curl -0 https://www.gnu.org/software/emacs/images/emacs.png
\end{verbatim} \end{minted}
\normalsize \normalsize
\vspace{2cm} \vspace{2cm}
@ -127,7 +127,7 @@ curl -0 https://www.gnu.org/software/emacs/images/emacs.png
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[page=9,width=0.2\textwidth]{emacs.png} \includegraphics[page=9,width=0.2\textwidth]{emacs.png}
\caption{\label{fig:org5d9dd5a} \caption{\label{fig:org1ba5872}
This is the downloaded image.} This is the downloaded image.}
\end{figure} \end{figure}
\end{column} \end{column}
@ -141,7 +141,7 @@ This is the downloaded image.}
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[page=3,width=0.9\textwidth]{org-mode-poster-4.png} \includegraphics[page=3,width=0.9\textwidth]{org-mode-poster-4.png}
\caption{\label{fig:orgae102b5} \caption{\label{fig:org1748fcb}
\textbf{This is the left figure of a two-column block}} \textbf{This is the left figure of a two-column block}}
\end{figure} \end{figure}
\end{column} \end{column}
@ -151,7 +151,7 @@ This is the downloaded image.}
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[page=9,width=0.9\textwidth]{org-mode-poster-4.png} \includegraphics[page=9,width=0.9\textwidth]{org-mode-poster-4.png}
\caption{\label{fig:org5e6c798} \caption{\label{fig:org5a59fdf}
\textbf{This is the right figure.}} \textbf{This is the right figure.}}
\end{figure} \end{figure}
\end{column} \end{column}

View File

@ -1,4 +1,4 @@
% Created 2018-04-02 Mon 13:45 % Created 2018-04-02 Mon 15:24
% Intended LaTeX compiler: pdflatex % Intended LaTeX compiler: pdflatex
\documentclass[final]{beamer} \documentclass[final]{beamer}
\usetheme{ph} \usetheme{ph}
@ -29,11 +29,11 @@ Philipp Homan$^{1}$,
\normalsize{Hempstead, NY} \normalsize{Hempstead, NY}
} }
\usetheme{default} \usetheme{default}
\date{2018-04-02 13:45} \date{2018-04-02 15:24}
\title{A scientific poster entirely written in org-mode using GNU emacs and the beamer library} \title{A scientific poster entirely written in org-mode using GNU emacs and the beamer library}
\begin{document} \begin{document}
\begin{frame}[fragile,label={sec:org999b905}]{} \begin{frame}[fragile,label={sec:orgbaeb4b8}]{}
\begin{columns} \begin{columns}
\begin{column}[t]{0.45\columnwidth} \begin{column}[t]{0.45\columnwidth}
\begin{block}{Background} \begin{block}{Background}
@ -47,21 +47,21 @@ org-mode syntax
code, graphs and numbers from inline code in languages such as R, code, graphs and numbers from inline code in languages such as R,
python, Matlab and even shell scripting python, Matlab and even shell scripting
\item Inline code would look like this, which will produce a graph \item Inline code would look like this, which will produce a graph
(Fig. \ref{fig:org6c554d6}): (Fig. \ref{fig:org8727911}):
\end{itemize} \end{itemize}
\begin{columns} \begin{columns}
\begin{column}[T]{0.48\columnwidth} \begin{column}[T]{0.48\columnwidth}
\begin{verbatim} \begin{minted}[linenos=true]{r}
x <- rnorm(100, 0, 1) x <- rnorm(100, 0, 1)
hist(x, col="gray") hist(x, col="gray")
\end{verbatim} \end{minted}
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[width=.9\linewidth]{3.png} \includegraphics[width=.9\linewidth]{3.png}
\caption{\label{fig:org6c554d6} \caption{\label{fig:org8727911}
This is the output.} This is the output.}
\end{figure} \end{figure}
\end{column} \end{column}
@ -75,16 +75,16 @@ This is the output.}
capabilities capabilities
\item Some code to process the vector from above to make a table out of its \item Some code to process the vector from above to make a table out of its
summary could look like this, which would result in a little table summary could look like this, which would result in a little table
(Table \ref{tab:org6da192c}) : (Table \ref{tab:orga4b22ee}) :
\end{itemize} \end{itemize}
\begin{columns} \begin{columns}
\begin{column}[T]{0.48\columnwidth} \begin{column}[T]{0.48\columnwidth}
\begin{verbatim} \begin{minted}[linenos=true]{r}
m <- round(mean(x), 2) m <- round(mean(x), 2)
s <- round(sd(x), 2) s <- round(sd(x), 2)
data.frame(Mean=m, SD=s) data.frame(Mean=m, SD=s)
\end{verbatim} \end{minted}
\vspace{2cm} \vspace{2cm}
@ -93,9 +93,9 @@ data.frame(Mean=m, SD=s)
\begin{tabular}{rr} \begin{tabular}{rr}
Mean & SD\\ Mean & SD\\
\hline \hline
-0.01 & 0.98\\ -0.11 & 0.92\\
\end{tabular} \end{tabular}
\caption{\label{tab:org6da192c} \caption{\label{tab:orga4b22ee}
A table.} A table.}
\end{table} \end{table}
@ -111,15 +111,15 @@ A table.}
\begin{itemize} \begin{itemize}
\item Of course we can also include graphics \item Of course we can also include graphics
\item Here, we use shell scripting to grab an image with curl from the \item Here, we use shell scripting to grab an image with curl from the
internet (Fig. \ref{fig:orga357485}): internet (Fig. \ref{fig:orgb4430e3}):
\end{itemize} \end{itemize}
\begin{columns} \begin{columns}
\begin{column}[T]{0.78\columnwidth} \begin{column}[T]{0.78\columnwidth}
\small \tiny
\begin{verbatim} \begin{minted}[linenos=true]{bash}
curl -0 https://www.gnu.org/software/emacs/images/emacs.png curl -0 https://www.gnu.org/software/emacs/images/emacs.png
\end{verbatim} \end{minted}
\normalsize \normalsize
\vspace{2cm} \vspace{2cm}
@ -127,7 +127,7 @@ curl -0 https://www.gnu.org/software/emacs/images/emacs.png
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[page=9,width=0.2\textwidth]{emacs.png} \includegraphics[page=9,width=0.2\textwidth]{emacs.png}
\caption{\label{fig:orga357485} \caption{\label{fig:orgb4430e3}
This is the downloaded image.} This is the downloaded image.}
\end{figure} \end{figure}
\end{column} \end{column}
@ -141,7 +141,7 @@ This is the downloaded image.}
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[page=3,width=0.9\textwidth]{org-mode-poster-4.png} \includegraphics[page=3,width=0.9\textwidth]{org-mode-poster-4.png}
\caption{\label{fig:org4edbed9} \caption{\label{fig:orgb45d477}
\textbf{This is the left figure of a two-column block}} \textbf{This is the left figure of a two-column block}}
\end{figure} \end{figure}
\end{column} \end{column}
@ -151,7 +151,7 @@ This is the downloaded image.}
\begin{figure}[htbp] \begin{figure}[htbp]
\centering \centering
\includegraphics[page=9,width=0.9\textwidth]{org-mode-poster-4.png} \includegraphics[page=9,width=0.9\textwidth]{org-mode-poster-4.png}
\caption{\label{fig:orge07faba} \caption{\label{fig:orgdcbb6b3}
\textbf{This is the right figure.}} \textbf{This is the right figure.}}
\end{figure} \end{figure}
\end{column} \end{column}