Sabtu, 18 Januari 2025

Vocabulary Exercise 1

Learning Objectives: Practice speaking these following words.

Long Vowels

  • Manualˈmænjuːəl /
  • Turbulent /ˈtɜːbjʊlənt/
  • Mutual /ˈmjuːtʃuəl/

Primary Intonation

  • Bracket  /ˈbrækɪt/
  • Market  /ˈmɑː(r)kɪt/
  • Racket / ˈrækɪt /

Bibliography

https://www.bbc.co.uk/
https://www.neliti.com/ ( book )
https://www.uni-hamburg.de/ ( university )

Jumat, 17 Januari 2025

Using TexMaker To Compile Latex PSTricks

Learning Objective:

To write a LaTeX document with PSTricks or to do some PSTricks drawings with LaTeX, using TeXmaker.
  1. Before you run the Latex file using Tools menu -> Quick Build menu (usually F1 button), 
  2. Go to the Texmaker Options menu -> Configure Texmaker menu -> Quick Build and change the quick build command to "Latex+dvips+ps2pdf+View PDF".
  3. Go to Commands -> and add -shell-escape to PdfLaTeX box.
  4. Press OK button.

Related Post

Number Line In Latex 4

  1. type this following latex code in Latex editor for drawing a number line:
    % !TEX TS-program = pdflatex
    % !TEX encoding = UTF-8 Unicode
    %% Based on a TexWorks,TexMaker,TeXnicCenter-Template by Tino Weinkauf.
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


    \documentclass{report}


    %% Tikz Packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \usepackage{tikz}
    \usetikzlibrary{arrows}
    \usetikzlibrary{patterns}
    \usetikzlibrary{positioning}


    %% Math Packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \usepackage{amsmath}
    \usepackage{amsthm}
    \usepackage{amsfonts}


    \begin{document}

    \centering
    \begin{tikzpicture}% number line


    % edit here for the x-axis horizontal line
    \draw[latex-,very thick] (-5,0) -- (5,0);
    \draw[-latex,very thick] (-5,0) -- (5,0);


    %x axes vertical lines
    \foreach \x in {-4, -3, -2, -1, 0, 1, 2, 3, 4} \draw[shift={(\x,0)}, color=black] (0,0) node{$\bullet$};


    % edit here for the axes numbers below the x-axes horizontal line
    \foreach \x in {-4, -3, -2, -1, 0, 1, 2, 3, 4}
    \draw[shift={(\x,0)},color=black](0,0) node[below] {$\textbf{\x}$};


    %% draw arrow negative line
    \draw[shift={(0,-0.75)}, thick, -latex] (-0.9,0) |- (-5,-0.75);


    %% draw negative label
    \draw[shift={(-3,0)}] (-1, -2) node{\textbf{\normalsize{} Bilangan Bulat Negatif}};


    %% draw arrow zero line
    \draw[shift={(0,-0.75)}, thick, -latex] (0,0) -- (0,-0.75);


    %% draw zero label
    \draw (0,-2) node{\textbf{\normalsize{} Bilangan}};
    \draw (0,-2.2) node[below]{\textbf{\normalsize{} Nol}};

    %% draw arrow positive line
    \draw[thick,-latex] (1,-0.75) |- (5,-1.5);

    %% draw positive label
    \draw[shift={(3,0)}] (1, -2) node{\textbf{\normalsize{} Bilangan Bulat Positif}};
    \end{tikzpicture}
    \end{document}
  2. Save file as numberLine4.tex.

Output

Number Line 4 Latex


Linear Functions Graph in Latex 1

1. Type this following latex code in the latex editor:

% !TEX TS-program=pdflatex

% !TEX encoding=UTF-8 Unicode

%

% File name: linearGraphTypes1.tex

% Description:

% Linear Functions Graph

%

% Composer: private course and tutor course

\documentclass[12pt,a4paper]{report}

\usepackage{tikz}

\usepackage{amsmath}

\usepackage{bm}

\usepackage[active,tightpage]{preview}

\PreviewEnvironment{tikzpicture}

\setlength\PreviewBorder{0.25pt}

\usepackage{pgfplots}

\pgfplotsset{compat=1.18}

