Epstein Files Full PDF

CLICK HERE
Technopedia Center
PMB University Brochure
Faculty of Engineering and Computer Science
S1 Informatics S1 Information Systems S1 Information Technology S1 Computer Engineering S1 Electrical Engineering S1 Civil Engineering

faculty of Economics and Business
S1 Management S1 Accountancy

Faculty of Letters and Educational Sciences
S1 English literature S1 English language education S1 Mathematics education S1 Sports Education
teknopedia

  • Registerasi
  • Brosur UTI
  • Kip Scholarship Information
  • Performance
Flag Counter
  1. World Encyclopedia
  2. Org-mode - Wikipedia
Org-mode - Wikipedia
From Wikipedia, the free encyclopedia
Open source mode for GNU Emacs
Org Mode
Org-mode logo
Original authorCarsten Dominik
DevelopersCarsten Dominik, Bastien Guerry, et al.
Initial release2003
Stable release
9.7.39[1] Edit this on Wikidata / 30 November 2025; 3 months ago (30 November 2025)
Written inEmacs Lisp
TypePersonal information management, Notetaking, Outlining, Literate programming, Reproducibility
LicenseGPL-3.0-or-later
Websiteorgmode.org
Repository
  • git.savannah.gnu.org/cgit/emacs/org-mode.git Edit this at Wikidata

Org Mode (also: org-mode;[2] /ˈɔːrɡ moʊd/) is a mode for document editing, formatting, and organizing within the free software text editor GNU Emacs and its derivatives, designed for notes, planning, and authoring. The name is used to encompass plain text files ("org files") that include simple marks to indicate levels of a hierarchy (such as the outline of an essay, a topic list with subtopics, nested computer code, etc.), and an editor with functions that can read the markup and manipulate hierarchy elements (expand/hide elements, move blocks of elements, check off to-do list items, etc.).

Org Mode was created by Carsten Dominik in 2003, originally to organize his own life and work,[3] and since the first release numerous other users and developers have contributed to this free software package.[4] Emacs has included Org Mode[5] as a major mode by default since 2006. Bastien Guerry is the maintainer since 2010, in cooperation with an active development community.[6] Since its success in Emacs, some other systems now provide functions to work with org files.[7][8]

Almost orthogonally, Org Mode has functionalities aimed at executing code in various external languages; these functionalities form org-babel.[9][10]

System

[edit]

The Org Mode home page explains that "at its core, Org Mode is a simple outliner for note-taking and list management".[11] The Org system author Carsten Dominik explains that "Org Mode does outlining, note-taking, hyperlinks, spreadsheets, TODO lists, project planning, GTD, HTML and LaTeX authoring, all with plain text files in Emacs."[12]

The Org system is based on plain text files with a simple markup, which makes the files very portable. The Linux Information Project explains that "Plain text is supported by nearly every application program on every operating system".[13]

The system includes a lightweight markup language for plain text files (similar in function to Markdown, reStructuredText, Textile, etc., with a different implementation), allowing lines or sections of plain text to be hierarchically divided, tagged, linked, and so on.

Functionality

[edit]

This section gives some sample uses for the hierarchical display and editing of plain text.

  • To-do lists often have subtasks, and so lend themselves to a hierarchical system. Org Mode facilitates this by allowing items to be subdivided into simple steps (nested to-dos and/or checklists), and given tags and properties such as priorities and deadlines. An agenda for the items to be done this week or day can then be automatically generated from date tags.[14]
  • Plain text outlines.[15]
Org file showing simple planning for a short trip
  • Org files as interconnected pages of a personal wiki, using the markup for links.
  • Tracking bugs in a project, by storing .org files in a distributed revision control system such as Git.
  • Extensive linking features, within the same file, to other files, to web pages, to emails, and also allows defining custom links.

An org-mode document can also be exported to various formats (including HTML, LaTeX, OpenDocument or plain text), these formats being used to render the structural outline in an appropriate fashion (including cross-references if needed). It can also use formatting markup (including LaTeX for mathematics), with facilities similar to those present in Markdown or LaTeX, thus offering an alternative to these tools.

Org-babel

