PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Text in Formeln



the-ganymed
26-03-2006, 17:22
Hallo,

habe vor kurzem mit LaTEX angefangen und arbeite mich durch verschiedene Anleitungen.
Nun habe ich aber eine Problem mit dem Einbinden und Ausrichten von Text als Kommentar in Formeln?

Ich weiß das man mit \mbox Text eingeben kann.

Was ist aber mit dem Makro \text ?

Welches Modul muss man einbinden um es zu nutzen, und gibt es sonst noch andere Mögichkeiten?

Würde mich über Antwort freuen.

Gruß

pospiech
26-03-2006, 18:00
Für Mathe solltest du immer amsmath benutzen. Das stellt dir auch \text zur Verfügung.

Dann solltest du dich vielleicht einlesen in Mathebefehle:
http://www.matthiaspospiech.de/latex/dokumentation/mathematik/

Pakete die man Laden könnte oder sollte



% *** Mathematik **************************************
%
%%% Doc: ftp://tug.ctan.org/pub/tex-archive/macros/latex/required/amslatex/math/amsldoc.pdf
\usepackage[
% sumlimits,
% intlimits,
% namelimits
]{amsmath} %
% do not use eqnarray together with amsmath !

%%% Doc: ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/mh/doc/mathtools.pdf
% Enchances amsmath, and fixes some bugs
\usepackage[fixamsmath,disallowspaces]{mathtools}

%%% Doc: http://www.ctan.org/info?id=fixmath
% LaTeX's default style of typesetting mathematics does not comply
% with the International Standards ISO31-0:1992 to ISO31-13:1992
% which indicate that uppercase Greek letters always be typset
% upright, as opposed to italic (even though they usually
% represent variables) and allow for typsetting of variables in a
% boldface italic style (even though the required fonts are
% available). This package ensures that uppercase Greek be typeset
% in italic style, that upright $\Delta$ and $\Omega$ symbols are
% available through the commands \upDelta and \upOmega; and
% provides a new math alphabet \mathbold for boldface
% italic letters, including Greek.
\usepackage{fixmath}

\usepackage{icomma}

%%% Doc: ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/onlyamsmath/onlyamsmath.dvi
\usepackage[
all,
warning
]{onlyamsmath}

%%% Doc: http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
%\usepackage{amssymb}



Matthias

rais
26-03-2006, 18:22
Hallo und Herzlich Willkommen :)

Nun habe ich aber eine Problem mit dem Einbinden und Ausrichten von Text als Kommentar in Formeln?

Allgemein ist es günstiger, wenn Du ein Minimalbeispiel erstellst, an dem man Dein Problem nachvollziehen kann (bzw. man sehen kann, was Du wie erstellst)

Ich weiß das man mit \mbox Text eingeben kann.

Was ist aber mit dem Makro \text ?

Welches Modul muss man einbinden um es zu nutzen,
amsmath

und gibt es sonst noch andere Mögichkeiten?



\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{align}
a &= b \quad \text{bla}\\
c &= d \quad \mathrm{blabla}\\
\intertext{blubb}
e &= f
\end{align}
\end{document}

hmm, ich muss wohl öfter mal den refresh-Knopp drücken :D

MfG,

the-ganymed
27-03-2006, 17:59
Danke für die Hilfe.

In Zukunft werde ich auch den Tip beherzigen ein Beispiel anzuführen.


Frank