Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
How latex Formats Names
Description
When latex processes a Maple object of type string it makes various tests to see if special processing is desirable. This allows LaTeX to produce standard mathematical output in most situations.
On encountering a string, latex first tests to see if the given string refers to an entry in the table latex/special_names. If so, that entry's value is used. This is how I is converted to i, Pi to pi, and so forth.
Next, latex checks to see if the given string is contained in the set latex/greek. If it is, then a backslash is prepended to its value. This allows names like "alpha" and "beta" to be printed as Greek symbols.
Then, latex checks to see if the given string is contained in the set latex/mathops. If it is, then a backslash is prepended to its value. This allows function names like "log" and "cos" to be printed correctly without further processing.
The fonts used by latex are controlled by two variables: latex/csname_font, which is initially set to \it, and latex/verbatim_font, which is initially set to \tt. The former is used for printing multi-character strings that do not require back-quoting; the latter is used for those strings that do.
The latex command searches for special function formatting rules before it searches for special name formatting rules. See latex/functions for more information.
Examples
-3\,i\pi
{\it Total\_profit}\,{\it Rate}
{\frac {\Gamma \left( x \right) }{\gamma}}+{\frac {\psi}{\beta}}
See Also
latex, latex/functions
Download Help Document