Search In This Website

Senin, 23 Juni 2025

Latex Environment Command

Type this following latex \begin{environment name} environment command, follow with a line break and your content then ending with \end{environment name} environment command.

\begin{abstract}
\begin{align}
\begin{aligned}
\begin{array}
\begin{center}
\begin{description}
\begin{displaymath}
\begin{document}
\begin{enumerate}
\begin{eqnarray*}
\begin{eqnarray}
\begin{equation*}
\begin{equation}
\begin{figure*}
\begin{figure}
\begin{flushleft}
\begin{flushright}
\begin{frame}
\begin{gathered}
\begin{itemize}
\begin{list}
\begin{math}
\begin{minipage}
\begin{multline}
\begin{quotation}
\begin{quote}
\begin{scope}
\begin{tabbing}
\begin{table*}
\begin{table}
\begin{tabular}
\begin{theorem}
\begin{titlepage}
\begin{verbatim}
\begin{verse}

Bibliography

https://www.bu.edu/ ( university )
https://www.overleaf.com/

Greek Letters In HTML Character Entity Code

Character Entity Decimal Hex Rendering in Your Browser
Greek capital letter alpha Α Α Α Α ( Α )
Greek capital letter beta Β Β Β Β ( Β )
Greek capital letter gamma Γ Γ Γ Γ
Greek capital letter delta Δ Δ Δ Δ
Greek capital letter epsilon Ε Ε Ε Ε
Greek capital letter zeta Ζ Ζ Ζ Ζ
Greek capital letter eta Η Η Η Η
Greek capital letter theta Θ Θ Θ Θ
Greek capital letter iota Ι Ι Ι Ι
Greek capital letter kappa Κ Κ Κ Κ
Greek capital letter lambda Λ Λ Λ Λ
Greek capital letter mu Μ Μ Μ Μ
Greek capital letter nu Ν Ν Ν Ν
Greek capital letter xi Ξ Ξ Ξ Ξ
Greek capital letter omicron Ο Ο Ο Ο
Greek capital letter pi Π Π Π Π
Greek capital letter rho Ρ Ρ Ρ Ρ
Greek capital letter sigma Σ Σ Σ Σ
Greek capital letter tau Τ Τ Τ Τ
Greek capital letter upsilon Υ Υ Υ Υ
Greek capital letter phi Φ Φ Φ Φ
Greek capital letter chi Χ Χ Χ Χ
Greek capital letter psi Ψ Ψ Ψ Ψ
Greek capital letter omega Ω Ω Ω Ω
Greek small letter alpha α α α α
Greek small letter beta β β β β
Greek small letter gamma γ γ γ γ
Greek small letter delta δ δ δ δ
Greek small letter epsilon ε ε ε ε
Greek small letter zeta ζ ζ ζ ζ
Greek small letter eta η η η η
Greek small letter theta θ θ θ θ
Greek small letter iota ι ι ι ι
Greek small letter kappa κ κ κ κ
Greek small letter lambda λ λ λ λ
Greek small letter mu μ μ μ μ
Greek small letter nu ν ν ν ν
Greek small letter xi ξ ξ ξ ξ
Greek small letter omicron ο ο ο ο
Greek small letter pi π π π π ( π )
Greek small letter rho ρ ρ ρ ρ
Greek small letter final sigma ς ς ς ς
Greek small letter sigma σ σ σ σ ( σ )
Greek small letter tau τ τ τ τ
Greek small letter upsilon υ υ υ υ
Greek small letter phi φ φ φ φ
Greek small letter chi χ χ χ χ
Greek small letter psi ψ ψ ψ ψ
Greek small letter omega ω ω ω ω
Greek small letter theta symbol ϑ ϑ ϑ ϑ
Greek upsilon with hook symbol ϒ ϒ ϒ ϒ
Greek pi symbol
(alternative / omega pi)
ϖ ϖ ϖ ϖ


Bibliography

https://www.codecademy.com/
https://www.htmlhelp.com/
https://www.unicode.org/ ( manual eook )
https://www.utk.edu/ ( university )
https://www.w3schools.com/

Symbol, Notation And Terminologies

Mathematics And Science Symbols


Mathematics Terminologies

UML ( Unified Modelling Language ) Symbols And Notations


Latex Symbols, Latex Characters And Latex Notations