[edit]
Some of the basic features of Org-babel

Org Mode offers the ability to insert source code in the document being edited, which is automatically exported and/or executed when exporting the document; the result(s) produced by this code can be automatically fetched back in the resulting output.

This source code can be structured as reusable snippets, inserted in the source document at the place needed for logical exposition thus allowing this exposition to be independent of the structure needed by the compiler/interpreter.

Together with the markup facilities of org-mode, these two functionalities allow for

  • Literate programming, by decoupling the exposition of the functions of a program from its code structure, and
  • Reproducible research, by the creation of a consistent document consolidating exposition, original data, analyses, discussion and conclusion, in a way that can be reproduced by any reader using the same software tools.

As of June 2021, org-babel directly supports more than 70 programming languages or programmable facilities, more than 20 other tools being usable via contributed packages or drivers.[16]

Integration

[edit]

Org Mode has some features to export to other formats, and other systems have some features to handle org-mode formats. Further, a full-featured text editor may have functions to handle wikis, personal contacts, email, calendars, and so on; because org-mode is simply plain text, these features could be integrated into org-mode documents as well.

From org-mode, add-on packages export to other markup format such as MediaWiki (org-export-generic, org-export), to flashcard learning systems implementing SuperMemo's algorithms (org-drill, org-learn).[17]

Outside of org-mode editors, org markup is supported by the GitLab, GitHub[18] and Gitea code repositories, the JIRA issue tracker,[19] Pandoc and others.

Export examples

[edit]

Org supports exporting to a variety of formats. Below you may find examples of Org fragments exported to a number of formats. Other formats are supported by dedicated packages.

Format Structure Text attributes Lists Images and blocks

Org

* Heading
** Sub heading

Paragraphs are separated
by a blank line.

-----

Five dashes is a horizontal rule.
Simple markup produces *bold*
and /italic/ text. There's also
~code~, and other markups.

