- Type this following Microsoft Office PowerPoint VBA or macro in PowerPoint VBA Editor:
- Run the above VBA code by click Run > Run Sub/User Form menu.
Rabu, 20 November 2024
Get The Shape Position In Microsoft PowerPoint
Senin, 18 November 2024
Build Or Compile LaTeX In TexWorks
Requirements
Type A Hello World Latex Document In TeXworks
Build Or Compile LaTeX In TeXworks
- Now at the top of TeXworks you will see a green button ("Compile or Typeset" button) on the first toolbar.
Notes: Every time you click the green compile button, TeXworks will save the file with the last name it was given. This can be troublesome when you use a template *.tex file your instructor gives you. Before you click the green compile button after opening a new file, click File and Save As from the top TeXworks menu to give the file your own name. - Next to that you will see typesetting drop-down menu to choose the format for typesetting (we’ll choose something like "pdfLaTeX").
Notes: Click on the downward triangle next to typesetting drop-down menu and choose to your apropriate typesetting ( something like "pdfLaTeX+MakeIndex+BibTeX" ). - Then click on the green "Compile" button. You will be asked to save the file and give it a name. Name it test.tex in whatever folder you want to keep your LaTeX files in. After you save a file a new window should open up with a PDF file containing your document.
Output
Notes
- To see the more clear screenshot, click on the picture.
Bibliography
https://www.iup.edu/
https://www.overleaf.com/
TeXworks-manual
Related Post
Types Of Angles
Parts of an Angle
And the two straight sides are called arms / rays.
Type of Angle Description
Positive and Negative Angles
Bibliography
Related Post
Obtuse Angle In Latex 1a
- Type this following latex code in the latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 unicode
% Description:
% Obtuse Angle = Detuse Angle = Blunt Angle
\documentclass[a4paper]{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{bm}
\usepackage[active,tightpage,tikz]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%Requires \usetikzlibrary{calc} in the preamble
\boldmath
\begin{tikzpicture}[thick]% draw the vertex point / vertex node
\coordinate (B) at (2,0);
\coordinate (A) at (0,0);
\coordinate (C) at (-2,1.5);
% label the vertex
\draw [solid, thick] (B)--(A)--(C);
\draw (A) node[below] {$A$};
\draw (B) node[below] {$B$};
\draw (C) node[below left] {$C$};
% label the angle subtended at p1 by p2 and p3
\def\angleRadius{30pt}
% draw the arc
% draw in Old Version Tikz/PGF
% \draw[red,->,thick] let \p1=(A), \p2=(B), \p3=(C),
% \n1={atan2(\x2-\x1,\y2-\y1)}, \n2={atan2(\x3-\x1,\y3-\y1)} in
% ($(\p1)!\angleRadius!(\p2)$) arc (\n1:\n2:\angleRadius);
% draw in Current Version Tikz/PGF
\draw[red,->,thick] let \p1=(A), \p2=(B), \p3=(C),
\n1={atan2(\y2-\y1,\x2-\x1)}, \n2={atan2(\y3-\y1,\x3-\x1)} in
($(\p1)!\angleRadius!(\p2)$) arc (\n1:\n2:\angleRadius);
% draw the label
\draw[red] let \p1=(A), \p2=(B), \p3=(C),
\n1={atan2(\x2-\x1,\y2-\y1)}, \n2={atan2(\x3-\x1,\y3-\y1)} in
(\p1)+(\n1/2+\n2/2:\angleRadius) node[above right] {$\alpha$};
\end{tikzpicture}
\end{document} - Save file as triangleEquilateral1.tex
- Then build or typeset the Latex code.
Output
Related Post
Sabtu, 16 November 2024
Lyx Menu Tour With Picture
File Menu
Open a new file : File > New. |
Save your document with File > Save As ( dialog ). |
Export the ready to print document to a format you want, e.g. PDF document : File > Export ( dialog ). |
To export Lyx to Latex : File > Export > LaTeX. |
Edit Menu
Undo is limited to 100 steps : Edit > Undo. |
To get it back after Undo : Edit > Redo. |
To cut : Edit > Cut. |
View Menu
Document Menu
Insert Menu
Tools Menu
Standard Toolbar
Bibliography
Jumat, 15 November 2024
Draw Equilateral Triangle In Latex
- Type this following latex code in the latex editor:
% !TEX TS-program=pdflatex
% !TEX unicode=UTF-8 Unicode
\documentclass[border=5mm]{standalone}
\usepackage{tgbonum}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}
\tikzset{
equilateralTriangle/.style={
draw,
shape border rotate=0,
regular polygon,
regular polygon sides=3,
fill=white!20,
node distance=2cm,
minimum height=4em,
thick
}
}
\begin{document}
\begin{tikzpicture}
\node[equilateralTriangle]{\textbf{Equilateral Triangle}};
\end{tikzpicture}
\end{document} - Save file as triangleEquilateral1.tex
- Then build or typeset the Latex code.
Output
Related Post
Java Exception Hierarchy
These are Java Class Exception Hierarchy:
- Throwable
- Error.
- AssertionError.
- IOError.
- VirtualMachineError.
- InternalError.
- OutOfMemoryError
- StackOverflowError
- UnknownError
- Exception
- IOException.
- EOFException.
- FileNotFoundException.
- MalFormedURLException.
- ObjectStreamException.
- UnknownHostException.
- ReflectiveOperationException.
- ClassNotFoundException.
- CloneNotSupportedException.
- RunTimeException.
- ArithmeticException.
- ClassCastException.
- IllegalArgumentException.
- IllegalStateException.
- IndexOutOfBoundsException.
- NoSuchElementException.
- NullPointerException.
Related Post
The Pythagorean Theorem
Pythagoras Theorem Formula:
Draw Acute Angle In Latex
- Type this following latex code in the latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
\documentclass[tikz]{standalone}
\usepackage{tgbonum}
\usepackage{arevmath}
\usepackage{tikz}
\usetikzlibrary{quotes,angles}
\begin{document}
\begin{tikzpicture}[thick]
\draw (3,0) coordinate (a) node[right] {\textbf{a}}
-- (0,0) coordinate (b) node[left] {\textbf{b}}
-- (2,2) coordinate (c) node[above right] {\textbf{c}}
pic["$\beta$",draw=blue,<->,angle eccentricity=1.3,angle radius=1cm] {angle=a--b--c};
\end{tikzpicture}
\end{document}
- Save file as acuteAngle1a.tex
- Then build or typeset the Latex code.
Output
Related Post
The Pythagorean Theorem In Latex
- Type this following latex code in the latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: triangleTheorem1.tex
% Description:
% The Pythagorean Theorem
%
% 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}
\begin{document}
\begin{tikzpicture}[scale=3.5,thick]
% Label the nodes and position
\coordinate[label=below left:$\textbf{A}$] (A) at (0,0);
\coordinate[label=below right:$\textbf{B}$] (B) at (1.5,0);
\coordinate[label=above:$\textbf{C}$] (C) at (1.5,1);
% Draw the triangle
\draw (B) -- (A) -- (C) -- cycle;
% Label the sides
\node[above] at (0.75,0) {$\textbf{c}$};
\node[below] at (0.75,0) {\textbf{Adjacent}};
\node[right] at (1.5,0.5) {\textbf{Opposite}};
\node[left] at (1.5,0.5) {$\textbf{a}$};
% Label the angle
\draw (0.4,0) arc (0:33.69:0.4) node[right,midway] {$\boldsymbol{\theta}$};
\node[above left] at (0.75,0.5) {\textbf{Hypotenuse}};
\node[below right] at (0.75,0.5) {$\textbf{b}$};
% Draw the right angle mark
\draw (1.30,0) -- (1.30,.2) -- (1.50,0.2);
\end{tikzpicture}
\end{document} - Save file as triangleTheorem1.tex
- Then build or typeset the Latex code.
Output
Related Post
Kamis, 14 November 2024
Pentingnya Kebersihan Lingkungan (IPS) 2
Kegiatan pembersihan lingkungan:
Pembersihan Sampah |
Pembersihan Jalan |
Pembersihan Taman |
Pembersihan Drainase |
Pembersihan Trotoar dan Median Jalan |
Pembersihan Pasar |
Pembersihan dan Pemeliharaan Sarana dan Prasarana lain. |
Pengolahan Sampah |
Bibliography
How To Get Active File Path In Notepad 2 Method 1
How To Get Active File Path In Notepad 2 / How To Get Current File Path In Notepad 2 Method 1
Notes
- "Location bar" or "Address bar" is under "Save As" title bar and in the right side you can see "Search hospital-database" box.
- In this example "Location bar" is "<< database > hospital-database".
Related Post
To Check Package In Miktex Package Manager Command Prompt
- Open a terminal program or command prompt program or command line program
- Go to MikTex path, in this example C:\Program Files (x86)\MiKTeX 2.9\miktex\bin\
- type C: then press Enter on keyboard.
- type cd Program Files (x86)\MiKTeX 2.9\miktex\bin\, press Enter on keyboard
- Type this following mpm command on command prompt program window :
mpm --list - then press Enter on keyboard.
- Type only font in monospace in command prompt, e.g. mpm --list.
- To see the more clear screenshot, click on the picture.
Related Post
- Check LaTeX Version 1
- TexLive Command Prompt
- Latex Text Mode Symbol
- Latex Template 1
- Latex Books
- Topic about Latex
- Topic about Tex
- How To Check PHP Version
- List All Enabled PHP Extension
- PHP Requirements
- Study About PHP 1
- Post about PHP
- Karakter Pembentuk Program C atau Program C++
- Study About C and C++ 1
- Post About Database
- Math Lesson Topics For Elementary School
Rabu, 13 November 2024
Parts Of Fraction In Latex
- Type this following latex code for drawing Parts Of Fraction using Latex editor:
- Save file as PartsOfFraction1prv.tex
- then build or typeset the Latex code.
Output
Notes
To see the more clear screenshot, click on the picture.
<< Back to Study About Draw In Latex 2
Related Post
Prime Factor Tree In Latex
\documentclass{article}
\usepackage{tikz}
\usepackage{tgbonum}
% -------------------
% Each unique / separated page for each tikzpicture
% -------------------
\usepackage[active,tightpage,pdftex]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.15pt}
% bold font for entire document
\renewcommand{\seriesdefault}{bx}
\begin{document}
% -------------------
% typing a title
% -------------------
\begin{figure}
\begin{tikzpicture}[thick]
\node{Prime Factor Tree};
\end{tikzpicture}
\end{figure}
\begin{figure}
\begin{tikzpicture}[thick]
% dividend number
\node{120}
child { node[circle, draw=red] {2} } % prime factor number
child { node{60} % dividend number
child { node[circle, draw=red] {2} } % prime factor number
child { node[circle] {30} % dividend number
child {
node[circle, draw=red] {2} % prime factor number
}
child { node[circle] {15} % dividend number
child { node[circle, draw=red] {3}} % prime factor number
child { node[circle, draw=red] {5} } % prime factor number
}
}
};
\end{tikzpicture}
\end{figure}
\end{document}
- save file as primeFactorTree1prv.tex
- then build or typeset the Latex code.
Output
Related Post
Lyx Menu Tour
File Menu
- Open a new file : File > New.
- Save your document with File > Save As ( dialog ).
- Export the ready to print document to a format you want, e.g. PDF document : File > Export ( dialog ).
- To export Lyx to Latex : File > Export > LaTeX.
Edit Menu
- Undo is limited to 100 steps : Edit > Undo.
- To get it back after Undo : Edit > Redo.
- To cut : Edit > Cut.
- To copy : Edit > Copy.
- To paste : Edit > Paste.
- To search : Edit > Find & Replace ( dialog ).
- To edit character formatting* : Edit > Text Style > Customized ( dialog ).
- To edit row and columns in table and matrix : Edit > Rows & Columns.
View Menu
- To display the table of contents and other document parts in a separate window : View > Outline Pane.
- To display toolbars: View > Toolbars.
Document Menu
- LYX will open a PDF-viewer program displaying your document as it will look when view in PDF reader : Document > View.
- To changing to other document classes : Document > Settings ( dialog ).
- To insert document preamble : Document > Settings > LaTeX Preamble ( dialog ).
Insert Menu
- To insert math : Insert > Math > Inline Formula ( Ctrl+M ).
- To insert table of contents : Insert > List / TOC > Table of Contents.
- To include a BibTEX file : Insert > List / TOC > BibTeX Bibliography.
- To insert reference : Insert > Citation.
- To insert label : Insert > Label.
- To insert Footnotes : Insert > Footnote.
- To insert table : Insert > Table.
- To insert picture : Insert > Graphics.
- Margin notes can be added : Insert > Marginal Note.
Tools Menu
Standard Toolbar
- Font Family: Roman, Sans Serif, Typewriter
- Font Series: Bold
- Font Shape : Italic.
- Font Size : tiny,
Bibliography
Selasa, 12 November 2024
Latex Package List
Latex Package To Handle Table:
Latex Package To Handle Math And Science Equation
Latex Package To Handle Unicode
Latex Package To Handle Graphic
Latex Package To Handle The Box
Latex Package To Handle Bullet And Numbering
Latex Package To Handle Bibliography and Citations
Latex Package To Handle Column
Bibliography
How to Check Apache HTTP Server Version
Requirement:
To print the Apache version
- Open a terminal program or command prompt program or command line program
- Go to XAMPP path, in this example D:\softRun\xampp-win32-1.6.7\apache\bin\
- type D: then press Enter on keyboard.
- type cd softRun\xampp-1.6.7\apache\bin, press Enter on keyboard
- Type this following Apache httpd command on command prompt program window :
httpd -version - then press Enter on keyboard.
Sample Output
to print the more detailed of Apache version
- Open a terminal program or command prompt program or command line program
- Go to XAMPP path, in this example D:\softRun\xampp-win32-1.6.7\apache\bin\
- type D: then press Enter on keyboard.
- type cd softRun\xampp-win32-1.6.7\apache\bin, press Enter on keyboard
- Type this following Apache httpd command on command prompt program window :
httpd -V - then press Enter on keyboard.
Notes:
- Use this tutorial sample according to your needs and your requirement.
- type httpd -help to other command manual help.
Bibliography
Related Post
Sabtu, 09 November 2024
Draw A Cartesian Coordinate In Latex 1
% -------------------
% title
% -------------------
\begin{figure}
% -------------------
% step 1
% -------------------
\begin{figure}
\begin{tikzpicture}%[->]
%draw gridline
\draw[help lines,opacity=.25] (-5,-5) grid (5,5);
% -------------------
%draw 0,0 node
% -------------------
\draw (0,0) node [anchor=north east, font=\bfseries] {$0$};
% -------------------
% draw axes line
% -------------------
\draw[-latex,thick,font=\bfseries] (-4.5,0) -- (4.5,0) node [anchor=north] {\large{$\mathsf{sumbu\ x}$}};
\draw[-latex,thick] (0,-4) -- (0,4) node [anchor=west] {\large{$\mathsf{sumbu\ y}$}};
% -------------------
% draw axes label
% -------------------
\foreach \i in {1, ..., 3} \draw(\i,2.5pt) -- +(0,-5pt) node [anchor=north, font=\bfseries] {\large{$\i$}} (-\i,2.5pt) -- +(0,-5pt) node [anchor=north, font=\bfseries,fill=white] {\large{$-\i$}} (2.5pt,\i) -- + (-5pt,0) node [anchor=east, font=\bfseries] {\large{$\i$}} (2.5pt,-\i) -- + (-5pt,0) node [anchor=east, font=\bfseries, fill=white] {\large{$-\i$}};
\end{tikzpicture}
\end{figure}
\end{document}
- save file as koordinatKartesius1.tex
- Typeset or Build.
Output
Various Other Posts
-
Math Lesson Topics For Pre Kindergarten Numbers Getting To Know Numbers Counting Number Comparing Number: Longer Or Shorter The Equal Symbol...
-
type this following latex code for drawing a number line: \documentclass[tikz,margin=0.25cm]{standalone} \usepackage{tikz} \usepackage{a...
-
type this following latex code for drawing a triangle: \documentclass[12pt, border=5mm]{standalone} \usepackage{tikz} \usepackage{amsmath} \...
-
State (Chart/Machine) Diagram Purpose It is used to model dynamic nature of the system. State diagram is used to describe the life time of a...
-
Pendidikan Jasmani Olahraga Kesehatan Beberapa aktivitas kebugaran jasmani, di antaranya: Push up untuk melatih kekuatan otot lengan. Sit u...