The army rank of captain (from the French capitaine) is a commissioned officer rank historically corresponding to the command of a company of soldiers. The rank is also used by some air forces and marine forces. Today, a captain is typically either the commander or second-in-command of a company or artillery battery (or United States Army cavalry troop or Commonwealth squadron). In the Chinese People's Liberation Army, a captain may also command a company, or be the second-in-command of a battalion.
In NATO countries, the rank of captain is described by the code OF-2 and is one rank above an OF-1 (lieutenant or first lieutenant) and one below an OF-3 (major or commandant). The rank of captain is generally considered to be the highest rank a soldier can achieve while remaining in the field.
In some militaries, such as United States Army and Air Force and the British Army, captain is the entry-level rank for officer candidates possessing a professional degree, namely medical professionals (doctors, nurses, pharmacists, dentists) and lawyers. (In the United States Army, lawyers who are not already officers at captain rank or above enter as lieutenants during training, and are promoted to the rank of captain after completion of their training if they are in the active component, or after a certain amount of time, usually one year from their date of commission as a lieutenant, for the reserve components.)
The rank of captain should not be confused with the naval rank of captain or with the British-influenced air force rank of group captain, both of which are equivalent to the army rank of colonel.
History
The term ultimately goes back to Late Latin capitaneus meaning "chief, prominent"; in Middle English adopted as capitayn in the 14th century, from Old French capitaine.
The military rank of captain was in use from the 1560s, referring to an officer who commands a company. The naval sense, an officer who commands a man-of-war, is somewhat earlier, from the 1550s, later extended in meaning to "master or commander of any kind of vessel". A captain in the period prior to the professionalization of the armed services of European nations subsequent to the French Revolution, during the early modern period, was a nobleman who purchased the right to head a company from the previous holder of that right. He would in turn receive money from another nobleman to serve as his lieutenant. The funding to provide for the troops came from the monarch or his government; the captain had to be responsible for it. If he was not, or was otherwise court-martialed, he would be dismissed ("cashiered"), and the monarch would receive money from another nobleman to command the company. Otherwise, the only pension for the captain was selling the right to another nobleman when he was ready to retire.
Air forces
In most countries, the air force is the junior service and so air force ranks have been adopted or modified from one of the other services. Many, such as the United States Air Force, use a rank structure and insignia similar to those of the army.
However, the United Kingdom's Royal Air Force, many other Commonwealth air forces and a few non-Commonwealth air forces[1] use an air force-specific rank structure in which flight lieutenant is OF-2. A group captain is OF-5 and was derived from the naval rank of captain.
In the unified system of the Canadian Forces, the air force rank titles are pearl grey and increase from OF-1 to OF-5 in half strip increments.[2]
Equivalent captain ranks
Rank name
|
Country name
|
Akhmad
|
Mongolia
|
Capitaine
|
Belgium (Fr.)
|
Capitaine
|
France
|
Capitano
|
Italy
|
Capitán
|
Spain
|
Capitão
|
Brasil
|
Capitão
|
Portugal
|
Căpitan
|
Romania
|
Hauptmann
|
Austria
|
Hauptmann
|
Germany
|
Hauptmann
|
Switzerland
|
Hauptsturmführer
|
Nazi SS
|
Jeg-tooran (جګتورن)
|
Afghanistan
|
Kamagat
|
Philippines
|
Kapetan (Капетан)
|
Serbia
|
Kapitan
|
Poland
|
Kapitan
|
Azerbaijan
|
Kapitan (Капитан)
|
Bulgaria
|
Kapitan (Капитан)
|
Russia
|
Kapitan (Капітан)
|
Ukraine
|
Kapitein
|
Netherlands
|
Kapitein
|
Belgium (NL.)
|
Kapitonas
|
Lithuania
|
Kapitán
|
Czech Rep.
|
Kapitán
|
Slovakia
|
Kaptajn
|
Denmark
|
Kaptan (کپتان)
|
Pakistan
|
Kapteeni
|
Finland
|
Kaptein
|
Norway
|
Kapten
|
Indonesia
|
Kapten
|
Sweden
|
Lochagos (Λοχαγός)
|
Greece
|
Phu Kong (ผู้กอง)
|
Thailand
|
Roi Ek,Roi Ek (ร้อยเอก)
|
Thailand
|
Satnik
|
Croatia
|
Seren,Seren (סרן)
|
Israel
|
Shangwei,Shangwei
|
China
|
Shangwei,Shangwei
|
Taiwan
|
Százados
|
Hungary
|
Taewi (대위)
|
South Korea
|
Taii (大尉), Ichii (一尉)
|
Japan
|
Yüzbaşı
|
Turkey
|
Đại Úy
|
Vietnam
|
Капетан (Kapetan)
|
Macedonia
|
Insignia
A variety of images illustrative of different forces' insignia for captain (or captain-equivalents) are shown below:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Kapitein
Royal Netherlands Army
-
-
-
-
-
-
-
-
-
-
Roi Ek (ร้อยเอก)
Royal Thai Army
-
U.S. Army and U.S. Air Force[1]
-
-
-
-
U.S. Army (September 1959 to October 2014)
See also
References
-- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the and meta-templates and includes -- -- helper functions for other Lua hatnote modules. --
local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local yesno -- lazily initialise Module:Yesno
local p = {}
-- Helper functions
local function getArgs(frame) -- Fetches the arguments from the parent frame. Whitespace is trimmed and -- blanks are removed. mArguments = require('Module:Arguments') return mArguments.getArgs(frame, {parentOnly = true}) end
local function removeInitialColon(s) -- Removes the initial colon from a string, if present. return s:match('^:?(.*)') end
function p.findNamespaceId(link, removeColon) -- Finds the namespace id (namespace number) of a link or a pagename. This -- function will not work if the link is enclosed in double brackets. Colons -- are trimmed from the start of the link by default. To skip colon -- trimming, set the removeColon parameter to true. checkType('findNamespaceId', 1, link, 'string') checkType('findNamespaceId', 2, removeColon, 'boolean', true) if removeColon ~= false then link = removeInitialColon(link) end local namespace = link:match('^(.-):') if namespace then local nsTable = mw.site.namespaces[namespace] if nsTable then return nsTable.id end end return 0 end
function p.formatPages(...) -- Formats a list of pages using formatLink and returns it as an array. Nil -- values are not allowed. local pages = {...} local ret = {} for i, page in ipairs(pages) do ret[i] = p._formatLink(page) end return ret end
function p.formatPageTables(...) -- Takes a list of page/display tables and returns it as a list of -- formatted links. Nil values are not allowed. local pages = {...} local links = {} for i, t in ipairs(pages) do checkType('formatPageTables', i, t, 'table') local link = t[1] local display = t[2] links[i] = p._formatLink(link, display) end return links end
function p.makeWikitextError(msg, helpLink, addTrackingCategory) -- Formats an error message to be returned to wikitext. If -- addTrackingCategory is not false after being returned from -- Module:Yesno, and if we are not on a talk page, a tracking category -- is added. checkType('makeWikitextError', 1, msg, 'string') checkType('makeWikitextError', 2, helpLink, 'string', true) yesno = require('Module:Yesno') local title = mw.title.getCurrentTitle() -- Make the help link text. local helpText if helpLink then helpText = ' (help)' else helpText = end -- Make the category text. local category if not title.isTalkPage and yesno(addTrackingCategory) ~= false then category = 'Hatnote templates with errors' category = string.format( '%s:%s', mw.site.namespaces[14].name, category ) else category = end return string.format( '%s', msg, helpText, category ) end
-- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the template.
function p.formatLink(frame) local args = getArgs(frame) local link = args[1] local display = args[2] if not link then return p.makeWikitextError( 'no link specified', 'Template:Format hatnote link#Errors', args.category ) end return p._formatLink(link, display) end
function p._formatLink(link, display) -- Find whether we need to use the colon trick or not. We need to use the -- colon trick for categories and files, as otherwise category links -- categorise the page and file links display the file. checkType('_formatLink', 1, link, 'string') checkType('_formatLink', 2, display, 'string', true) link = removeInitialColon(link) local namespace = p.findNamespaceId(link, false) local colon if namespace == 6 or namespace == 14 then colon = ':' else colon = end -- Find whether a faux display value has been added with the | magic -- word. if not display then local prePipe, postPipe = link:match('^(.-)|(.*)$') link = prePipe or link display = postPipe end -- Find the display value. if not display then local page, section = link:match('^(.-)#(.*)$') if page then display = page .. ' § ' .. section end end -- Assemble the link. if display then return string.format('%s', colon, link, display) else return string.format('%s%s', colon, link) end end
-- Hatnote -- -- Produces standard hatnote text. Implements the template.
function p.hatnote(frame) local args = getArgs(frame) local s = args[1] local options = {} if not s then return p.makeWikitextError( 'no text specified', 'Template:Hatnote#Errors', args.category ) end options.extraclasses = args.extraclasses options.selfref = args.selfref return p._hatnote(s, options) end
function p._hatnote(s, options) checkType('_hatnote', 1, s, 'string') checkType('_hatnote', 2, options, 'table', true) local classes = {'hatnote'} local extraclasses = options.extraclasses local selfref = options.selfref if type(extraclasses) == 'string' then classes[#classes + 1] = extraclasses end if selfref then classes[#classes + 1] = 'selfref' end return string.format( '
%s
', table.concat(classes, ' '), s )
end
return p-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the and meta-templates and includes -- -- helper functions for other Lua hatnote modules. --
local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local yesno -- lazily initialise Module:Yesno
local p = {}
-- Helper functions
local function getArgs(frame) -- Fetches the arguments from the parent frame. Whitespace is trimmed and -- blanks are removed. mArguments = require('Module:Arguments') return mArguments.getArgs(frame, {parentOnly = true}) end
local function removeInitialColon(s) -- Removes the initial colon from a string, if present. return s:match('^:?(.*)') end
function p.findNamespaceId(link, removeColon) -- Finds the namespace id (namespace number) of a link or a pagename. This -- function will not work if the link is enclosed in double brackets. Colons -- are trimmed from the start of the link by default. To skip colon -- trimming, set the removeColon parameter to true. checkType('findNamespaceId', 1, link, 'string') checkType('findNamespaceId', 2, removeColon, 'boolean', true) if removeColon ~= false then link = removeInitialColon(link) end local namespace = link:match('^(.-):') if namespace then local nsTable = mw.site.namespaces[namespace] if nsTable then return nsTable.id end end return 0 end
function p.formatPages(...) -- Formats a list of pages using formatLink and returns it as an array. Nil -- values are not allowed. local pages = {...} local ret = {} for i, page in ipairs(pages) do ret[i] = p._formatLink(page) end return ret end
function p.formatPageTables(...) -- Takes a list of page/display tables and returns it as a list of -- formatted links. Nil values are not allowed. local pages = {...} local links = {} for i, t in ipairs(pages) do checkType('formatPageTables', i, t, 'table') local link = t[1] local display = t[2] links[i] = p._formatLink(link, display) end return links end
function p.makeWikitextError(msg, helpLink, addTrackingCategory) -- Formats an error message to be returned to wikitext. If -- addTrackingCategory is not false after being returned from -- Module:Yesno, and if we are not on a talk page, a tracking category -- is added. checkType('makeWikitextError', 1, msg, 'string') checkType('makeWikitextError', 2, helpLink, 'string', true) yesno = require('Module:Yesno') local title = mw.title.getCurrentTitle() -- Make the help link text. local helpText if helpLink then helpText = ' (help)' else helpText = end -- Make the category text. local category if not title.isTalkPage and yesno(addTrackingCategory) ~= false then category = 'Hatnote templates with errors' category = string.format( '%s:%s', mw.site.namespaces[14].name, category ) else category = end return string.format( '%s', msg, helpText, category ) end
-- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the template.
function p.formatLink(frame) local args = getArgs(frame) local link = args[1] local display = args[2] if not link then return p.makeWikitextError( 'no link specified', 'Template:Format hatnote link#Errors', args.category ) end return p._formatLink(link, display) end
function p._formatLink(link, display) -- Find whether we need to use the colon trick or not. We need to use the -- colon trick for categories and files, as otherwise category links -- categorise the page and file links display the file. checkType('_formatLink', 1, link, 'string') checkType('_formatLink', 2, display, 'string', true) link = removeInitialColon(link) local namespace = p.findNamespaceId(link, false) local colon if namespace == 6 or namespace == 14 then colon = ':' else colon = end -- Find whether a faux display value has been added with the | magic -- word. if not display then local prePipe, postPipe = link:match('^(.-)|(.*)$') link = prePipe or link display = postPipe end -- Find the display value. if not display then local page, section = link:match('^(.-)#(.*)$') if page then display = page .. ' § ' .. section end end -- Assemble the link. if display then return string.format('%s', colon, link, display) else return string.format('%s%s', colon, link) end end
-- Hatnote -- -- Produces standard hatnote text. Implements the template.
function p.hatnote(frame) local args = getArgs(frame) local s = args[1] local options = {} if not s then return p.makeWikitextError( 'no text specified', 'Template:Hatnote#Errors', args.category ) end options.extraclasses = args.extraclasses options.selfref = args.selfref return p._hatnote(s, options) end
function p._hatnote(s, options) checkType('_hatnote', 1, s, 'string') checkType('_hatnote', 2, options, 'table', true) local classes = {'hatnote'} local extraclasses = options.extraclasses local selfref = options.selfref if type(extraclasses) == 'string' then classes[#classes + 1] = extraclasses end if selfref then classes[#classes + 1] = 'selfref' end return string.format( '
%s
', table.concat(classes, ' '), s )
end
return p
This article was sourced from Creative Commons Attribution-ShareAlike License; additional terms may apply. World Heritage Encyclopedia content is assembled from numerous content providers, Open Access Publishing, and in compliance with The Fair Access to Science and Technology Research Act (FASTR), Wikimedia Foundation, Inc., Public Library of Science, The Encyclopedia of Life, Open Book Publishers (OBP), PubMed, U.S. National Library of Medicine, National Center for Biotechnology Information, U.S. National Library of Medicine, National Institutes of Health (NIH), U.S. Department of Health & Human Services, and USA.gov, which sources content from all federal, state, local, tribal, and territorial government publication portals (.gov, .mil, .edu). Funding for USA.gov and content contributors is made possible from the U.S. Congress, E-Government Act of 2002.
Crowd sourced content that is contributed to World Heritage Encyclopedia is peer reviewed and edited by our editorial staff to ensure quality scholarly research articles.
By using this site, you agree to the Terms of Use and Privacy Policy. World Heritage Encyclopedia™ is a registered trademark of the World Public Library Association, a non-profit organization.