Computer Symbols, Computer Characters And Computer Notations


Minggu, 22 Juni 2025

Enumeration And Tabular In Latex 1

1. Open your Latex editor.

2. Type this following Latex code in the Latex editor:

% !TEX TS-program = pdflatex

% Distributed under the LaTeX Project Public License

% https://www.latex-project.org/lppl.txt

\documentclass{standalone}


\usepackage{array}


%% create margin border around standalone environment

\standaloneconfig{border=5mm}

\standaloneenv{minipage}


%% change default font to bold format

\renewcommand{\seriesdefault}{bx}

%% change default font in math mode to bold format

\boldmath


%% define command to include tabular in an item. Using a common p column type, all such tabulars can be properly aligned.

\newcommand{\tr}[1]{\item \begin{tabular}{*{3}{>{\bfseries}p{7cm}}} #1 \end{tabular}}


\begin{document}

\begin{minipage}{1.8\linewidth}

\Huge

%% Alignment left

\begin{flushleft}

Find the missing parts in the following triangles.

\end{flushleft}\par


\begin{enumerate}

%% Numbering List none

\renewcommand{\labelenumi}{}

\tr{ First Angle    & Second Angle   & Side Length }

%% set the counter to one

\setcounter{enumi}{0}

%% Numbering List Using Alphabet In Uppercase

\renewcommand{\labelenumi}{\Alph{enumi}.}

\tr{ $A=34^\circ$   & $C=7^\circ$    & $c=6$ }

\tr{ $A=121^\circ$  & $C=30^\circ$   & $a=6$ }

\tr{ $B=50^\circ$   & $C=80^\circ$   & $a=9$ } 

\tr{ $B=38^\circ$   & $C=111^\circ$  & $b=8$ } 

\tr{ $A=74^\circ$   & $B=74^\circ$   & $b=15$ } 

\end{enumerate}

\end{minipage}

\end{document}

3. Save file as enumerateTabularStandalone1.tex

4. Compile source code Latex.

Output




<< Back to Learning Latex RoadMap



Bibliography

https://tex.stackexchange.com/

https://www.abdn.ac.uk/ ( university )

http://www.mnstate.edu/ ( university )

https://www.york.ac.uk/ ( university )

https://www.overleaf.com/

Git Bash Command Prompt 1

To Show The Drive Listing In Git Bash ;  cat /proc/partitions

To Change Drive ; cd /drive letter/ or cd drive-letter: , example: cd /d/ or cd d:

To List Directory Contents In Repository ; ls -a

Navigate to drive root ; cd /drive letter/ or cd drive-letter: , example: cd /d/ or cd d:

Navigate to root directory ( home directory ) ; cd / or cd ~

Remove a directory ( folder ) ; rmdir "folder-name"

Make a directory ( folder ) ; mkdir "folder-name"

Delete a file ; del "file-name"


Bibliography

https://git-scm.com/

https://www.toolsqa.com/

Related Post

How To Check Your Git Version

Show The Drive Listing In Git Bash

Software Programming Environment Variable

MatDas Operasi Hitung Campuran Dalam Latex

Di bawah ini adalah pelajaran Matematika Dasar Operasi Hitung Campuran Dalam Latex:

1. Buka editor Latex.
2. Ketik source code Latex dalam editor Latex:

% !TEX TS-program=pdflatex

% !TEX encoding=UTF-8 Unicode

% Distributed under the LaTeX Project Public License

% https://www.latex-project.org/lppl.txt


\documentclass[varwidth,multi=page,margin=5]{standalone}


\usepackage{multirow}

\usepackage{amsmath}

\usepackage{fouriernc}


\title{Matematika \\Dasar 1}

%\author{Private Course and Tutor Course}

\date{}


\begin{document}


\begin{page}

\maketitle

\end{page}


\begin{page}

{\Huge\bfseries Operasi\\ Hitung\\ Campuran}

\end{page}


\begin{page}

% 9 + 5 x 7 - 4 = ...

\begin{tabular}{l@{\quad}l@{\quad}l@{\quad}l@{\quad}c@{\quad}l@{\quad}l@{\quad}llll}

& \ \ 9 & + & \ \ 5 & $\times$ & 7 & $-$ & 4 & = & \ldots \\

= & \ \ 9 & + & ( 5 & $\times$ & 7 ) & $-$ & 4 \\

= & \ \ 9 & + & ( & 35 & \phantom{2} ) & $-$ & 4 \\

= & \ \ 9 & + & ( & 35 & \phantom{2} ) & $-$ & 4 \\

= & ( 9 & + & & 35 & \phantom{2} ) & $-$ & 4 \\

= & 44 & & & & & $-$ & 4 \\

= & 40

\end{tabular}

\end{page}


\begin{page}

% 5 x 7

Langkah 1 \\


\begin{tabular}{r@{\,}r@{\,}r@{\,}r@{\hspace{0.25em}}c@{\,}c@{\,}c@{\,}c@{\,}c@{\,}c@{\,}c@{\,}c@{\,}c} \\

5 $\times$ 7 &\phantom{1} = \phantom{1}& & 7\phantom{3} &\phantom{1} + \phantom{2}& 7 \phantom{2} & &\phantom{1} + &\phantom{1} 7 &\phantom{1} + &\phantom{1} 7 &\phantom{1} +\phantom{1} & 7 \\

& = \phantom{1}& (\phantom{1} & 7\phantom{3} &\phantom{1} + \phantom{2}& 7 \phantom{2} & ) &\phantom{1} + &\phantom{1} 7 &\phantom{1} + &\phantom{1} 7 &\phantom{1} +\phantom{1} & 7 \\

& = \phantom{1}& (\phantom{1} & 14\phantom{1} & + & 7 \phantom{2} & ) &\phantom{1} + &\phantom{1} 7 &\phantom{1} + &\phantom{2} 7 \\

& = \phantom{1}& (\phantom{1} & 21\phantom{1} & + & 7 \phantom{2} & ) &\phantom{1} + &\phantom{1} 7 \\

& = \phantom{1}& \ \phantom{5} & 28\phantom{1} & + & 7 \phantom{2} \\

& = \phantom{1}& & 35\phantom{1}

\end{tabular}

\end{page}


\begin{page}

% 35 + 9

Langkah 2

\begin{table}[h]

\centering


\begin{tabular}{c@{\,}c@{\,}c@{\,}c} \\

& & {\Huge 9} \\

{\huge +} & {\Huge 3} & {\Huge 5} \\

\hline \\

& \multicolumn{3}{c}{\huge\bfseries\ldots}

\end{tabular}

\end{table}

\end{page}


\begin{page}

% 35 + 9

Langkah 3 \\

\begin{tabular}{c@{\,}c@{\,}c@{\,}c} \\

& {\large 1} & \\

& & {\Huge 9} \\

{\huge +}& {\Huge 3} & {\Huge 5} \\

\hline \\

& & {\Huge 4 }

\end{tabular}

\end{page}


\begin{page}

%35 + 9

Langkah 4 \\

\begin{tabular}{c@{\,}c@{\,}c@{\,}c} \\

& {\large 1} & \\

& & {\Huge 9} \\

{\huge +}& {\Huge 3} & {\Huge 5} \\

\hline \\

& {\Huge 4} & {\Huge 4}

\end{tabular}

\end{page}



\begin{page}

%44 - 4

Langkah 5 \\

\begin{tabular}{c@{\,}c@{\,}c@{\,}c} \\

& {\Huge 4} & {\Huge 4} \\

{\huge $-$}& {\Huge } & {\Huge 4} \\

\hline \\

& {\Huge 4} & {\Huge 0}

\end{tabular}

\end{page}

\end{document}

3. Simpan dengan nama file MatDas1.tex

4. Compile source code Latex.

Output











Notes

Untuk melihat gambar yang lebih jelas, click pada gambar.


<< Back to Learning Latex RoadMap

Selasa, 17 Juni 2025

Notepad++ Syntax Highlight

For several languages, Notepad++ supports syntax highlighting and syntax folding (customizable). To change to other Language (syntax highlighter), in this example we are change a new file to C programming language syntax highlighter, follow this step:
  1. First start the Notepad++ program. To learn click Start Notepad++
  2. click Language -> C -> C  menu.

    change the language to C programming syntax highlight

    check the language has set to C programming syntax highlight


Notes
  • To see more clear screenshot, click on the picture.


<< back to Learn Notepad++

Bibliography

https://notepad-plus-plus.org/ ( manual ebook )
https://www.youtube.com/@JeromyCole
https://www.youtube.com/@joejamesusa