2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
This commit is contained in:
Martin Thoma 2012-10-20 07:56:26 +02:00
parent f444904021
commit 7b77fbd585
3 changed files with 45 additions and 3 deletions

View file

@ -124,7 +124,7 @@ $f: X\to Y,\; g:Y\to Z$ Abbildungen.
\end{definition}
\begin{satz}
Sei $\emptyset \neq X \subseteq \mdr^n \; A \subseteq X$ und
Sei $\emptyset \neq X \subseteq \mdr^n,\; A \subseteq X$ und
$f: X \rightarrow \mdr^n$.
\begin{enumerate}
@ -156,8 +156,8 @@ In diesem Paragraphen sei $X \neq \emptyset$ eine Menge.
\textbf{$\sigma$-Algebra} auf $X$, wenn gilt:
\begin{enumerate}
\item[($\sigma_1$)] $X\in\fa$
\item[($\sigma_2$)] Ist $A\in\fa$, so ist auch $A^c\in\fa$.
\item[($\sigma_3$)] Ist $(A_j)$ eine Folge in $\fa$, so ist
\item[($\sigma_2$)] $A\in\fa \implies A^c\in\fa$
\item[($\sigma_3$)] $(A_j)$ ist eine Folge in $\fa \implies$
$\bigcup A_j\in\fa$.
\end{enumerate}
\end{definition}

View file

@ -0,0 +1,8 @@
SOURCE = strange-signs
make:
pdflatex $(SOURCE).tex -output-format=pdf
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux

View file

@ -0,0 +1,34 @@
\documentclass[a4paper,9pt]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath}
\usepackage{geometry}
\geometry{a4paper,left=18mm,right=18mm, top=2cm, bottom=2cm}
\begin{document}
\section{mathbb}
\begin{tabular}{|c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c|}
\hline
A & $\mathbb{A}$ & B & $\mathbb{B}$ & C & $\mathbb{C}$ & D & $\mathbb{D}$ & E & $\mathbb{E}$ & F & $\mathbb{F}$ & G & $\mathbb{G}$ & H & $\mathbb{H}$ & I & $\mathbb{I}$ & J & $\mathbb{J}$ & K & $\mathbb{K}$ & L & $\mathbb{L}$ & M & $\mathbb{M}$\\
\hline
N & $\mathbb{N}$ & O & $\mathbb{O}$ & P & $\mathbb{P}$ & Q & $\mathbb{Q}$ & R & $\mathbb{R}$ & S & $\mathbb{S}$ & T & $\mathbb{T}$ & U & $\mathbb{U}$ & V & $\mathbb{V}$ & W & $\mathbb{W}$ & X & $\mathbb{X}$ & Y & $\mathbb{Y}$ & Z & $\mathbb{Z}$\\
\hline
\end{tabular}
\section{mathfrak}
\begin{tabular}{|c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c|}
\hline
A & $\mathfrak{A}$ & B & $\mathfrak{B}$ & C & $\mathfrak{C}$ & D & $\mathfrak{D}$ & E & $\mathfrak{E}$ & F & $\mathfrak{F}$ & G & $\mathfrak{G}$ & H & $\mathfrak{H}$ & I & $\mathfrak{I}$ & J & $\mathfrak{J}$ & K & $\mathfrak{K}$ & L & $\mathfrak{L}$ & M & $\mathfrak{M}$\\
\hline
N & $\mathfrak{N}$ & O & $\mathfrak{O}$ & P & $\mathfrak{P}$ & Q & $\mathfrak{Q}$ & R & $\mathfrak{R}$ & S & $\mathfrak{S}$ & T & $\mathfrak{T}$ & U & $\mathfrak{U}$ & V & $\mathfrak{V}$ & W & $\mathfrak{W}$ & X & $\mathfrak{X}$ & Y & $\mathfrak{Y}$ & Z & $\mathfrak{Z}$\\
\hline
\end{tabular}
\section{mathcal}
\begin{tabular}{|c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c||c|c|}
\hline
A & $\mathcal{A}$ & B & $\mathcal{B}$ & C & $\mathcal{C}$ & D & $\mathcal{D}$ & E & $\mathcal{E}$ & F & $\mathcal{F}$ & G & $\mathcal{G}$ & H & $\mathcal{H}$ & I & $\mathcal{I}$ & J & $\mathcal{J}$ & K & $\mathcal{K}$ & L & $\mathcal{L}$ & M & $\mathcal{M}$\\
N & $\mathcal{N}$ & O & $\mathcal{O}$ & P & $\mathcal{P}$ & Q & $\mathcal{Q}$ & R & $\mathcal{R}$ & S & $\mathcal{S}$ & T & $\mathcal{T}$ & U & $\mathcal{U}$ & V & $\mathcal{V}$ & W & $\mathcal{W}$ & X & $\mathcal{X}$ & Y & $\mathcal{Y}$ & Z & $\mathcal{Z}$\\
\hline
\end{tabular}
\end{document}