Search In This Website

Senin, 28 Oktober 2024

Number Line In Latex 3

  1. type this following latex code in Latex editor for drawing a number line:
    % !TEX TS-program = pdflatex
    % !TEX encoding = UTF-8 Unicode
    % Distributed under the LaTeX Project Public License
    % https://www.latex-project.org/lppl.txt
    %Plotting inequalities on a number line
    %* Using Relative Coordinates
    \documentclass[12pt]{article}
    \usepackage[left=0.1cm,right=0.1cm,top=0.5cm,bottom=0.5cm]{geometry}
    \usepackage{tikz}
    \usetikzlibrary{arrows}
    \begin{document}
    \begin{tikzpicture}
    %draw axes line
    \draw[latex-,thick] (-1,0) -- (9,0) ;
    \draw[-latex,thick] (-1,0) -- (9,0) ;

    %edit here for vertical lines
    \foreach \x in {0,1,2,3,4,5,6,7,8} \draw[shift={(\x,0)},color=black] (0pt,3pt) -- (0pt,-3pt);

    %edit here for number labels
    \foreach \x in {0,1,2,3,4,5,6,7,8} \draw[shift={(\x,0)},color=black] (0pt,0pt) -- (0pt,-3pt) node[below] {$\mathbf{\x}$};

    %draw a node in number
    \draw[o-*] (2.9223,0) -- (5.075,0);
    %edit to sharpen the intersection line of axes
    \draw[ultra thick] (2.98,0) -- (5.02,0);

    %draw x <= 5 line
    \draw [red, thick, -stealth] (5,0) -- ++(0,0.6) -- ++(-5,0);
    %draw x >= 3 line
    \draw [blue, thick, -stealth] (3,0) -- ++(0,0.4) -- ++( 4,0);

    \end{tikzpicture}
    \end{document}

  2. Save file as plotInequal1a.tex.
  3. Typeset or Build.

Output

Number Line In Latex 3


How To Check Sqlite Version

Requirement: SQLite 3
  1. You must installed sqlite.
  2. Open Command Prompt, to learn How To Launch Command Prompt >
  3. Go to sqlite path, in this example D:\portable\sqlite\
  4. type sqlite3, press Enter on keyboard.
  5. type SELECT sqlite_version(); Built-In Scalar SQL Function then press Enter on keyboard.

Alternative step

  1. You must installed sqlite.
  2. Open Command Prompt, to learn How To Launch Command Prompt >
  3. Go to sqlite path, in this example D:\portable\sqlite\
  4. type sqlite3 --version, press Enter on keyboard.

Notes

  • Type only font in monospace in command prompt, e.g. sqlite3.
  • To see the more clear screenshot, click on the picture.

Related Post

Mathematics Set Operation In Latex 7

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Difference Set picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-7.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%%%Difference Set Picture
%A\verb!$\setminus$!B,
%is the set of all values of A that are not members of B
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2) (0:2cm) circle [radius=1.3];

% title
\node[font=\bfseries] at(1,1.5) {A$\mathbf{\setminus}$B or A difference B};

%draw Set A
\filldraw[fill=white!60!white,pattern=dots, draw=black,thick] (0.3,-0.10) circle[radius=1.3] node[above,fill=white!30] {$\mathbf{A}$};
%draw Set B
\draw[fill=white,draw=black,thick] (2,-0.10) circle [radius=1.3] node[above,fill=white!20] {$\mathbf{B}$};

%Define the A difference B
\begin{scope}
\clip (2,-0.10) circle[radius=1.3];
%\clip (0.3,-0.10) circle[radius=1.3];
\filldraw[fill=white!70,draw=black] (0.3,-0.10) circle[radius=1.3];
\end{scope}

%draw border of Set B
\draw[draw=black,thick] (2,-0.10) circle [radius=1.3];

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-7.tex

Output






<< Back to Class 11 Math

type in latex, write in latex, draw latex, diagram venn, mathematical equation, venn diagram, math diagram

Related Post

Mathematics Set Operation In Latex 6

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Disjoint Set picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-6.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%%%Disjoint Set picture
%A and B are disjoint set
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2) (0:2cm) circle [radius=1.3];

% title
\node[font=\bfseries] at(1,1.5) {A and B are disjoint set};

%draw Set A
\filldraw[fill=white!60!white, draw=black,thick] (-0.5,-0.10) circle[radius=1.3] node[above,fill=white!30] {$\mathbf{A}$};
%draw Set B
\draw[black,thick] (2.5,-0.10) circle [radius=1.3] node[above,fill=white!20] {$\mathbf{B}$};

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}
\end{document}

