Erklärung von Formelzeichen

Formelsatz für Mathematik, Naturwissenschaften und Technik


Yrrwicht
Forum-Newbie
Forum-Newbie
Beiträge: 1
Registriert: Mo 17. Mär 2014, 23:43

Erklärung von Formelzeichen

Beitrag von Yrrwicht »

Hallo,

ich schreibe gerade an einem kleinen paper.
Darin sind mehrere Formel die meist recht kurz sind. Derzeit habe ich das folgendermaßen gelöst:

Yrrwicht
\begin{equation}\label{haft}
l_{H}=\frac{f_{t,F}}{4\tau_{m}}\cdot d
\end{equation}
\begin{center}\begin{tabular}{rcl}
$f_{t,F}$  &\ldots &tensile strength of the fiber\\
$\tau_{m}$ &\ldots &mean acceptable bond stress\\
$d$ &\ldots &diameter of the fiber\\
\end{tabular}\end{center}
Aber eigentlich will ich die erklärung der verwendeten variablen rechts neben der Formel haben.
Danke schonmal für die hilfe.

esdd
Forum-Meister
Forum-Meister
Beiträge: 2561
Registriert: So 7. Feb 2010, 16:36

Beitrag von esdd »

Dann setze die Tabelle doch mit in die Gleichungszeile:
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}

\begin{equation}\label{haft1} 
  l_{H}=\frac{f_{t,F}}{4\tau_{m}}\cdot d 
  \qquad\qquad
  \begin{tabular}[t]{rcl} 
    $f_{t,F}$  &\ldots &tensile strength of the fiber\\ 
    $\tau_{m}$ &\ldots &mean acceptable bond stress\\ 
    $d$ &\ldots &diameter of the fiber 
  \end{tabular}
\end{equation}
\begin{equation}\label{haft2} 
  l_{H}=\frac{f_{t,F}}{4\tau_{m}}\cdot d 
  \qquad\qquad
  \begin{array}[t]{rcl} 
    f_{t,F}  &\ldots &\text{tensile strength of the fiber}\\ 
    \tau_{m} &\ldots &\text{mean acceptable bond stress}\\ 
    d &\ldots &\text{diameter of the fiber} 
  \end{array}
\end{equation}
\end{document}
Gruß
Elke

Antworten