Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Printer:-Indent - indent line in printed output
Printer:-PopIndentation - reduce indentation depth
Printer:-PushIndentation - increase indentation depth
Calling Sequence
Printer:-Indent()
Printer:-PopIndentation()
Printer:-PushIndentation()
Parameters
Printer
-
Printer module
Description
The procedure Indent, when used as an argument to a Print call, indicates the argument following Indent() should be indented at the current indentation level.
The procedures PushIndentation and PopIndentation, when called, respectively increase and decrease the current indentation level.
The string used for indentation is controlled by the language attribute "Indent_Char". The number of indentation characters used for all lines, and the number of characters for each level of indentation are controlled by the language attributes "Indent_Base" and "Indent_Increment" respectively.
Any indented output line will have indentation characters, where b is the value of "Indent_Base", d the value of "Indent_Increment", and l the current indentation level.
Examples
Define a language IndentExample, as an extension of C, in which statements are indented and appended with a semicolon, a comment and an end-of-line delimiter.
with(CodeGeneration): LanguageDefinition:-Define("IndentExample", 'extend' = "C", AddPrintHandler( Names:-Statement = proc(x) Printer:-Print( Printer:-Indent(), x, "; /* statement */", Printer:-Endline() ) end proc, Names:-Assignment = proc(x,y) Printer:-Print( Printer:-Indent(), x, " = ", y, "; /* assignment */", Printer:-Endline() ) end proc ), AddFunction( "f", [numeric]::numeric, "f" ) ); Translate(proc(x) local t; t := f(x); t/2 end, language = "IndentExample", resultname = t);
double t (double x) { double t; /* statement */ t = f(x); /* assignment */ return(t / 0.2e1); /* statement */ }
Define a language identical to VisualBasic, but which uses tab characters instead of spaces for indentation.
a = Sin(x) b = Asin(a)
See Also
Language Attributes, Print, Printer
Download Help Document
Copyright © MathResources Inc. All Rights Reserved.
www.mathresources.com