Save file as diaVenns1-6.tex

Output



Mathematics Set Operation In Latex 5

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Subset picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-5.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%Subset picture
%B is proper subset of A
%B\verb!$\subset$!A
\begin{tikzpicture}
 % Universal set U
 \draw[fill=white!20, even odd rule] (-2, -2) rectangle (4, 2);
 % Set B
 \draw[fill=white!30,thick] (0,0) circle (1.5cm);
 \node[font=\bfseries] at (0.99,-0.15) {$\mathbf{B}$};
 % Set A (subset of B)
 \draw[fill=white!30] (-0.3,0) circle (1cm);
 \node at (-0.5,0) {$\mathbf{A}$};
 % title Labeling
 \node[font=\bfseries] at (2.5,1.5) {$\mathbf{A \subset B}$};
 \node[font=\bfseries] at (2.5,1) {$\mathbf{\scriptstyle{A\ subset\ of\ B}}$};
 % Draw the universal set label
 \node[font=\bfseries] at (3.5,-1.7) {U};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-5.tex

Output



Mathematics Set Operation In Latex 4

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

A intersect B picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-4.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

% A intersect B picture
% Both A and B, A intersect B
%A\verb!$\cap$!B,
%is the set of all values that are members of both A and B.
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2) (0:2cm) circle [radius=1.3];

% title
\node[font=\bfseries] at(1,1.5) {A$\mathbf{\cap}$B or A intersect B};
%draw Set A
\filldraw[fill=white!60!white, draw=black,thick] (0.3,-0.10) circle[radius=1.3] node[above,fill=white!30] {$A$};
%draw Set B
\draw[black,thick] (2,-0.10) circle [radius=1.3] node[above,fill=white!20] {$\mathbf{B}$};

%Define the intersect of A and B
\begin{scope}
\clip (2,-0.10) circle[radius=1.3];
%\clip (0.3,-0.10) circle[radius=1.3];
\filldraw[fill=green!70,draw=black,pattern=dots] (0.3,-0.10) circle[radius=1.3];
\end{scope}

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-4.tex

Output



Notes

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




<< Back to Class 11 Math


type in latex, write in latex, draw latex, diagram venn, mathematical equation, venn diagram, math diagram

Mathematics Set Operation In Latex 3

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

A union B picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-3.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

% A union B picture
%Either A or B, A union B
%A \verb!$\cup$! B,
%is the set of all values that are a member of A, or B, or both.
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2);
  
% Union text label
\node[black!100!black,font=\bfseries\large] at (0.9,1.8) {A$\mathbf{\cup}$ B or A union B};

% Set A
\node [circle, draw=black, pattern=dots, minimum size=2.6cm] (A) {};
% Set B
\node [circle, draw=black, pattern=dots,  minimum size=2.6cm] (B) at (1.8,0) {};

% Set text label
\node[left,black,fill=white,font=\Large] at (A.center){$A$};
\node[right,black,fill=white,font=\Large] at (B.center){$B$};

% Circles outline
\draw[black,thick] (0,0) circle(1.3cm);
\draw[black,thick] (1.8,0) circle(1.3cm);

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-3.tex

Mathematics Set Operation In Latex 2

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Complement Set A picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-2.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%Complement A picture
%A\verb!$\prime$! the complement of A
\begin{tikzpicture}
% Universal set U
\draw[fill=blue!20, even odd rule, pattern=dots] (-2, -2) rectangle (4, 2);
% title
\node[font=\bfseries,fill=white!20] at(1,1.5) {A$^\prime$ the complement of A};
%draw Set A
\draw[fill=white!30,thick] (0.3,-0.10) circle(1.3)  node[above,fill=white!30] {$A$};
%draw Set B
\draw[thick] (2.,-0.10) circle (1.3) node[above,fill=white!20] {$\mathbf{B}$};

% Draw the Universal Label
\node[font=\bfseries,fill=white!30] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}
Save file as diaVenn1-2.tex

Output






<< Back to Class 11 Math

type in latex, write in latex, draw latex, diagram venn, mathematical equation, venn diagram, math diagram

Related Post

Mathematics Set Operation In Latex 1

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Set A picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-1.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%%%Set A picture
\begin{tikzpicture}
% Universal set U
\draw[fill=white, even odd rule] (-2, -2) rectangle (4, 2);
% title
\node[font=\bfseries\large] at(1,1.5) {Set A};
%draw Set A
\draw[fill=blue!30,pattern=dots,thick] (0.3,-0.10) circle(1.3)  node[above,fill=white!30] {$\mathbf{A}$};
%draw Set B
\draw (2,-0.10) circle (1.3) node[above] {$\mathbf{B}$};

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-1.tex