\pgfplotsset{%

    axis line origin/.style args={#1,#2}{

        x filter/.append code={ % Check for empty or filtered out numbers

            \ifx\pgfmathresult\empty\else\pgfmathparse{\pgfmathresult-#1}\fi

        },

        y filter/.append code={

            \ifx\pgfmathresult\empty\else\pgfmathparse{\pgfmathresult-#2}\fi

        },

        xticklabel=\pgfmathparse{\tick+#1}\pgfmathprintnumber{\pgfmathresult},

        yticklabel=\pgfmathparse{\tick+#2}\pgfmathprintnumber{\pgfmathresult}

    }

}


\makeatletter \newcommand{\pgfplotsdrawaxis}{\pgfplots@draw@axis} \makeatother


\pgfplotsset{

    every tick/.append style={color=black},

    after end axis/.append code={

        \pgfplotsset{

            axis line style=opaque,

            ticklabel style=opaque,

            tick style=opaque,

            grid=none

        }

        \pgfplotsdrawaxis

    },

} % applies to major and minor ticks,



\begin{document}

    \begin{tikzpicture}[scale=1]

        \begin{axis}[x=1cm,y=1cm,

            axis lines = middle,

            xlabel = {$\mathbf{x\ axis}$},

            ylabel = {$\mathbf{y\ axis}$},

            xtick = \empty,

            ytick = \empty,

            xmin=-3, xmax=3.5,

            ymin=-3, ymax=3.5,small, axis on top, grid=none, minor grid style={very thin,gray!30}, major grid style={very thin,gray!30},

    %% Draw the origin:

    after end axis/.code={

        \path (axis cs:0,0) 

            node [anchor=north east,yshift=-0.075cm] {0};

    } ]


            % Plot 1, type of slope: zero slope, y = constant, type of line: horizontal

            \addplot [

            domain = -1:5,

            samples = 1000,blue,very thick] coordinates {(-3,1.5)(3,1.5)} 

            node [pos=.75, above, black] {\bfseries $\mathbf{y=b=f(x)}$};

        \end{axis}                    

\end{tikzpicture}

\end{document}

2. Save file as linearGraphTypes1.tex
3. Then build or typeset the Latex code.

Output















Kamis, 16 Januari 2025

Motion In 2 Dimensions Physics

Resultant Length Using Cosine


where, 
  • R is the resultant force
  • A and B are the magnitudes or vector of the two forces
  • θ is the angle between the forces.
Notes To see more clear picture, click on the picture

Bibliography

https://www.geeksforgeeks.org/
https://www.nagwa.com/
https://www.pw.live/
https://www.udemy.com/

Use Cosine Law To Find The Resultant Force, Calculate The Magnitude Of The Resultant Force

Rabu, 15 Januari 2025

Eclipse IDE Parts

The workbench:

  • Window
  • Product / Icon
  • A Main Menu Bar
    • Menu
    • Submenu
      • Menu Item
    • Menu Item
    • Action
      • A label
      • A Tool Tip
      • An Action Image.
      • Global Action Format
      • Edit Action Format
      • Insert Action Format
      • Format Action Format
      • Perspective Action Format;
  • A Main Toolbar
  • One or More Perspectives.
    • Views
      • View Toolbar
      • View Pull Down Menu
      • Title Area
      • Embedded Control
      • Properties Dialog / Properties View
      • Explorer View
      • Object Properties View
      • Console View
    • Editor.
      • Editor Page
      • Editor Tab
      • Line Numbers
    • Context Menu
  • Shortcut Bar
  • Status Line
  • Wizard
    • Wizard Header
  • Tool Item
  • A Command Button
  • Perspective Button
  • Plugins

Eclipse SDK Standard Components

Navigator view
Outline view
Properties view
Tasks view
Bookmarks view.
Text Editor view
Resource perspective view.

Bibliography

https://eclipsescout.github.io/

https://www.eclipse.org/

Related Post

Working In Eclipse IDE 1

Bekerja Dengan Workspace Dan Project Di Eclipse

Study About Java 1

Selasa, 14 Januari 2025

CSV Format File In Microsoft Excel


Comma-separated values  or “comma delimited files” (CSV) is a text file format that uses commas to separate values, and newlines or line breaks to separate records.

‍What delimiter Excel uses for CSV files

To handle .csv files, Microsoft Excel uses the List separator defined in Windows Regional settings.

In North America and some other countries, the default list separator is a comma (,) punctuation, so you get CSV comma delimited.

In European countries, a comma is reserved for the decimal symbol, and the list separator is generally set to semicolon (;) punctuation.

Save Excel File As CSV With Different Delimiter / Separator

When your save a workbook as a .csv file, Excel separates values with your default List separator. To force it to use a different delimiter, proceed with the following steps:
  1. Click File menu > Options button > Advanced.
  2. Under Editing options, clear the Use system separators check box.
  3. Change the default Decimal separator. As this will change the way decimal numbers are displayed in your worksheets, choose a different Thousands separator to avoid confusion.
Depending on which separator you wish to use, configure the settings in one of the following ways.

To save Excel file as CSV comma delimited, set the decimal separator to a period (dot). This will make Excel use a comma for the List separator (CSV delimiter):
  • Set Decimal separator to period (.)
  • Set Thousands separator to comma (,)
To save Excel file as CSV semicolon delimited, set the decimal separator to a comma. This will make Excel use a semicolon for the List separator (CSV delimiter):
    • Set Decimal separator to comma (,)
    • Set Thousands separator to period (.)
    If you want to change a CSV separator only for a specific file, then tick the Use system settings check box again after exporting your Excel workbook to CSV.

    A CSV file structured

    For Microsoft Excel program to be able to read a CSV file with a field separator used in a given CSV file, you can specify the separator directly in that file. For this, open your file in any text editor, e.g. Notepad, and type the below (common separator) string before any other data:
    • To separate values with comma: sep=,
    • To separate values with semicolon: sep=;
    • To separate values with a pipe: sep=|
    In the CSV file format, a field separator are used to separate the values in different cells in a spreadsheet data format.

    For example, 

    • In the dataset "10001,Small Golden Bead Bars,$18.95", the semicolon (,) separates the three data items 10001, Small Golden Bead Bars, and $18.95.
    • In the dataset "10001;Small Golden Bead Bars;$18.95", the semicolon (;) separates the three data items 10001, Small Golden Bead Bars, and $18.95.
    • In the dataset “10001|Small Golden Bead Bars|$18.95” the pipes (|) separates the three data items 10001, Small Golden Bead Bars, and $18.95.
    CSV files often contain a header row at the top which specifies the titles of each column in the file.
    sep=,
    Order no.,Item,Price
    10001,Small Golden Bead Bars,$18.95
    10002,Geometric Demonstration Tray,$39.95
    10003,Color Tablets,$69.95

    CSV files end with the extension “.csv”, and the simple structure of CSV data makes it an efficient format for storing and transferring data between different applications.

    Understanding how to use delimiters seems fairly straightforward, but once you’re working with actual datasets, problems arise quickly. For example, how do you handle a comma in a value where commas are also being used as the delimiter for the file? One option would be to surround that value in double quotes, but what if the quote character is also being used inside that value? How about the situation where a newline is used to separate each record, but it’s also present inside of an entry?

    Properly handling these complications are often dependent on the platform, so depending on where the CSV data was exported from, a different set of rules in order needs to be applied to properly interpret the dataset.

    Notes

    • Remember, if you change CSV delimiter or separator with different delimiter / separator, it will be impact to Microsoft Excel number format ( Decimal separator and Thousands separator ).
    • Obviously, the changes you've made in Excel Options are limited to Excel. Other applications will keep using the default List separator defined in your Windows Regional settings.

    Bibliography

    https://www.ablebits.com/
    https://www.oneschema.co/

    Senin, 13 Januari 2025

    Latex Beamer Short Reference

    Latex Beamer TitlePage List

    Titlepage:
    • \title
    • \subtitle
    • \author
    • \institute
    • \date
    • \subject
    • \logo
    Each frame consists of several components:
    1. a headline and a footline,
    2. a section and a subsection,
    3. a left and a right sidebar,
    4. navigation bars,
    5. navigation symbols,
    6. a logo,
    7. a frame title,
    8. a background, and
    9. some frame contents

    Latex Beamer Components Commands

    Headline:

    type this following command before \begin{document} to remove headline ( container of section and subsection ) in the whole document.

    \setbeamertemplate{headline}{}

    type this following command before \begin{frame} to remove headline ( container of section and subsection ) in the certain frame after this following command.

    \setbeamertemplate{headline}{}

    Custom FrameTitle:

    type this following command between \begin{document} and \end{document}, to custom the FrameTitle text:

    \begin{frame}

    \frametitle{Sample frame title}

    \end{frame}

    or you can type like this following command:

    \begin{frame}{Sample frame title}

    \end{frame}

    Remove FrameTitle:

    type this following command before \begin{document} to remove frametitle ( container of frame title and frame subtitle ) in the whole document.
    \setbeamertemplate{frametitle}{}
    type this following command before \begin{frame} to remove frametitle ( container of frame title and frame subtitle ) in the certain frame after this following command.
    \setbeamertemplate{frametitle}{}

    Titlepage:

    type this following command before \begin{document}

    \title[short title]{Presentation Title}

    \subtitle[short title]{Presentation Title}

    \author[short author]{Presentation Author}

    \institute[short institute]{Presentation Institute}

    \date[short date]{Presentation Date}

    \subject{Presentation Subject}

    \keywords{Presentation Keywords}

    \titlegraphic{Presentation Title Graphic}

    \pgfdeclareimage[height=0.5cm]{logo1}{logo.jpeg}
    \logo{\pgfuseimage{logo1}}

    to insert the above titlepage, type this following code, after \begin{document}:
    \begin{frame}
      \titlepage
    \end{frame}
    to insert the short part, type this following code, after \begin{document}:
    \insertshortauthor
    \insertshortdate
    \insertshortinstitute
    \insertshorttitle
    \insertshortsubtitle

    Section And Subsection In Latex: 

    type this following command before \begin{frame} to add section and subsection in the certain frame after this following command.
    \section{section title}
    \subsection{sub section title}

    Navigation Symbols:

    type this following command before \begin{document} to remove navigation symbols in the whole document.
    \setbeamertemplate{navigation symbols}{}
    type this following command before \begin{frame} to remove navigation symbols in the certain frame after this following command.
    \setbeamertemplate{navigation symbols}{}

    Footline:

    type this following command before \begin{document} to remove footline in the whole document.

    \setbeamertemplate{footline}{}

    type this following command before \begin{frame} to remove footline in the certain frame after this following command.

    \setbeamertemplate{footline}{}

    Notes:

    Latex Command above is format in monospace font ( e.g. courier  )

    Bibliography

    https://tug.ctan.org/

    https://www.overleaf.com/

    https://web.mit.edu/

    Sabtu, 11 Januari 2025

    Website Elements

    Internet Website:
    • Web Pages
      • Website Templates
        • Header
          • Brand Identity, usually a logo
          • Sub Header
        • Call-to-action button, usually offer an order transaction
        • Section
          • Category
            • Item
            • Element
            • Component
        • Menu
          • Hamburger Button
            • Hamburger Menu
            • Hamburger Sub Menu
          • Sticky Menu
          • MegaMenu
          • Classic horizontal menu
          • Sidebar menu
          • Dropdown menu
          • Breadcrumbs
        • Switcher of the languages in case of the multilingual interface
        • Cards
        • Progress Indicator
        • Favicon
        • Search field
        • Tags
          • Cloud Tags
          • Hash Tags
        • Subscription field or button
        • Contact Us
        • Footer
          • Brand identity signs, usually the name and logo of the company or product
          • Links to user support sections, for example, FAQ page, About page, Privacy Policy, Terms and Conditions, Support Team, etc.
          • Credits to website creators
          • Contact forms and information
          • Links to company or product accounts in social networks
          • Testimonials and badges
          • Certification signs
          • Subscription field or button.
      • Component
        • Form
          • Form Group
          • Form Layout
        • Button
        • Input Box
          • Text Box
          • Date/Time Picker
          • Check Box
          • Radio Button / Option Button
          • Drop Down Box / Pull Down Box
      • Modules
      • Plugins
      • Extensions
      • Website Themes
        • Fonts
        • Colors Schemes
        • Patterns
        • Background
        • Icon
        • Logo
        • Photos
        • Illustrations
        • Mascots
        • Themes Image: Header Image, Demonstration Image, Product/Item/Service Image, Title Image For (Blog/News/Information) Posts/Articles, Hero Banner/Featured Banner Image, Infographics
        • Whitespace
        • Layout
    • Website Database
    • Website Features
      • Contents
        • text ( copy stock )
        • images ( hype stock )
        • video ( footage stock )
        • animation ( motion stock )
        • audio ( sound stock )
      • Product Catalogue
      • Opt-In Offer
      • News and Information
      • FAQ ( Frequently Asked Questions )
      • Testimonials
      • Customer Services
    Notes: It doesn’t mean that all the mentioned elements should be included in one web page or in one website.

    Bibliography

    https://www.bluehost.com/
    https://laravel.com/
    https://sko.dev/
    http://themewagon.com/
    https://tubikstudio.com/
    https://www.joomla.org/

    Latex Package For Code Listing

    These are latex ordinary Package list To Handle Code Listing:
    algobox
    algorithmicx
    c2latex
    checklistings
    codebox
    codehigh
    c-pascal
    cprog
    documentation
    example
    examplep
    ffcode
    fortran
    FramedSyntax
    gincltex
    highlight
    javadoc
    listings
    listingsutf8
    minted
    piton
    pygmentex
    texments

    Notes:

    It does not mean that all mentioned packages should be installed in one computer if not of your project requirement or task requirement.


    Bibliography

    Android Studio IDE Parts

    • Main Menu Bar
    • Navigation Bar
    • Tool Bar
      • Layout Editor toolbar:
        • Design and Blueprint
        • Screen orientation and layout variants
        • System UI Mode
        • Device type and size
        • API version
        • App theme
        • Language
    • Editor Window:
      • Editor Tabs
      • Code Editor Window;
      • Layout Editor Window;
      • Zoom And Pan Controls;
      • Layout Editor Toolbar:
        • Design and Blueprint Button;
        • Screen orientation and layout variants Button
    • Tools Windows:
      • Project Tool Window or Project Explorer Window or Project Hierarchy Window;
      • Component Tree Window;
      • Attributes Window or Properties Window;
      • Tools Window Bar
      • Show/Hide Tools Window
      • Version Control Window;
      • Run Window;
      • Debug Window;
      • Logcat Window;
      • Palette Window;
      • View Mode (Button)
        • Code View Mode (Button) or Code View Mode (Icon);
        • Split View Mode (Button) or Split View Mode (Icon);
        • Design View Mode (Button) or Design View Mode (Icon);
    • Status Bar
    Notes: It does not mean that all the mentioned Android Studio IDE parts should be used in one project except in the project that must used it.

    Reference

    https://abhiandroid.com/
    https://developer.android.com/
    https://www.geeksforgeeks.org/
    https://stackoverflow.com/

    Jumat, 10 Januari 2025

    Animal Names In English

    These are the most ordinary animal names in English:
    • Bear
    • Camel
    • Cheetah
    • Cow
    • Deer
    • Dog
    • Donkey
    • Elephant
    • Fox
    • Giraffe
    • Goat
    • Horse
    • Pig
    • Rabbit
    • Squirrel
    • Zebra

    Bibliography

    https://byjus.com/
    https://www.goodreads.com/
    https://www.shutterstock.com/
    D.K. Publishing Encyclopedia
    Merriam-Webster

    Morfologi, Mengenal Imbuhan me-

    Morfologi, Mengenal Imbuhan me- / Imbuhan meng- Dan Bentuk Perubahannya

    Di antara beberapa awalan/awalan dan akhiran/imbuhan dalam bahasa Indonesia yang dapat digunakan sebagai pembentuk kata dalam bahasa Indonesia.

    Imbuhan me-/men-/meng- dan pe-/per-/peng- merupakan awalan yang terkait pola pada peluluhan/perubahan bentuk fonem awalan dan peluluhan bentuk kata dasar jika digabungkan dengan kata dasar yang berawal dengan fonem tertentu. 

    Khusus untuk kata dasar yang diawali dengan konsonan K, T, S, P, apabila diberikan awalan meN-, konsonan yang ada di awal kata dasar tersebut menjadi luluh kecuali kata berkluster (konsonan+konsonan), contoh: praktik, stabil, program, kritik, khusus, proses.

    Awalan me-, misalnya, dapat berubah bentuknya menjadi me-, meny-, men-, mem-, dan meng-.

    Awalan pe-, dapat berubah bentuknya menjadi pe-, peny-, pen-, pem-, dan peng-.

    Perubahan Awalan me-

    Awalan me- tetap menjadi me- dan berubah menjadi me-+-i jika dirangkaikan dengan kata dasar yang berawal fonem /l, m, n, ng, ny, r, w, y/.

    Contoh

    me + lihat = melihat

    me + masak = memasak

    me + nanti = menanti

    me + nganga = menganga

    me + nyala = menyala

    me + rawat = merawat

    me + warna + i = mewarnai

    Perubahan Awalan me- Menjadi mem-

    Awalan me- berubah menjadi mem- jika dirangkaikan dengan kata dasar yang berawal dengan fonem /b, f, p, v/.

    Contoh

    me + baca = membaca

    me + foto = memfoto

    me + pegang = memegang

    me + program = memprogram

    me + validasi = memvalidasi

    Perubahan Awalan me- Menjadi men-

    Awalan me- berubah menjadi men- jika dirangkaikan dengan kata dasar yang berawal dengan fonem /c, d, j, sy, t, z/.

    Contoh

    me + cuci  = mencuci

    me + daftar = mendaftar

    me + jabat = menjabat

    me + tulis = menulis

    Perubahan Awalan me- Menjadi meng-

    Awalan me- menjadi meng- jika dirangkaikan dengan kata dasar yang berawal dengan fonem /g, h, k, kh, dan vokal ( a, i, u, e, o )/.

    Contoh

    me + ambil  = mengambil
    me + inap = menginap
    me + ukur = mengukur
    me + ekor = mengekor
    me + olah = mengolah
    me + garis = menggaris
    me + hilang = menghilang
    me + kurang = mengurang
    me + khusus = mengkhusus

    Perubahan Awalan me- Menjadi menge-

    Awalan me- berubah menjadi menge- jika dirangkaikan dengan kata dasar yang hanya terdiri atas satu suku kata.

    Contoh

    me + bor = mengebor
    me + cat = mengecat
    me + lap = mengelap
    me + pel = mengepel

    Perubahan Awalan me- Menjadi meny-

    Awalan me- menjadi meny- jika dirangkaikan dengan kata dasar yang berawal dengan fonem /s/.

    me + sapu = menyapu
    me + sejahtera + kan = menyejahterakan.
    me + siram = menyiram.
    me + sikat = menyikat
    me + susut = menyusut

    Bibliography

    https://bpmplampung.kemdikbud.go.id/

    https://sdn006batamkota.sch.id/

    https://smktibaliglobalsingaraja.sch.id/

    https://www.kemdikbud.go.id/

    https://www.quipper.com/


    Most Common Text In Lesson Book

    • As a very simple example ...
    • As you can see, ...
    • Create ... with ...
    • For example ..., we ...
    • For instance of  ....
    • If you have a question from ...
    • In other words, we will ...
    • In this section/chapter, we will learn about ...
    • Of course, we would not ...
    • On the other hand, if we practice/practise this lesson, we may ...
    • Our place is the cleanest place then we can clean using several tools, such as ...
    • The book is on the table, therefore ...
    • The table can be used as ...
    • There are ... on the ...
    • We are studying about ... of ... and ... on the ...
    • When we do this exercise, we may ...

    Related Post

    Netbeans IDE parts


    • Control Area:
      • Menu Bar
        • Main Menu
          • Enabled Menu Item;
          • Menu Item With Dialog Box;
          • Menu Item With Sub Menu;
          • Menu Item With Quick Launch;
          • Menu Item Shortcut;
          • Disabled Menu Item;
      • Quick Launch Bar:
        • Toolbars:
          • File Toolbar;
          • Undo/Redo Toolbar;
          • Run Toolbar;
      • Search Tool
    • The Reference Area / The Reference Windows:
      • Reference Group:
        • The Navigator Window;
        • The Palette Window;
        • The Properties Window;
        • The Projects Window;
        •  
    • File Tab
    • The Source Button
    • The Design Button.
    • Working Area Code Editor
    • Assist Icons
    • Advice Margin
    • Code Area
    • Location Margin

    Bibliography

    https://joanpaon.wordpress.com/

    PyCharm IDE Parts

    • Main Window
    • Toolbar
    • Menubar
      • Menu
        • Menu Item
    • Tools Windows:
      • Project Tool Window
        • Navigation Bar
      • Run Tool Window
      • Python Packages Tool Window
      • Python Console,
      • Status Bar
        • The Line And Column Number Of The Current Caret Position In The Editor Widget,
        • The Line Endings In The Current File Widget,
        • The Encoding In The Current File Widget,
        • The Column Selection Mode Indicator Widget,
        • Python Interpreter Selector
      • Notifications Tool Window
    • Editor
      • Scrollbar,
      • Gutter
        • Action Indicators And Action List
    • Popup Menu,
      • Generate Popup,
      • Refactor This Popup
      • New popup,
      • VCS Operations Popup ( Version Control System Operations Popup)
    • Context Menu

    Bibliography

    https://www.jetbrains.com/
    https://learnpython.com/

    Kamis, 09 Januari 2025

    Latex Package For Handle Phonetic

    These are ordinary latex Package list To Handle Phonetic:
    clara
    doulossil
    engpron
    fonetika
    ipa
    NewComputerModern
    phonetic
    phonrule
    pst-vowel
    stoneipa
    tipa
    tipauni
    tonevalue
    tsipa
    unitipa **
    vowel
    wsuipa
    wsuipa2tipa

    Example tipa package in English Phonetics:

    Type this following latex code after \documentclass and before \begin{document} or in Latex preamble:

    \usepackage[utf8]{inputenc} % Required for inputting international characters
    \usepackage[T1]{fontenc} % Output font encoding for international characters

    \usepackage{tipa} % print out language phonetic

    \DeclareUnicodeCharacter{02C8}{\textprimstress}
    \DeclareUnicodeCharacter{026A}{\textsci}
    \DeclareUnicodeCharacter{0292}{\textyogh}
    \DeclareUnicodeCharacter{0254}{\textopeno}
    \DeclareUnicodeCharacter{02A4}{\textdyoghlig}
    \DeclareUnicodeCharacter{0259}{\textschwa}
    \DeclareUnicodeCharacter{028A}{\textupsilon}
    \DeclareUnicodeCharacter{02D0}{\textlengthmark}
    %% for macron using this syntax: \={alphabet_character}
    %% alphabet_character from a-z; e.g. of alphabet_character: a
    %\DeclareUnicodeCharacter{035E}{}

    Type this following latex code after \begin{document} and before \end{document} or in Latex body document text:

     \textipa{[""Ekspl@"neIS@n]} \\
     \textipa{[s@"luS@n]} \\
     \textipa{[s@"l\={o}oSH@n]} \\
     \textipa{[s@"lu:S@n]} \\

    Result:

    ˌekspləˈneɪʃ(ə)n
    səˈluʃən
    səˈlo͞oSHən
    səˈluːʃ(ə)n

    Reference Table

    is to type ə
    I is to type ɪ
    I is to type ɛ
    "" is to type ˌ ( secondary stress pronunciation )
    ae is to type æ
    is to type ˈ ( primary stress pronunciation )

    Notes

    ** obsolete package

    Bibliography

    cambridge textbook
    longman dictionary
    https://ctan.org/
    https://www.ef.co.id/
    https://easypronunciation.com/
    https://en.wikibooks.org/
    https://tex.stackexchange.com/
    https://uiowa.edu/ ( university )
    https://www.l.u-tokyo.ac.jp/ ( university )

    Using IrfanView

    Hotkeys / Keyboard Shortcuts:

    F5 or U Refresh display and directory list *
    + Zoom In ***
    Zoom Out ***
    Up Arrow Key Scroll image up ***
    Down Arrow Key Scroll image down ***
    Right Arrow Key Scroll image right OR next image in directory *
    Left Arrow Key Scroll image left OR previous image in directory *
    Page Up Load previous file in directory OR scroll image up *
    Page Down Load next file in directory OR scroll image down *
    CTRL + Page Up Show previous page in a multipage image OR load previous file in directory *
    CTRL + Page Down Show next page in a multipage image OR load next file in directory *
    Space Load next file in directory *
    Backspace Load previous file in directory *
    ESC Close actual window (main window, slideshow, full screen, thumbnails or a dialog) ***
    Enter Switch between Fullscreen and Window mode ***
    TAB Switch between main and thumbnail window (if visible) *
    CTRL + TAB Control switch in the thumbnail window
    Pause/Break Pause an automatic slideshow. Press this key again to resume the slideshow.
    Home Scroll to begin (horizontal scroll) OR load first file in directory
    CTRL + Home Load first file in the directory
    End Scroll to end (horizontal scroll) OR load last file in directory
    CTRL + End Load last file in the directory
    F Switch (toggle) between ‘Fit images to desktop’ and ‘Fit window to image’
    G Stop GIF or ANI animation
    H Horizontal flip
    I Show image information
    L Rotate left
    M Minimize IrfanView windowMM
    N Toggle fullscreen/slideshow text display
    O Open dialog
    R Rotate right
    T Show Thumbnails window **
    V Vertical flip
    X Browsing (window or fullscreen mode): tag current file
    CTRL + F Search files **
    CTRL + H Original size (no zoom) ***
    CTRL + I Show IPTC dialog for JPGs
    CTRL + N Open current file in another IrfanView window ***
    CTRL + U Image -> Fine/Custom Rotation ***
    SHIFT + A Start/stop automatic viewing (slideshow in window)
    SHIFT + Q Browsing (window or fullscreen mode): show tagged files in Thumbnails window *
    SHIFT + R Reopen file ***
    SHIFT + X Browsing (window or fullscreen mode): un-tag current file

    Options / Settings

    When you are done of this following options, click OK button. To exit without any changes, click Cancel button.
    To turn off auto jump to next image in Fullscreen view:
    • click Properties menu -> Browsing/Editing sub menu-> Jump to next image ... option, please uncheck. ( Classic Version )
    • click View menu -> Start/Stop automatic viewing sub menu ( Modern Version )
    To change Esc/Escape keyboard options:
    • click Options menu -> Properties/Settings sub menu -> Start / Exit options
      • Warning on ESC program exit: Check it, if you want to get a warning message, if IrfanView should be closed using the ESC key.
      • Ask to Save Changes on exit or file/image change: Check it, if you want to get a warning message, if IrfanView should be closed (or  image/file changed) and an Undo or unsaved image is available in memory.
      • Close viewer only on ESC, if Thumbnails displayed: Check it, if you want to hide main IrfanView window on ESC click in it, if Thumbnails window is showed.

    Notes

    Warning!!! may be make your program not responding, if you have many picture or you have a high-resolution image
    ** Warning!!! may be make your program not responding, if you have many picture
    *** Warning!!! may be make your program not responding, if you have a high-resolution image

    Bibliography

    helpmax.net
    www.irfanview.com

    Selasa, 07 Januari 2025

    Import Java Package

    The java.lang and java.util packages provide basic functionality that is used by almost all applications. Provides classes that are fundamental to the design of the Java programming language such as String, Math, and basic runtime support for threads and processes. In Java programming language java.lang package is a built-in package or we can say it’s a package included in Java by default. Since java.lang is a default package there is no need to import the package.

    Here we have a list of some useful classes or interfaces list.
    1. import java.lang.Class class
    2. import java.lang.ClassLoader class
    3. import java.lang.Error class
    4. import java.lang.Exception class
    5. import java.lang.Math class
    6. import java.lang.Object class
    7. import java.lang.Runnable; interface
    8. import java.lang.Runtime class
    9. import java.lang.RuntimeException class
    10. import java.lang.String class
    11. import java.lang.StringBuffer class
    12. import java.lang.StringBuilder class
    13. import java.lang.System class
    14. import java.lang.Thread class
    15. import java.lang.Throwable class
    Java provides class for every primitive data type which is called Wrapper Class. All the wrapper classes are also available in java.lang package.
    1. java.lang.Byte class [for byte primitive data type]
    2. java.lang.Short class [for short primitive data type]
    3. java.lang.Integer class [for int primitive data type]
    4. java.lang.Long class [for long primitive data type]
    5. java.lang.Float class [for float primitive data type]
    6. java.lang.Double class [for double primitive data type]
    7. java.lang.Boolean class [for boolean primitive data type]
    8. java.lang.Character class [for char primitive data type]

    Related Post


    Learn Alphabet

    In the table below, you can find all 26 letters in alphabet and their pronunciation in English.

    Capital Letter Small Letter Pronunciation Name
    A a /eɪ/or/æ/ ay
    B b /biː/ bee
    C c /siː/ cee
    D d /diː/ dee
    E e /iː/ ee
    F f /ɛf/ eff
    G g /dʒiː/ gee
    H h /eɪtʃ/ (h)aitch or  Ay-tch
    I i /aɪ/ eye
    J j /dʒeɪ/ jay
    K k /keɪ/ kay
    L l /ɛl/ ell
    M m /ɛm/ em
    N n /ɛn/ en
    O o /oʊ/ oh
    P p /piː/ pee
    Q q /kjuː/ cue
    R r /ɑr/ ar
    S s /ɛs/ ess
    T t /tiː/ tee
    U u /juː/ you
    V v /viː/ vee
    W w /dʌbəljuː/ double-you
    X x /ɛks/ ex
    Y y /waɪ/ wy
    Z z /ziː/, /zɛd/ zee, zed

    english alphabet, abc, english abc, learn abc, vowel, consonant

    Bibliography 

    https://promova.com/
    https://www.fluentu.com/

    Senin, 06 Januari 2025

    Keyboard Shortcuts For Navigating In Microsoft Office Word

    Navigate The Document In Microsoft Office Word

    To do this

    Press

    Move the cursor one word to the left.

    Ctrl+Left arrow key

    Move the cursor one word to the right.

    Ctrl+Right arrow key

    Move the cursor up by one paragraph.

    Ctrl+Up arrow key

    Move the cursor down by one paragraph.

    Ctrl+Down arrow key

    Move the cursor to the end of the current line.

    End

    Move the cursor to the beginning the current line.

    Home

    Move the cursor to the top of the screen.

    Ctrl+Alt+Page up

    Move the cursor to the bottom of the screen.

    Ctrl+Alt+Page down

    Move the cursor by scrolling the document view up by one screen.

    Page up

    Move the cursor by scrolling the document view down by one screen.

    Page down

    Move the cursor to the top of the next page.

    Ctrl+Page down

    Move the cursor to the top of the previous page.

    Ctrl+Page up

    Move the cursor to the end of the document.

    Ctrl+End

    Move the cursor to the beginning of the document.

    Ctrl+Home

    Move the cursor to the location of the previous revision.

    Shift+F5

    Cycle through floating shapes, such as text boxes or images.

    Ctrl+Alt+5, and then the Tab key repeatedly

    Exit the floating shape navigation and return to the normal navigation.

    Esc

    Display the Navigation task pane, to search within the document content.

    Ctrl+F

    Display the Go To dialog box, to navigate to a specific page, bookmark, footnote, table, comment, graphic, or other location.

    Ctrl+G

    Cycle through the locations of the four previous changes made to the document.

    Ctrl+Alt+Z


    < to learn Microsoft Office Word Graphical User Interface (GUI), click : Microsoft Word GUI Parts

    navigate, navigation, navigates, navigator, user interface (UI), user experience (UX)

    Related Post


    Microsoft Word GUI Parts

    Microsoft Office Word GUI Parts ( Modern )

    • Title Bar.
      • Window Icon or Application Icon or Control Menu Box.
        • Window Icon System Menu or Application Icon System Menu or Control Menu..
          • Restore Down Menu Item or Restore Down Menu Command or Restore Down Menu Entry.
          • Move Menu Item or Move Menu Command or Move Menu Menu Entry.
          • Size Menu Item or Size Menu Command or Size Menu Entry.
          • Minimize Menu Item or Minimize Menu Command or Minimize Menu Entry.
          • Maximize Menu Item or Maximize Menu Command or Maximize Menu Entry.
          • Close Menu Item or Close Menu Command or Close Menu Entry.
      • Window Title Bar Text or Program Title Bar Text or Application Title or Software Title ( the most ordinary consist of file name with and file path )
      • Parent Window Sizing Buttons or Parent Window Control Buttons:
        • Minimize Button Of Parent Window.
        • Maximize Button Of Parent Window / Restore Down Button Of Parent Window.
        • Close Button Of Parent Window.
        • Ribbon (Display) Options or Ribbon Collapse Button or Ribon Hide/Ribbon Unhide.
    • Parent Window Client Area.
    • Window Sizing Border
    • Window Sizing Grip or Window Resize Grip
    • Window Frame or Program Frame.
    • Child Window:
      • Minimize Button Of Child Window.
      • Maximize Button Of Child Window. / Restore Button Of Child Window.
      • Close Button Of Child Window.
      • Child Window Client Area.
    • The Microsoft Office Ribbons
      • Backstage
      • Quick Access Toolbar, consist of  ( default ):
        • Save Button,
        • Undo Button, 
        • Redo Button, 
        • Customize Quick Access Toolbar Button.
      • Application Button.
      • Ribbon Tab Menu or Ribbon Category Menu.
      • Help Button.
      • Ribbon Tools Tab Set or Ribbon Contextual Tab Set
        • Ribbon Tools Tab or Ribbon Contextual Tab ( context sensitive or task based ).
      • Ribbon Stack Panel.
      • Ribbon Wrap Flow Panel.
      • Ribbon (Command) Button.
        • Ribbon Buton With Image.
        • Ribbon Buton With Text.
        • Ribbon Buton With Image And Text.
      • Ribbon Gallery or In-Ribbon Gallery.
        • Ribbon Gallery More Button.
      • Ribbon (Drop Down) Menu or Ribbon (Pull Down) Menu.
      • Ribbon Tab Group or Ribbon Category Group or Ribbon Command Group.
      • Dialog Box Launcher or Dialogue Box Launcher or Quick Launch Bar.
      • Enhanced Tooltip or Screen Tips
      • Start Screen
      • Collaboration Controls:
        • Sign In
        • Share
        • Tell Me
        • Comment
    for learning Microsoft Office Word Ribbon Tab Menu and Ribbon Group, click Ribbon In Microsoft Word >
    • Menu Bar
      • Menu Item or Menu Command
      • Sub Menu or Cascade Menu
      • Double Arrow
    • Document Area or Document Window or Text Area (workspace).
      • Selection Bar (Gutter) or Ethereal Void;
      • Insertion Point or Cursor.
      • End Of Document Marker.
    • Task Pane :
      • Navigation Pane or Document Map Pane;
      • Thumbnail Pane;
      • Close Pane
    for learning to use keyboard for navigate in Microsoft Office Word Pages click Keyboard Shortcuts For Navigating In Microsoft Word >
    • Tab (Stop) Selector Button.
    • Scroll Bars: 
      • Vertical Scroll Bar;
      • Horizontal Scroll Bar;
      • Scroll Box;
      • Scroll Arrow Buttons:
        • Up Arrow Button;
        • Down Arrow Button;
        • Left Arrow Button;
        • Right Arrow Button;
    • Rulers
      • View Ruler Button
      • Horizontal Ruler
      • Vertical Ruler
      • Left Indent Gizmo
        • First Line Indent Gizmo
        • Hanging Indent Gizmo
      • Right Indent Gizmo
    • Screen Split Button
    • Browse Button or Navigation Button
      • Previous Page
      • Select Browse Object
      • Next Page
    • Status Bar.
      • Document Information
        • Pages Information
        • Words (Count) Information
        • Proofing Errors
      • Page View (Options) Buttons or Page View Shortcuts or Page View Controls: 
        • Normal View Button; 
        • Page Layout View Button / Print Layout View Button; 
        • Page Break Preview Button;
        • Online Layout View Button / Web Layout View Button;
        • Outline View Button;
        • Master Document View Button; 
    • Zoom Tools or Zoom Controls
      • Zoom Button.
      • Zoom Slider.

    Bibliography

    https://ahmedshareef.com/
    https://computerhindinotes.com/
    https://devexpress.com/
    https://lindayaniidris.wordpress.com/
    https://microsoft.com/
    https://www.computerhope.com/
    http://www.macrovision.ie/
    https://www.uah.edu/ ( university )


    overview, workspace, microsoft office excel

    Related Post

    Jumat, 03 Januari 2025

    Tables In Latex 2 Standalone

    Learning Objectives: Wrap the text in the Latex table column.
    1. Type this following latex code in latex editor:
    % !TEX TS-program=pdflatex
    %% File Name: tableFitPageSo1.tex
    %% File Description:
    %% Wrap the text in the Latex Table Column.
    %% Fit the table to page

    \documentclass[a4paper,12pt]{book}

    % Loading the package
    %---------------------------
    \usepackage[active,floats,tightpage]{preview}
    \setlength\PreviewBorder{0.25pt}

    \usepackage{array}

    %---------------------------

    \begin{table}[!t]

    \caption{Top Scorers}

    \label{tab:topscorer}

    \begin{tabular*}{\textwidth}{ l p{0.8\textwidth} }

    \hline

    \bf Goals & \bf Players\\

    \hline

    4 & First Last, First Last, First Last, First Last\\

    3 & First Last\\

    2 & First Last\\

    1 & First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last\\

    \hline

    \end{tabular*}

    \caption{Caption}

    \label{tab:my_label}

    \end{table}

    \end{document}

    2. Save file as tableFitPageSo1.tex

    3. Then build or typeset the Latex code.

    Output




    < Previous Tables In Latex 2

    Kamis, 02 Januari 2025

    Latex Package For Title

    These are ordinary latex Package list To Handle Document Title:
    authblk package.
    babel package.
    biihead package.
    blkcntrl package.
    context-title package.
    coverpage package.
    csquotes package.
    dblfont package.
    fncychap package.
    fontscale package.
    fwlw package.
    hep-title package.
    indentfirst package.
    lips package.
    luaquotes package.
    marginfix package.
    marginnote package.
    microtype package.
    mparhack package.
    parskip package.
    polyglossia package.
    quotes package.
    scalefnt package.
    sectsty package.
    setspace package.
    slemph package.
    textcase package.
    titlecaps package.
    titlepages package.
    titles package.
    titlesec package.
    titling package.
    titlepic package.
    xcolor package.

    Bibliography

    https://www.ctan.org/
    https://www.overleaf.com/
    https://www.ucd.ie/ ( university )
    https://www.unpad.ac.id/ ( university )
    https://www.york.ac.uk/ ( university )

    Related Post

    Rabu, 01 Januari 2025

    Tables In Latex 2

    Learning ObjectivesWrap the text in the Latex table column.
    1. Type this following latex code in latex editor:
    % !TEX TS-program = pdflatex
    %% File Name: tableFitPage1.tex 
    %% File Description:
    %% Fit the table to page %% Wrap the text in the Latex Table Column.


    \documentclass[a4paper,12pt]{book} % Loading the package %--------------------------- \usepackage{fouriernc} %\usepackage{helvet} \usepackage{array} %--------------------------- \begin{document}
    %% Table 1
    \begin{table}[!t]
    \caption{Top Scorers}
    \label{tab:topscorer}
    \begin{tabular*}{\textwidth}{ l p{0.8\textwidth} } \hline


    %% Table Header %---------------------------

    \bf Goals & \bf Players\\

    \hline

    %--------------------------- 4 & First Last, First Last, First Last, First Last\\ 3 & First Last\\ 2 & First Last\\ 1 & First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last, First Last\\ \hline \end{tabular*} \caption{Caption} \label{tab:my_label} \end{table}
    \end{document}
    
    2. Save file as tableFitPage1.tex
    3. Then build or typeset the Latex code.

    Output


    Click on the picture to see the clear version


    < Previous Tables In Latex 1

    To learn Tables in preview environment, click Tables In Latex 2 Standalone >
    tabular, latex table sample, table in latex, latex table in latex page, latex document

    Bibliography

    University of Illinois
    https://latex-tutorial.com/
    https://en.wikibooks.org/

    Related Post

    Learn About Latex List 1

    Difference Between Input And Include

    The Latex \input Command

    Syntax:
    \input{filename}

    where filename is the name of the LaTeX file (with or without the .tex extension) that contains the content to be inserted. This way, we can insert text, equations, or images (latexeps, pdf, png, jpeg, jpg).

    For example,

    let’s say we have a section in the file section1.tex:
    \section{My First Section}
    In a hole in the ground there lived a hobbit.

    We can insert its content into our main document using \input:

    \begin{document}
    \input{section1} 
    \end{document}

    Additionally, we can use \input in our document’s preamble. In that case, the included file should contain only the commands that are allowed to be in a preamble.

    The \include Command

    The \include command can be used to insert larger pieces of content such as chapters or major sections into a LaTeX document. We can use it for both figures and texts. Its syntax is the same as that of \input:
    
    \include{filename}
    
    For example, let’s say we have three chapters. We can keep each chapter in its own file and compile the entire book by including them with \include:
    
    \begin{document}
    \include{chapter1}
    \include{chapter2}
    \include{chapter3}
    \end{document}
    
    • The \include command starts a new .aux file for each included file and also adds a page break to the document before inserting a file. The included file will start a new page before processing the \include command.
    • So, we can use it only between \begin{document} and \end{document}. We can’t use it in the preamble.

    Sameness Between \input and \include

    • The LaTeX file name must use dash line or underscore line to replace the whitespace.
    • The LaTeX file name (with or without the .tex extension)
    • You can provide relative or absolute paths to the files.

    Different Between \input, \include And \includeonly Package

    \input

    • We can use it anywhere in a document
    • Suitable for inserting small things where a page break isn’t required
    • You can nest \input macros.
    • You don’t get the cross-reference, bibliography benefit.

    \include

    • Can only be used between \begin{document} and \end{document}
    • The included file will start a new page before processing the \include command. when a page break is not required
    • Suitable for large documents pieces of content (such as chapters or major sections) where page breaks are required
    • You can't nest \include files.

    \includeonly

    • It must appear in the preamble or even earlier, e.g., the command line
    • You have to specify the names separated by commas with no intervening spaces. (e.g. \includeonly{firstbit,lastbit} )
    • The \include and \includeonly must in pair is very useful for working on long documents.

    Bibliography

    https://ctan.org/
    https://www.overleaf.com/
    https://latexref.xyz/ 
    https://www.baeldung.com/
    https://www.wikitechy.com/
    https://www.medunigraz.at/ (university) 
    https://www.mq.edu.au/ (university)