von jan_org » Mi 27. Mär 2019, 11:40
Anbei ein Minimalbeispiel:
\documentclass[12pt,a4paper]{report}
\usepackage{geometry} \geometry{letterpaper,left=1in,right=1in,top=1.3in,bottom=1in}
\usepackage{graphicx}
\begin{document}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\chapter{Ich bin eine Ueberschrift\protect\footnote[1]{Ich bin eine Fussnote}}
\renewcommand*{\thefootnote}{\arabic{footnote}}
\subsection*{Abstract}
\begin{quote}Text
\end{quote}
\onehalfspacing
\section{section}
Mehr Text.
\begin{equation}
y=,
\label{eq:}
\end{equation}
\begin{table}%
\centering
\begin{tabular}{ccc}
cell1 & cell2 & cell3 \\
cell1 & cell2 & cell3 \\
cell1 & cell2 & cell3 \\
cell1 & cell2 & cell3 \\
\end{tabular}
\caption{First table in chapter 1}
\label{tab:1}
\end{table}
%
\begin{figure}%
\includegraphics[width=\columnwidth]{capture.png}%
\caption{First figure in chapter 1}%
\label{fig:1}%
\end{figure}
\end{document}
Anbei ein Minimalbeispiel:
[code]\documentclass[12pt,a4paper]{report}
\usepackage{geometry} \geometry{letterpaper,left=1in,right=1in,top=1.3in,bottom=1in}
\usepackage{graphicx}
\begin{document}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\chapter{Ich bin eine Ueberschrift\protect\footnote[1]{Ich bin eine Fussnote}}
\renewcommand*{\thefootnote}{\arabic{footnote}}
\subsection*{Abstract}
\begin{quote}Text
\end{quote}
\onehalfspacing
\section{section}
Mehr Text.
\begin{equation}
y=,
\label{eq:}
\end{equation}
\begin{table}%
\centering
\begin{tabular}{ccc}
cell1 & cell2 & cell3 \\
cell1 & cell2 & cell3 \\
cell1 & cell2 & cell3 \\
cell1 & cell2 & cell3 \\
\end{tabular}
\caption{First table in chapter 1}
\label{tab:1}
\end{table}
%
\begin{figure}%
\includegraphics[width=\columnwidth]{capture.png}%
\caption{First figure in chapter 1}%
\label{fig:1}%
\end{figure}
\end{document}[/code]