All public logs

Jump to: navigation, search

Combined display of all available logs of GeoGebra Manual. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 12:15, 12 January 2024 Murkle talk contribs restored page Tool Creation Dialog (15 revisions)
  • 12:08, 12 January 2024 Murkle talk contribs deleted page Tutorial:Other tutorials (content was: "#REDIRECT Tutorial:External tutorials", and the only contributor was "Florian Sonner" (talk))
  • 12:07, 12 January 2024 Murkle talk contribs deleted page Compatibility (content was: "<noinclude>{{Manual Page|version=5.0}}</noinclude> GeoGebra is backward compatible in sense that files created with older version should open in later versions. Sometime we make changes which will cause files to behave differently. Differences from GeoGebra 4.4 to 5.0 * The winding rule for self-intersecting polygons has changed so they will look different. Differences from GeoGebra 3.2 to 4.0 * lists of angles, integrals, barcharts, histograms etc. are now...")
  • 01:15, 3 January 2024 Murkle talk contribs deleted page Comments:International GeoGebra Institute (content was: "The International GeoGebra Institute (IGI) is the non-profit organisation behind the free mathematics software GeoGebra. In IGI, teachers and researchers from all over the world work together to promote the learning and teaching of mathematics by supporting and coordinating the following activities: * develop free GeoGebra workshop materials, * offer workshops for teachers and future GeoGebra trainers, * further develop GeoGebra and implement new features of the software, * dev...")
  • 10:46, 20 December 2023 Murkle talk contribs deleted page Translation:IGI (content was: "=IGI Materials Translation= Thank you for your interest in translating materials of the International GeoGebra Institute (see [http://www.geogebra.org/IGI/ http://www.geogebra.org/IGI]) to your language! {{attention|Following materials are obsolette.}} At [http://www.geogebra.org/source/translation/igi/ www.geogebra.org/source/translation/igi/] you will find materials of the I...", and the only contributor was "Zbynek" (talk))
  • 10:46, 20 December 2023 Murkle talk contribs deleted page GeoGebra Institute:Blogs (content was: "Currently there are 9 GeoGebra community blogs: * [http://community.geogebra.org/en English] * [http://community.geogebra.org/es Spanish] * [http://community.geogebra.org/de German] * [http://community.geogebra.org/zh Chinese] * [http://community.geogebra.org/dk Danish] * [http://community.geogebra.org/hu Hungarian] * [http://community.geogebra.org/eu Basque] * [http://community....", and the only contributor was "Zbynek" (talk))
  • 14:48, 11 October 2023 Murkle talk contribs restored page Scripting (31 revisions)
  • 14:22, 11 October 2023 Murkle talk contribs restored page Help Menu (13 revisions)
  • 14:21, 11 October 2023 Murkle talk contribs deleted page Tool Creation Dialog (content was: "<noinclude>{{Manual Page|version=5.0}}</noinclude>{{gui|dialog}} First, create the construction your tool should be able to create later on. In the link=|18px Tools menu, select link=|18px ''Create New Tool'' in order to open the corresponding dialog box. Now you need to fill in the three tabs ''Output Objects'', ''Input Objects'', and ''Name and Icon'' in order to create your custom tool. {{example|Create a Sq...")
  • 14:20, 11 October 2023 Murkle talk contribs deleted page The Dynamic Worksheet Editor (content was: "<big><big>!!!!! Since we have a new GeoGebra Book about the [https://www.geogebra.org/m/e9Z6UDu4 Dynamic Worksheet Editor], this page is not up to date anymore. !!!!! </big></big> =What is a Dynamic Worksheet= A ''Dynamic Worksheet'' is an interactive (online) worksheet that combines different elements (e.g. text, applets, videos, images) in a...", and the only contributor was "Sabrina.azesberger" (talk))
  • 14:19, 11 October 2023 Murkle talk contribs deleted page Tutorials for Experts (content was: "* Introduction to GeoGebraScript: Scripting in GeoGebra * Scripting: Mutually Exclusive Checkboxes * Scripting: Interact with GeoGebra through JavaScript * Sorting arbitrary lists * Tutorial:Scripting:Functions and subrou...", and the only contributor was "Jhohen" (talk))
  • 14:15, 11 October 2023 Murkle talk contribs deleted page Tips:Restricted Functions (content was: "To restrict a function, e.g. <code>f(x) = x^2</code> to the interval <code>[-2,2]</code>, you can use <code>f(x) = If[-2<=x<=2,x^2]</code>.")
  • 14:15, 11 October 2023 Murkle talk contribs deleted page Tips:Simple moveable Square (content was: "Of course there is a tool to create a square by using the Regular Polygon Tool, but the result is not really moveable. You need to move the both points, that are used to draw the square. To get a square, that is moveable with a side-length of 3 you can do the following: * Create a point <code>A</code>. * Enter at the Input Bar <code>B=A+(3,0)</code>, <code>C=A+(3,3)</code> and <code>D=A+(0,3)</code>. * Use segments or the Polygon Tool.")
  • 14:15, 11 October 2023 Murkle talk contribs deleted page Tips:Tools (content was: "GeoGebra comes with many tools (a complete list can be found here), but sometimes that's just not enough. Thankfully you can create your own tools for common tasks or for your students.")
  • 14:15, 11 October 2023 Murkle talk contribs deleted page Tips:Using Parameters (content was: "Parameters are often used in functions like <code>f(x)=a*x²</code> to explore the influence of a parameter. To use a parameter you need to define it, in this case <code>a</code>, before you define the function. If you don't do that the function won't be accepted. The parameter a can be a simple number (enter at input-line something like <code>a=2</code>) or a slider (nothing more than a visible free number)")
  • 14:15, 11 October 2023 Murkle talk contribs deleted page Tips:Regression Curves (content was: "GeoGebra can create regression curves out of a list of points for you: <code>f = FitLine[{(-1, 0), (2, 3), (4, 2)}]</code>. There are many different regression curves implemented, all starting with Fit..[], like FitSin[], FitPoly[] or FitExp[].")
  • 14:14, 11 October 2023 Murkle talk contribs deleted page Tips:Pre-defined Functions (content was: "There are many functions already defined by GeoGebra, like <code>sin(x)</code>, <code>e(x)</code>, <code>sqrt(x)</code> and <code>gamma(x)</code>. See complete list of predefined functions for details.")
  • 14:14, 11 October 2023 Murkle talk contribs deleted page Tips:Point Coordinates (content was: "If you need the <em>x</em> and <em>y</em> coordinates of a point, for example <code>A</code>, you can just type <code>x(A)</code> or <code>y(A)</code>. Voilà!")
  • 14:14, 11 October 2023 Murkle talk contribs deleted page Tips:Missing ToolTips (content was: "For every predefined Tool that is selected (it must be a blue border around it) you can find the name of the Tool and a short help how to use it right beside the Tools in the Toolbar. Sometimes the help is not visible, but that's not an error. Make the GeoGebra window wider and the help will be visible. You can see the help information too, if you the mouse pointer is for some seconds over the tool in the Toolbar or in the expanded Toolbox.")
  • 14:14, 11 October 2023 Murkle talk contribs deleted page Tips:Dynamic Slider (content was: "Since version 4.0 slider (link=Slider Tool) allows you to use variables or expressions for min, max and increment.")
  • 14:13, 11 October 2023 Murkle talk contribs deleted page Tips:Complex Numbers (content was: "GeoGebra supports complex numbers, just enter e.g. <code>z = 2 + 3i</code>. Complex numbers just work like normal numbers most of the time and even some pre-defined functions work with complex arguments, try e.g. <code>cos(2 + i)</code>. Plotting complex functions is not possible however.")
  • 14:13, 11 October 2023 Murkle talk contribs deleted page Tips:Animation (content was: "If you have a slider you can make him change his value automatically to create an animation. You can right-click onto your slider and select ''Animation On'' anytime to start the animation. There are a lot of settings to tweak, so you should better look at the Animation manual page!")
  • 14:13, 11 October 2023 Murkle talk contribs deleted page Tips (content was: "left|48px On this page you will find specific tips on how to use GeoGebra that might not be covered in our introductory materials or the user manual. == List of Tips == {{Special:AllPages/Tips:}} == Share Your Own Tips == You can share your own tips by creating a new page with "Tips:" as a prefix of the page name, e.g. "Tips:Restricted Functions" and add your tip as a content. Here are some suggestions for writing ne...")
  • 14:13, 11 October 2023 Murkle talk contribs deleted page Introduction to the use of GeoGebraScript (content was: "#REDIRECT Tutorial:Introduction to GeoGebraScript", and the only contributor was "Florian Sonner" (talk))
  • 14:12, 11 October 2023 Murkle talk contribs deleted page Main Page (content was: "{{DISPLAYTITLE:GeoGebra Help Pages}} <div class="box_6"> left|link=Tutorial:Main Page|60px ==Tutorials== Step-by-step tutorials for GeoGebra both for beginners and experts </div> <div class="box_6"> left|link=http://www.geogebra.org/forum|60px ==[http://www.geogebra.org/forum Forum]== Get quick answers to all your questions in our friendly [http://www.geogebra.org/forum GeoGebra User Forum...")
  • 14:11, 11 October 2023 Murkle talk contribs deleted page Help Menu (content was: "<noinclude>{{Manual Page|version=4.2}}</noinclude> {{gui|menu}} {{note|Following four menu items work only provided you have access to the internet. You can download the [http://wiki.geogebra.org/en/Tutorials GeoGebra Tutorials] to work offline.}} {{menuitem|name=Tutorials}} This menu item opens the tutorial part of GeoGebraWiki in your browser. {{menuitem|name=Help|icon=Menu-help.svg}} This menu item opens the HTML-version of the GeoGebra help (the Ma...")
  • 14:11, 11 October 2023 Murkle talk contribs deleted page Tutorials for Administrators (content was: "* GeoGebra mass installation * Tutorial:GeoGebra with Moodle * Tutorial:GeoGebra with Mediawiki * Tutorial:GeoGebra with DokuWiki * Tutorial:GeoGebra with WordPress * [http://www.unpeud.info/a-propos-du-site/plugin-geogebra-pour-joomla Joomla plugin] * [http://drupal.org/project/geogebra Drupal module]", and the only contributor was "Jhohen" (talk))
  • 14:11, 11 October 2023 Murkle talk contribs deleted page Open Dialog - Insert File (content was: "<noinclude>{{Manual Page|version=5.0}}</noinclude>{{gui|dialog}} ==Insert File== In the '''GeoGebra Desktop Version''' (Windows and Linux) you can insert a GeoGebra file into the current one, keeping the existing objects. In the menu bar, click ''File - Open'', then select ''Insert File (.ggb)'' from the dropdown list displayed and click on the .ggb file you want to insert in the current construction. Some objects of the inserted file may be renamed to ensure that all the obj...")
  • 14:10, 11 October 2023 Murkle talk contribs deleted page Open Dialog - Style Templates (content was: "<noinclude>{{Manual Page|version=5.0}}</noinclude> {{gui|dialog}} ==Apply Template== In the GeoGebra Desktop Version you can create a custom style worksheet (template), containing the visual settings of one or more objects of the same or different types, so that those settings can be then applied to objects in other GeoGebra files. ===How to make a template file=== Create a GeoGebra file (which will be saved later, using a proper name, e.g. ''style.ggb''). In the advanced optio...")
  • 14:08, 11 October 2023 Murkle talk contribs deleted page Tutorial (content was: "#REDIRECTTutorial:Main Page", and the only contributor was "Zbynek" (talk))
  • 11:25, 27 September 2023 Murkle talk contribs deleted page Reference:Supported Devices (content was: "==Web app== GeoGebra web application can be used with any device running Internet Explorer 11 or recent versions of Google Chrome, Safari, Mozilla Firefox or Edge. It is available documentation about Tablet App. ==Desktop app== See Reference:GeoGebra Installation for details. ==iPad app== GeoGebra Apps require iOS 11 or above ==Android== The GeoGebra Apps are available for Android 5.0 or later.")
  • 16:35, 16 May 2023 Murkle talk contribs deleted page Scripting (content was: "<noinclude>{{Manual Page|version=5.0}}</noinclude>{{objects|property}} Script is a sequence of commands, that are executed one after each other. GeoGebra supports two scripting languages - GGBScript and Javascript. You can enter scripts in the ''Scripting'' tab of the link=|16px Properties Dialog of the object you want to assign a script to. {{Note|The ''Properties'' panel needs to be closed for scripts to work.}} Different objects support di...")
  • 08:58, 2 December 2022 Murkle talk contribs deleted page Tutorial:New features of Version 4.0 (content was: "In July 2009, the GeoGebra developers began working on the new version 4.0. Thanks to many new programmers, it has been once again been a huge increase in functionality. The list of new features compared to version 3.2 is overwhelmingly long. This summary page hopes to give you a window to the innovative benefit found in the new version 4.0. '''''Do not be put off by the many new features of GeoGebra!''' GeoGebra is still just as easy to operate as before. None of the basic to...")
  • 08:58, 2 December 2022 Murkle talk contribs deleted page Tutorial:Installation & Introduction, Drawing vs Geometric Construction (content was: "category:Tutorial ==Introduction and Installation of GeoGebra== ===Installation WITH Internet Access=== Install GeoGebra WebStart * Open your Internet browser and go to http://www.geogebra.org/webstart. * Click on the button called WebStart 4.0. {{note|The software is automatically installed on your computer. You only need to confirm all messages that might appear with OK or YES.}} {{hint|Using GeoGebra WebStart has several advantages for you provided that you have an Int...")
  • 08:57, 2 December 2022 Murkle talk contribs deleted page Tutorial:Practice Block I (content was: "category:Tutorial ==Square Construction== In this activity you are going to use the following tools. Make sure you know how to use each tool before you begin with the actual construction of the square: {|border="1" cellpadding="10" |Image:Tool_Segment_between_Two_Points.gif‎‎||Segment |- |Image:Tool_Perpendicular_Line.gif‎||Perpendicular Line |- |Image:Tool_Line_through_Two_Points.gif‎||Line |- |Image:Tool_Circle_C...")
  • 08:56, 2 December 2022 Murkle talk contribs deleted page Tutorial:Inserting Pictures into the Graphics View (content was: "category:Tutorial ==Drawing Tool for Symmetric Figures== Open the dynamic worksheet [http://www.geogebra.org/book/intro-en/topics/files/07_Inserting_Pictures/A13_drawing_tool_symmetry.html Drawing Tool Symmetry]. Follow the directions on the worksheet and experience how your students could explore the axes of symmetry of a flower. {{hint|You will learn how to create such dynamic worksheets later in this workshop.}} center * How could your students...")
  • 08:56, 2 December 2022 Murkle talk contribs deleted page Tutorial:Scripting:Functions and subroutines (content was: "{{Tutorial|title=Functions and subroutines in Geogebra scripting}} [http://en.wikipedia.org/wiki/Subroutine Subroutines] (also known as functions or procedures) are an important concept in computer programming, and help with program maintenance and code re-use. This tutorial describes some ways that you can enjoy some of the advantages of subroutines in GeoGebra. '''Method 1.''' Custom tools act like a new function. They can take inputs and produce output o...")
  • 08:56, 2 December 2022 Murkle talk contribs deleted page Tutorial:Custom Tools and Customizing the Toolbar (content was: "category:Tutorial ==The Theorem of Pythagoras== ===Preparations=== * Open a new GeoGebra window. * Switch to Perspectives – Geometry. * Change the labeling setting to ''New Points Only'' (menu ''Options – Labeling''). ===Construction Steps=== {|border="1" cellpadding="15" |1||Image:Tool_Segment_between_Two_Points.gif‎||Create segment a with endpoints AB. |- |2...", and the only contributor was "Corinna" (talk))
  • 08:56, 2 December 2022 Murkle talk contribs deleted page Tutorial:Creating Static Instructional Materials (content was: "category:Tutorial ==Saving Pictures as Files== In this activity you will learn how to export a picture from GeoGebra into a file. Compared to exporting it to the clipboard this export possibility has several advantages: * You can save your picture and reuse it later on. This isn’t possible with the clipboard since data is just stored temporarily there and can’t be reused in a later session. * You can determine the scale of your picture which comes in handy if you want...")
  • 08:55, 2 December 2022 Murkle talk contribs deleted page Tutorial:Geometric Constructions & Use of Commands (content was: "category:Tutorial ==Square Construction== In this activity you are going to use the following tools. Make sure you know how to use each tool before you begin with the actual construction of the square: {|border="1" cellpadding="10" |Image:Tool_Segment_between_Two_Points.gif‎‎||Segment |- |Image:Tool_Perpendicular_Line.gif‎||Perpendicular Line |- |Image:Tool_Line_through_Two_Points.gif‎||Line |- |Image:Tool_Circle_Ce...")
  • 08:55, 2 December 2022 Murkle talk contribs deleted page Tutorial:Transformations & Inserting Pictures into the Graphics View (content was: "category:Tutorial ==Creating a Function Domino Game== In this activity you are going to practice exporting function graphs to the clipboard and inserting them into a word processing document in order to create cards for a "Function Domino" game. Make sure you know how to enter different types of functions before you begin with this activity. center ===Preparations=== * Open a new GeoGebra window. * Switch to ''Perspectives – Algebra & Graphics''....")
  • 08:54, 2 December 2022 Murkle talk contribs deleted page Tutorial:Algebraic Input, Functions & Export of Pictures to the Clipboard (content was: "category:Tutorial ==Parameters of a Linear Equation== In this activity you are going to use the following tools, algebraic input, and commands. Make sure you know how to use them before you begin with the actual construction. {|border="1" cellpadding="10" |Image:Tool_Slider.gif‎‎||Slider |- |||line: y = m x + b |- |Image:Tool_Segment_between_Two_Points.gif‎‎||Segment |- |||Intersect[line, yAxis] |- |Image:Tool_Intersect_Tw...")
  • 08:54, 2 December 2022 Murkle talk contribs deleted page Tutorial:Practice Block III (content was: "category:Tutorial ==Visualizing a System of Equations== In this activity you are going to use algebraic input and commands. Make sure you know the syntax for algebraic input and commands before you begin. You might want look at the dynamic worksheet called [http://www.geogebra.org/book/intro-en/topics/files/09_Practice_Block_III/A_3a_system_equations.html System equations...", and the only contributor was "Corinna" (talk))
  • 08:53, 2 December 2022 Murkle talk contribs deleted page Tutorial:Main Page (content was: "#REDIRECTTutorials")
  • 20:00, 1 December 2022 Murkle talk contribs deleted page Tutorial talk:Main Page/Links in Headlines (content was: "Why are the headlines for the beginner and export tutorials links? The pages they link to are listing less tutorials than the main page, so they should be removed until the main page listing would take too much space and we actually need to outsource that to another place.", and the only contributor was "Florian Sonner" (talk))
  • 20:00, 1 December 2022 Murkle talk contribs deleted page Tutorial:Inserting Static and Dynamic Text into the GeoGebra’s Graphics View (content was: "category:Tutorial ==Coordinates of Reflected Points== ===Preparations=== * Open a new GeoGebra window. * Switch to ''Perspectives - Algebra & Graphics'' and show the grid (View Menu). * In the Options Menu set the Point capturing to ''Fixed to Grid''. ===Construction Steps=== {|border="1" cellpadding="15" |1||Image:Tool_New_Point.gif‎||Create point A = (3, 1) |- |2||||Create line a: y = 0 |- |3||Image:Tool_Reflect_Object_in_Line.gif‎||Mirror point A...")
  • 19:58, 1 December 2022 Murkle talk contribs deleted page Tutorial:Practice Block II (content was: "category:Tutorial ==Parameters of a Linear Equation== In this activity you are going to use the following tools, algebraic input, and commands. Make sure you know how to use them before you begin with the actual construction. {|border="1" cellpadding="10" |Image:Tool_Slider.gif‎‎||Slider |- |||line: y = m x + b |- |Image:Tool_Segment_between_Two_Points.gif‎‎||Segment |- |||Intersect[line, yAxis] |- |Image:Tool_Intersect_T...")
  • 19:58, 1 December 2022 Murkle talk contribs deleted page Tutorial:Export of Pictures to the Clipboard (content was: "category:Tutorial GeoGebra’s graphics view can be exported as a picture to your computer’s clipboard. Thus, they can be easily inserted into text processing or presentation documents allowing you to create appealing sketches for tests, quizzes, notes or mathematical games. ==Exporting Pictures to the Clipboard== ===Create your Sketch=== Open a new GeoGebra window and make sure the Algebra View, Input Bar and coordinate axes are shown. {|border="1" cellpaddin...")
  • 19:57, 1 December 2022 Murkle talk contribs deleted page Tutorial:Square (content was: "{{Tutorial |title=Constructing a Square }} Problem: How are you able to construct a square without using the Regular polygon tool? In this tutorial, like Tutorial 1, we will mimic compass and straightedge construction using the circle tool, the parallel line tool, the perpendicular tool to construct a square instead of using the Regular polygon tool. We will also reinforce the use of the angle tool, this time, learn how to use it to measure angle using three points. '''F...")
  • 19:57, 1 December 2022 Murkle talk contribs deleted page Category:Integration tutorials (content was: "This category contains integration tutorials.")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
© 2024 International GeoGebra Institute