个人工具

“UbuntuHelp:RestrictedFormats/Microsoft Fonts”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(正在将页面替换为 '{{From|https://help.ubuntu.com/community/RestrictedFormats/Microsoft_Fonts}} {{Languages|UbuntuHelp:RestrictedFormats/Microsoft_Fonts}} == Microsoft Fonts == To install Mi...')
第1行: 第1行:
{{From|https://help.ubuntu.com/community/RestrictedFormats/Microsoft_Fonts}}
+
{{From|https://help.ubuntu.com/community/RestrictedFormats/Microsoft Fonts}}
{{Languages|UbuntuHelp:RestrictedFormats/Microsoft_Fonts}}
+
{{Languages|UbuntuHelp:RestrictedFormats/Microsoft Fonts}}
== Microsoft Fonts ==
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
To install Microsoft Core fonts you can do the following:
+
<html>
<pre><nowiki>
+
<head>
$ sudo apt-get install msttcorefonts ttf-xfree86-nonfree
+
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</nowiki></pre>
+
<meta name="robots" content="index,nofollow">
Note the package msttcorefonts does not work if you are behind a proxy server
+
 
 +
 
 +
<title>RestrictedFormats/Microsoft - Community Ubuntu Documentation</title>
 +
 
 +
<script type="text/javascript">
 +
<!--// common functions
 +
 
 +
// We keep here the state of the search box
 +
searchIsDisabled = false;
 +
 
 +
function searchChange(e) {
 +
// Update search buttons status according to search box content.
 +
// Ignore empty or whitespace search term.
 +
var value = e.value.replace(/\s+/, '');
 +
if (value == '' || searchIsDisabled) {
 +
searchSetDisabled(true);
 +
} else {
 +
searchSetDisabled(false);
 +
}
 +
}
 +
 
 +
function searchSetDisabled(flag) {
 +
// Enable or disable search
 +
document.getElementById('fullsearch').disabled = flag;
 +
document.getElementById('titlesearch').disabled = flag;
 +
}
 +
 
 +
function searchFocus(e) {
 +
// Update search input content on focus
 +
if (e.value == 'Search') {
 +
e.value = '';
 +
e.style.color = 'black';
 +
searchIsDisabled = false;
 +
}
 +
}
 +
 
 +
function searchBlur(e) {
 +
// Update search input content on blur
 +
if (e.value == '') {
 +
e.value = 'Search';
 +
e.style.color = 'gray';
 +
searchIsDisabled = true;
 +
}
 +
}
 +
 
 +
function actionsMenuInit(title) {
 +
// Initiliaze action menu
 +
for (i = 0; i < document.forms.length; i++) {
 +
var form = document.forms[i];
 +
if (form.className == 'actionsmenu') {
 +
// Check if this form needs update
 +
var div = form.getElementsByTagName('div')[0];
 +
var label = div.getElementsByTagName('label')[0];
 +
if (label) {
 +
// This is the first time: remove label and do buton.
 +
div.removeChild(label);
 +
var dobutton = div.getElementsByTagName('input')[0];
 +
div.removeChild(dobutton);
 +
// and add menu title
 +
var select = div.getElementsByTagName('select')[0];
 +
var item = document.createElement('option');
 +
item.appendChild(document.createTextNode(title));
 +
item.value = 'show';
 +
select.insertBefore(item, select.options[0]);
 +
select.selectedIndex = 0;
 +
}
 +
}
 +
}
 +
}
 +
//-->
 +
</script>
 +
 
 +
<link rel="stylesheet" type="text/css" charset="utf-8" media="all" href="/htdocs/ubuntu/css/common.css">
 +
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="/htdocs/ubuntu/css/screen.css">
 +
<link rel="stylesheet" type="text/css" charset="utf-8" media="print" href="/htdocs/ubuntu/css/print.css">
 +
<link rel="stylesheet" type="text/css" charset="utf-8" media="projection" href="/htdocs/ubuntu/css/projection.css">
 +
 
 +
<link rel="Start" href="/community/UserDocumentation">
 +
<link rel="Alternate" title="Wiki Markup" href="/community/RestrictedFormats/Microsoft?action=raw">
 +
<link rel="Alternate" media="print" title="Print View" href="/community/RestrictedFormats/Microsoft?action=print">
 +
<link rel="Up" href="/community/RestrictedFormats">
 +
<link rel="Search" href="/community/FindPage">
 +
<link rel="Index" href="/community/TitleIndex">
 +
<link rel="Glossary" href="/community/WordIndex">
 +
<link rel="Help" href="/community/HelpOnFormatting">
 +
</head>
 +
 
 +
<body  lang="en" dir="ltr">
 +
 
 +
<script xmlns="" src="https://ssl.google-analytics.com/urchin.js" type="text/javascript"></script>
 +
<script xmlns="" type="text/javascript"><![CDATA[
 +
_uacct = "UA-737845-5";
 +
urchinTracker();
 +
]]></script>
 +
<div id="header">
 +
<div id="mastwrap"><div id="masthead">
 +
<div id="logo"><a href="/community/UserDocumentation">Community Ubuntu Documentation</a></div>
 +
 
 +
<form id="searchform" method="get" action="">
 +
<div>
 +
<input type="hidden" name="action" value="fullsearch">
 +
<input type="hidden" name="context" value="180">
 +
<label for="searchinput">Search:</label>
 +
<input id="searchinput" type="text" name="value" value="" size="20"
 +
onfocus="searchFocus(this)" onblur="searchBlur(this)"
 +
onkeyup="searchChange(this)" onchange="searchChange(this)" alt="Search">
 +
<input id="titlesearch" name="titlesearch" type="submit"
 +
value="Titles" alt="Search Titles">
 +
<input id="fullsearch" name="fullsearch" type="submit"
 +
value="Text" alt="Search Full Text">
 +
</div>
 +
</form>
 +
<script type="text/javascript">
 +
<!--// Initialize search form
 +
var f = document.getElementById('searchform');
 +
f.getElementsByTagName('label')[0].style.display = 'none';
 +
var e = document.getElementById('searchinput');
 +
searchChange(e);
 +
searchBlur(e);
 +
//-->
 +
</script>
 +
 
 +
 
 +
<div id="sisternav">
 +
<ul>
 +
<li id="plain">
 +
<a href="https://help.ubuntu.com/6.06"
 +
accesskey="t">6.06 LTS</a>
 +
</li>
 +
<li id="plain">
 +
<a href="https://help.ubuntu.com/6.10"
 +
accesskey="t">6.10</a>
 +
</li>
 +
<li id="plain">
 +
<a href="https://help.ubuntu.com/7.04"
 +
accesskey="t">7.04</a>
 +
</li>
 +
<li id="current">
 +
<a href="https://help.ubuntu.com/community"
 +
accesskey="t">Community Docs</a>
 +
</li>
 +
</ul>
 +
</div>
 +
 
 +
</div></div>
 +
 
 +
<ul class="extranav">
 +
<li><a href="/community/UserDocumentation">User Documentation</a></li>
 +
</ul>
 +
 
 +
</div>
 +
 
 +
<div id="page" lang="en" dir="ltr"><!-- start page -->
 +
 
 +
 
 +
<h1 id="title"><a title="Click to do a full-text search for this title" href="/community/RestrictedFormats/Microsoft?action=fullsearch&amp;value=linkto%3A%22RestrictedFormats%2FMicrosoft%22&amp;context=180">RestrictedFormats/Microsoft</a></h1>
 +
<div lang="en" id="content" dir="ltr">
 +
<a id="top"></a>
 +
<div lang="en" id="content" dir="ltr">
 +
<a id="top"></a>
 +
<p><strong>This page does not exist yet. You can create a new empty page, or use one of the page templates. Before creating the page, please check if a similar page already exists.</strong> </p>
 +
<a href="/community/RestrictedFormats/Microsoft?action=edit">Create new empty page</a><p> </p>
 +
<div>
 +
<table>
 +
<tr>
 +
<td>
 +
<p> <strong>Page templates:</strong> </p>
 +
</td>
 +
<td>
 +
<p> <strong>Existing pages with similar names:</strong> </p>
 +
</td>
 +
</tr>
 +
<tr>
 +
<td style="vertical-align: top;">
 +
<p> <ul>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=AideTemplate">AideTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=[[category:CategoryTemplate">CategoryTemplate</a></li>]]
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=DocumentationTemplate">DocumentationTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=HelpTemplate">HelpTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=HilfeTemplate">HilfeTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=HomepageTemplate">HomepageTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=PagePersonnelleTemplate">PagePersonnelleTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=Pr%c3%a9sentationTemplate">PrésentationTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=SlideShowHandOutTemplate">SlideShowHandOutTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=SlideShowTemplate">SlideShowTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=SlideTemplate">SlideTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=SupportPapierD'UnePr%c3%a9sentationTemplate">SupportPapierD'UnePrésentationTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=ThuisbladTemplate">ThuisbladTemplate</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft?action=edit&amp;template=TransparentTemplate">TransparentTemplate</a></li>
 +
</ul>
 +
</p>
 +
</td>
 +
<td style="vertical-align: top;">
 +
<p> <ul>
 +
<li><a href="/community/IndonesianRestrictedFormats">IndonesianRestrictedFormats</a></li>
 +
</ul>
 +
<ul>
 +
<li><a href="/community/RestrictedFormats">RestrictedFormats</a></li>
 +
<li><a href="/community/RestrictedFormats-RU">RestrictedFormats-RU</a></li>
 +
<li><a href="/community/RestrictedFormats/AAC">RestrictedFormats/AAC</a></li>
 +
<li><a href="/community/RestrictedFormats/BluRayAndHDDVD">RestrictedFormats/BluRayAndHDDVD</a></li>
 +
<li><a href="/community/RestrictedFormats/ConvertingToOpen">RestrictedFormats/ConvertingToOpen</a></li>
 +
<li><a href="/community/RestrictedFormats/Flash">RestrictedFormats/Flash</a></li>
 +
<li><a href="/community/RestrictedFormats/MP3">RestrictedFormats/MP3</a></li>
 +
<li><a href="/community/RestrictedFormats/Microsoft_Fonts">RestrictedFormats/Microsoft Fonts</a></li>
 +
<li><a href="/community/RestrictedFormats/NonNativeCodecs">RestrictedFormats/NonNativeCodecs</a></li>
 +
<li><a href="/community/RestrictedFormats/PlayingDVDs">RestrictedFormats/PlayingDVDs</a></li>
 +
<li><a href="/community/RestrictedFormats/RippingDVDs">RestrictedFormats/RippingDVDs</a></li>
 +
<li><a href="/community/RestrictedFormats/Smil">RestrictedFormats/Smil</a></li>
 +
<li><a href="/community/RestrictedFormats/StreamingVideo">RestrictedFormats/StreamingVideo</a></li>
 +
<li><a href="/community/RestrictedFormats/Talk">RestrictedFormats/Talk</a></li>
 +
<li><a href="/community/RestrictedFormats/WindowsCodecs">RestrictedFormats/WindowsCodecs</a></li>
 +
<li><a href="/community/RestrictedFormats/iTunesMusicStore">RestrictedFormats/iTunesMusicStore</a></li>
 +
<li><a href="/community/RestrictedFormatsRu">RestrictedFormatsRu</a></li>
 +
</ul>
 +
</p>
 +
</td>
 +
</tr>
 +
</table>
 +
</div>
 +
<a id="bottom"></a>
 +
 
 +
</div>
 +
<a id="bottom"></a>
 +
 
 +
</div>
 +
 
 +
</div> <!-- end page -->
 +
 
 +
 
 +
<div id="footer">
 +
 
 +
<div id="ubuntulinks">
 +
&copy; 2007 <a href="http://www.canonical.com">Canonical Ltd</a>. Ubuntu, Kubuntu, Edubuntu and Canonical are registered trademarks of Canonical Ltd.<br />
 +
<a href="http://www.ubuntu.com/feedback">Feedback</a> &mdash;
 +
<a href="http://www.ubuntu.com/legal">Legal</a> &mdash;
 +
<a href="https://wiki.ubuntu.com/wiki/credits">Credits</a><!-- &mdash;
 +
<a href="http://www.ubuntu.com/sitemap">Site Map</a>-->
 +
</div>
 +
 
 +
 
 +
</div>
 +
</body>
 +
</html>
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2007年5月24日 (四) 18:01的版本

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> RestrictedFormats/Microsoft - Community Ubuntu Documentation