Output




<< Back to Class 11 Math

type in latex, write in latex, draw latex, diagram venn, mathematical equation, venn diagram, math diagram

Related Post

Jumat, 25 Oktober 2024

Number Line In Latex 2

  1. type this following latex code in Latex editor for drawing a number line:
% !TEX TS-program = pdflatex
% !TEX encoding = UTF-8 Unicode
\documentclass[tikz,margin=0.25cm]{standalone}
\usepackage{tikz}
\usepackage{amsmath}
\usetikzlibrary{arrows}

% Number line in Latex
\begin{document}
\begin{tikzpicture}

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

% edit here for x-axes tick/node/point/dot lines
\foreach \x in {-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5} 
\draw[shift={(\x,0)},color=black] (0pt, 3pt) -- (0pt, -3pt);

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

% edit here for the axes symbol/numbers above the x-axes horizontal line
\draw[shift={(-1.7,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\dfrac{\textbf{-3}}{\textbf{2}}$};

\draw[shift={(0.8,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\dfrac{\textbf{3}}{\textbf{4}}$};

\draw[shift={(1.3,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\sqrt{\mathbf{2}}$};

\draw[shift={(3.1,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\pmb{\pi}$};
\end{tikzpicture}
\end{document}

  1. Save file as numberLine2.tex.

Output

number line in latex 2
number line in latex 2

Notes:

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




Related Post

Learn Cascading StyleSheet ( CSS )

Previous: Basic HTML Document Structure

Learn HTML

HTML Content Models

HTML Semantic and Heading Elements

Introduction to CSS ( Cascading Style Sheets )

Styling Your Text

Lists

HTML Character Entity References

CSS Block Models

Rabu, 23 Oktober 2024

Jenis Kata Dalam Bahasa Indonesia

Jenis Kata / Kelas Kata dalam bahasa Indonesia adalah:

  1. Kata benda (nomina)
    1. Berdasarkan Acuan
      1. Nomina konkret (contoh: meja, kursi, mawar, kucing) dengan nomina abstrak (contoh: masalah, kesalahan, kejujuran, kebenaran). 
      2. Nomina umum atau nama jenis (pasar, hewan) dengan nomina nama diri (menyebut nama spesifik, contoh: Amir, Ita, kelinci). 
      3. Nomina terbilang (contoh: guru, pensil) dengan nomina tak terbilang (contoh: air, rasa hormat, rasa cinta)
    2. Berdasarkan Bentuk
      1. Nomina dasar
        Nomina dasar adalah kata-kata yang yang secara konkret menunjukkan identitas suatu benda, sehingga kata ini sudah tidak bisa lagi diuraikan ke bentuk lainnya. Contohnya meja, kursi. 
      2. Nomina turunan
        Nomina turunan adalah nomina yang mengalami proses morfologis, misalnya sudah mendapat imbuhan. Contohnya seperti kata masakan, anaknya, kewajiban. 
  2. Kata bilangan (numeralia)
    1. Kata bilangan pokok yang menjawab pertanyaan, contohnya pada kata “berapa”.
    2. Kata bilangan tingkat yang menjawab pertanyaan, contohnya kata “keberapa”. 
  3. Kata depan (preposisi)
  4. Kata ganti (pronomina)
    1. Kata ganti persona (contohnya: saya, aku, dll), 
    2. Kata ganti tanya (contoh: apa, siapa, bagaimana), 
    3. Kata ganti penunjuk (contoh: ini, disini, begini). 
  5. Kata hubung (konjungsi)
    1. Konjungsi tunggal memiliki bentuk satu kata saja, misalnya pada kata “untuk”.
    2. Konjungsi gabungan adalah konjungsi yang terdiri dari dua kata. Misalnya pada kata “oleh karena”. 
  6. Kata kerja (verba)
    1. Kata kerja dasar adalah verba yang berupa kata dasar sehingga tidak mendapat imbuhan. Contohnya kata makan, minum, lari, dll. 
    2. Kata kerja turunan adalah kata kerja yang sudah mengalami perubahan bentuk, misalnya sudah mendapat imbuhan. Contohnya adalah kata memakan, memasak, berlari, meminum, diminum. 
  7. Kata keterangan (adverbia)
    1. Berdasarkan makna, yaitu :
      1. kata keterangan kualitatif, 
      2. kata keterangan kuantitatif, 
      3. kata keterangan limitatif, 
      4. kata keterangan frekuentatif, 
      5. kata keterangan kewaktuan, 
      6. kata keterangan kecaraan atau cara, 
      7. kata keterangan kontrastif, 
      8. kata keterangan keniscayaan.
    2. Berdasarkan bentukya, 
      1. Kata keterangan tunggal contohnya kata: akan, sebaiknya, dll.
      2. Kata keterangan gabungan seperti: hampir saja, bukan….saja. 
  8. Kata sandang (artikel/artikula)
  9. Kata seru 
  10. Kata sifat (adjektiva)
    1. Berdasarkan Makna
      1. Kata sifat bertaraf (penunjuk kualitas, misalnya kata ringan)
        1. Kata sifat menerangkan kualitas atau intensitas, misalnya bersih, rapi, nyaman.
      2. Kata sifat tak bertaraf (penunjuk keanggotaan dalam golongan, misalnya kata buntu).
    2. Berdasarkan Bentuk
      1. Kata sifat dasar, Contohnya pada kata “megah”.
      2. Kata sifat turunan. Contohnya pada kata dasar ketika ada imbuhan menjadi “termegah” maka menjadi kata sifat turunan.
  11. Partikel Penegas.
    yaitu kata yang berfungsi untuk menegakkan kata yang mendahuluinya. Dalam TBBBI terdapat 4 partikel penegas, yakni pun, -kah, -lah, dan -tah. 
tata bahasa, pelajaran bahasa indonesia

Related Post

Part Of Speech

Part Of Speech consist of:

  1. Adjective
  2. Article
  3. Adverb
  4. Conjunction
  5. Determiner
  6. Interjection
  7. Noun
  8. Preposition
  9. Pronoun
  10. Verb

lesson about Noun:

lesson about Pronoun:

lesson about Suffix
Suffix In English
Noun, Adjective, Adverb, Verb, Plural, Tenses and Words Suffix List With Simple Description.


Related Post

Hello World In Java

  1. Type this following Java source code in your IDE:
    class MyFirstJavaProgram {
      public static void main(String args[]) {
        // Prints "Hello, World" in the terminal window
        System.out.println("Hello World");
      }
    }
    //As main method is static no need to create an object for class MyFirstJavaProgram
  2. Save as MyFirstJavaProgram.java.
  3. Compile and run Java source code from above.


<< back to Study About Java 1


Notes: //As main method is static no need to create an object for class MyFirstJavaProgram is a whole comment in the same line.

Related Post


Change Directory In Command Prompt

Microsoft Windows Command Prompt
Microsoft Windows Command Prompt

Set current directory to the root directory of the current drive

  1. type this in Command Prompt
    cd \
  2. press Enter
Set current directory to the root directory of the current drive in command prompt
Set current directory to the root directory of the current drive

Set current directory to "Windows", relative to current directory of the current drive

  1. type this in Command Prompt
    cd Windows
  2. press Enter
Set current directory to "Windows", relative to current directory of the current drive on the command prompt
Set current directory to "Windows", relative to current directory of the current drive

Set current directory absolutely to "\Windows\System" of the current drive

  1. type this in Command Prompt
    cd \Windows\System
  2. press Enter
Set current directory absolutely to "\Windows\System" of the current drive on the command prompt
Set current directory absolutely to "\Windows\System" of the current drive

Set current directory absolutely. Enclosed with double quotes if pathname contains blank.

  1. type this in Command Prompt
    cd "\Program Files\Microsoft Office"
  2. press Enter
Set current directory absolutely. Enclosed with double quotes if pathname contains blank. On Microsoft Windows Command Prompt
Set current directory absolutely. Enclosed with double quotes if pathname contains blank.

Notes:

Alternatively, you can type chdir. This command does the exact same thing as "cd."


Bibliography

https://microsoft.com/
https://www.ibm.com/
https://www.wikihow.com/
https://www.ntu.edu.sg/ ( university )

Related Post

Selasa, 22 Oktober 2024

HTML Alternate Text

Type this following HTML code in Web editor:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /></head>

<body>
<img src="my-image.jpg" alt="This is the alt text for my image" />
</body>
</html>

HTML ALT Text Notes:

  • The ALT text adds a text description to an image on a Web page, and should be used for all images, graphical bullets, and graphical horizontal rules.
  • The ALT text is accessed by screen reader (e.g. Jaws, Microsoft Narrator, Apple VoiceOver, etc.) users to provide them with a text equivalent of images.
  • In browsers such as Firefox, the ALT text is displayed when an image is fail to load.

Output

When an image is fail to load.







When an image is success to load.





Bibliography

https://www.psu.edu/ ( university )
https://www.perkins.org/ ( school )
https://www.freecodecamp.org/

Related Post