Here is a link to the
org [[https://orgmode.org/][homepage]].
An unordered list:
+ apples
+ oranges
+ pears

An ordered list:
1. lather
2. rinse
3. repeat
[[file:org-mode-unicorn.png]]

#+begin_quote
Org blocks start with #+begin_BLOCK
and end with #+end_BLOCK.
This is a quote block.
#+end_quote

You can also have format-specific markup, for some formats
@@html:like <abbr title="Hypertext Markup Language">HTML</abbr>@@
@@latex:like \LaTeX@@.

HTML

<div id="outline-container-org75efe15" class="outline-2">
<h2 id="org75efe15"><span class="section-number-2">1</span> heading</h2>
<div class="outline-text-2" id="text-1">
</div>
<div id="outline-container-org548173a" class="outline-3">
<h3 id="org548173a"><span class="section-number-3">1.1</span> Sub heading</h3>
<div class="outline-text-3" id="text-1-1">
<p>
Paragraphs are separated
by a blank line.
</p>

<hr />

<p>
Five dashes is a horizontal rule.
</p>
</div>
</div>
<p>
Simple markup produces <b>bold</b>
and <i>italic</i> text. There's also
<code>code</code>, and other markups.
</p>

<p>
Here is a link to the
org <a href="https://orgmode.org/">homepage</a>.
</p>
<p>
An unordered list:
</p>
<ul class="org-ul">
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ul>

<p>
An ordered list:
</p>
<ol class="org-ol">
<li>lather</li>
<li>rinse</li>
<li>repeat</li>
</ol>
<div id="org0d245af" class="figure">
<p><img src="org-mode-unicorn.png" alt="org-mode-unicorn.png" />
</p>
</div>

<blockquote>
<p>
Org blocks start with #+begin<sub>BLOCK</sub>
and end with #+end<sub>BLOCK</sub>.
This is a quote block.
</p>
</blockquote>

<p>
You can also have format-specific markup, for some formats
like <abbr title="Hypertext Markup Language">HTML</abbr>
.
</p>

HTML (rendered)

Heading
Sub heading

Paragraphs are separated by a blank line.


Five dashes is a horizontal rule.

Simple markup produces bold and italic text. There's also code, and other markups.

Here is a link to the org homepage.

An unordered list:

  • apples
  • oranges
  • pears

An ordered list:

  1. lather
  2. rinse
  3. repeat

Org blocks start with #+beginBLOCK and end with #+endBLOCK. This is a quote block.

You can also have format-specific markup, for some formats like HTML .

LaTeX

\section{Heading}
\label{sec:orgb1c599c}
\subsection{Sub heading}
\label{sec:orgf23aeb1}

Paragraphs are separated
by a blank line.

\noindent\rule{\textwidth}{0.5pt}

Five dashes is a horizontal rule.
Simple markup produces \textbf{bold}
and \emph{italic} text. There's also
\texttt{code}, and other markups.

Here is a link to the
org \href{https://orgmode.org/}{homepage}.
An unordered list:
\begin{itemize}
\item apples
\item oranges
\item pears
\end{itemize}

An ordered list:
\begin{enumerate}
\item lather
\item rinse
\item repeat
\end{enumerate}
\begin{center}
\includegraphics[width=.9\linewidth]{org-mode-unicorn.png}
\end{center}

\begin{quote}
Org blocks start with \#+begin\textsubscript{BLOCK}
and end with \#+end\textsubscript{BLOCK}.
This is a quote block.
\end{quote}

You can also have format-specific markup, for some formats
like \LaTeX.

ODT

<text:h text:style-name="Heading_20_1" text:outline-level="1" text:is-list-header="false">
<text:bookmark-start text:name="OrgXref.org3c83460"/>
<text:bookmark text:name="org3c83460"/>Heading
<text:bookmark-end text:name="OrgXref.org3c83460"/></text:h>
<text:h text:style-name="Heading_20_2" text:outline-level="2" text:is-list-header="false">
<text:bookmark-start text:name="OrgXref.orgeb4e8ed"/>
<text:bookmark text:name="orgeb4e8ed"/>Sub heading
<text:bookmark-end text:name="OrgXref.orgeb4e8ed"/></text:h>
<text:p text:style-name="Text_20_body">Paragraphs are separated
by a blank line.
</text:p>

<text:p text:style-name="Horizontal_20_Line"></text:p>

<text:p text:style-name="Text_20_body">Five dashes is a horizontal rule.
</text:p>
<text:p text:style-name="Text_20_body">Simple markup produces <text:span text:style-name="Bold">bold</text:span>
and <text:span text:style-name="Emphasis">italic</text:span> text. There's also
<text:span text:style-name="OrgCode">code</text:span>, and other markups.
</text:p>

<text:p text:style-name="Text_20_body">Here is a link to the
org <text:a xlink:type="simple" xlink:href="https://orgmode.org/">homepage</text:a>.
</text:p>
<text:list text:style-name="OrgBulletedList" text:continue-numbering="false">

<text:list-item>
<text:p text:style-name="Text_20_body">apples
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">oranges
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">pears
</text:p>
</text:list-item>
</text:list>

<text:p text:style-name="Text_20_body">An ordered list:
</text:p>

<text:list text:style-name="OrgNumberedList" text:continue-numbering="false">
<text:list-item>
<text:p text:style-name="Text_20_body">lather
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">rinse
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">repeat
</text:p>
</text:list-item>
</text:list>
<text:p text:style-name="Text_20_body">
<draw:frame draw:style-name="OrgDisplayImage" svg:width="6.24cm" svg:height="6.88cm" text:anchor-type="paragraph" draw:name="Frame1">

<draw:image xlink:href="Images/0001.png" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad"/>
</draw:frame>
</text:p>

<text:p text:style-name="Quotations">Org blocks start with #+begin<text:span text:style-name="OrgSubscript">BLOCK</text:span>
and end with #+end<text:span text:style-name="OrgSubscript">BLOCK</text:span>.
This is a quote block.
</text:p>

<text:p text:style-name="Text_20_body">You can also have format-specific markup, for some formats
.
</text:p>

ASCII

1 Heading
=========

1.1 Sub heading
~~~~~~~~~~~~~~~

  Paragraphs are separated by a blank line.

  -----------------------------------------

  Five dashes is a horizontal rule.
Simple markup produces *bold* and /italic/ text. There's also `code',
and other markups.

Here is a link to the org [homepage].

[homepage] <https://orgmode.org/>
An unordered list:
+ apples
+ oranges
+ pears

An ordered list:
1. lather
2. rinse
3. repeat
<file:org-mode-unicorn.png>

      Org blocks start with #+begin_BLOCK and end with
      #+end_BLOCK. This is a quote block.

You can also have format-specific markup, for some formats .

Markdown

<a id="orgfcf266c"></a>
# Heading

<a id="org6c11f38"></a>
## Sub heading

Paragraphs are separated
by a blank line.

---

Three dashes is a horizontal rule.
Simple markup produces **bold**
and *italic* text. There's also
`code`, and other markups.

Here is a link to the
org [homepage](https://orgmode.org/).
An unordered list:

-   apples
-   oranges
-   pears

An ordered list:

1.  lather
2.  rinse
3.  repeat
![img](org-mode-unicorn.png)

> Org blocks start with #+begin<sub>BLOCK</sub>
> and end with #+end<sub>BLOCK</sub>.
> This is a quote block.

You can also have format-specific markup, for some formats
like <abbr title="Hypertext Markup Language">HTML</abbr>

Texinfo

@node Heading
@chapter Heading

@menu
* Sub heading::
@end menu

@node Sub heading
@section Sub heading

Paragraphs are separated
by a blank line.

Five dashes is a horizontal rule.
Simple markup produces @strong{bold}
and @emph{italic} text. There's also
@code{code}, and other markups.

Here is a link to the
org @uref{https://orgmode.org/, homepage}.
An unordered list:
@itemize
@item
apples
@item
oranges
@item
pears
@end itemize

An ordered list:
@enumerate
@item
lather
@item
rinse
@item
repeat
@end enumerate
@image{org-mode-unicorn,,,,png}

@quotation
Org blocks start with #+begin_BLOCK
and end with #+end_BLOCK.
This is a quote block.

@end quotation

You can also have format-specific markup, for some formats.

See also

[edit]
  • Lightweight markup language
  • Comparison of notetaking software
  • Comparison of document markup languages
  • List of personal information managers
  • Outliner

References

[edit]
  1. ^ "[GNU ELPA] Org version 9.7.39". 30 November 2025. Retrieved 7 December 2025.
  2. ^ Gmane: Org, Org-mode, Orgmode, Org Mode Archived 2017-09-10 at the Wayback Machine - Carsten Dominik: Org, the system; Org-mode, the major mode
  3. ^ Dominik, Carsten (2011-12-15), Emacs Org-mode: Organizing a Scientist's Life and Work (abstract and video), Max Planck Institute for Neurological Research
  4. ^ Org Mode Manual: History and acknowledgments, Free Software Foundation
  5. ^ Corbet, Jonathan (2006), "Pre-testing Emacs 22", LWN.net
  6. ^ Org mode for Emacs – Community, archived from the original on 2016-05-06, retrieved 2012-12-04
  7. ^ "Pandoc - Org-mode features and differences". pandoc.org. Retrieved 2021-01-29.
  8. ^ "Content Formats \p Hugos". gohugo.io. 10 January 2017. Retrieved 2021-01-29.
  9. ^ "Babel: active code in Org-mode". orgmode.org. Retrieved 2020-01-09.
  10. ^ Schulte, Eric; Davison, Dan; Dye, Thomas; Dominik, Carsten (2012-01-25). "A Multi-Language Computing Environment for Literate Programming and Reproducible Research". Journal of Statistical Software. 46 (1): 1–24. doi:10.18637/jss.v046.i03. ISSN 1548-7660.
  11. ^ O'Toole, David, Org tutorial
  12. ^ Dominik, Carsten, Technical description in 24 words
  13. ^ The Linux Information Project: What is plain text?
  14. ^ Chavan, Abhijeet (2007), "Get Organized with Emacs Org-mode", Linux Journal
  15. ^ Chua, Sacha, Outlining Your Notes with Org
  16. ^ "Babel: Languages". Retrieved 7 June 2021.
  17. ^ Org-mode Contributed Packages, and many other hierarchical or list-oriented formats.
  18. ^ GitHub Markup, 2023-10-02
  19. ^ Bao, Haojun (2019-12-02), org-jira

Further reading

[edit]

Books

[edit]
  • Dominik, Carsten (2010). The Org Mode 7 Reference Manual: Organize your life with GNU Emacs. With contributions by David O'Toole, Bastien Guerry, Philip Rooke, Dan Davison, Eric Schulte, and Thomas Dye. UK: Network Theory. p. 282. ISBN 978-1-906966-08-9. Archived from the original on 2012-11-02. Retrieved 2012-11-23.

Journal articles

[edit]
  • Schulte, Eric; Davison, Dan; Dye, Thomas; Dominik, Carsten (Jan 2012). "A Multi-Language Computing Environment for Literate Programming and Reproducible Research". Journal of Statistical Software. 46 (3). American Statistical Association: 1–24. doi:10.18637/jss.v046.i03. ISSN 1548-7660.
  • Schulte, E.; Davison, D. (May–June 2011). "Active Documents with Org-Mode". Computing in Science & Engineering. 13 (3). American Institute of Physics, and IEEE Computer Society: 66–73. Bibcode:2011CSE....13c..66S. CiteSeerX 10.1.1.226.2202. doi:10.1109/MCSE.2011.41. ISSN 1521-9615. S2CID 38470377.

External links

[edit]
  • Official website
  • v
  • t
  • e
Emacs Emacs
Implementations
GNU and derivative
  • GNU Emacs
  • XEmacs
  • Freemacs
  • EINE
  • Gosling Emacs
    • Mocklisp
  • Hemlock
  • JOVE
  • mg
  • MicroEMACS
  • MINCE
  • Multics Emacs
  • Perfect Writer
  • GNU TeXmacs
  • vile
  • Zmacs
  • ZWEI
GNU/Emacs Logo
Modes
  • AUCTeX
  • Dired
  • Dunnet
  • Emacs Speaks Statistics
  • Emacspeak
  • ERC
  • eww
  • Gnus
  • Magit
  • Org-mode
  • rcirc
  • RefTeX
  • SLIME
  • w3m
Internals
  • Emacs Lisp
  • MULE
Community
Organizations
  • Honeywell
  • Perfect Software
  • Mark of the Unicorn
  • Massachusetts Institute of Technology
  • Thorn EMI Computer Software
  • UniPress
People
  • Thomas Dickey
  • Paul Fox
  • Richard P. Gabriel
  • James Gosling
  • Jim Hall
  • Joris van der Hoeven
  • Daniel Murphy
  • Russ Nelson
  • David Reitter
  • Richard Stallman
  • Guy L. Steele Jr.
  • Daniel Weinreb
Other
  • Conkeror
  • Dissociated press
  • Editor war
  • Spacemacs
  • Doom Emacs
Wikimedia Commons Wikiquotes
Retrieved from "https://teknopedia.ac.id/w/index.php?title=Org-mode&oldid=1303485416"
Categories:
  • Distributed bug tracking systems
  • Emacs modes
  • Free note-taking software
  • Free personal information managers
  • Free spreadsheet software
  • Free task management software
  • Lightweight markup languages
  • Outliners
Hidden categories:
  • Webarchive template wayback links
  • Articles with short description
  • Short description is different from Wikidata

  • indonesia
  • Polski
  • العربية
  • Deutsch
  • English
  • Español
  • Français
  • Italiano
  • مصرى
  • Nederlands
  • 日本語
  • Português
  • Sinugboanong Binisaya
  • Svenska
  • Українська
  • Tiếng Việt
  • Winaray
  • 中文
  • Русский
Sunting pranala
url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url
Pusat Layanan

UNIVERSITAS TEKNOKRAT INDONESIA | ASEAN's Best Private University
Jl. ZA. Pagar Alam No.9 -11, Labuhan Ratu, Kec. Kedaton, Kota Bandar Lampung, Lampung 35132
Phone: (0721) 702022
Email: pmb@teknokrat.ac.id