Test with onlyoffice 5.2.6
@@ -43,6 +43,7 @@
|
||||
print: <can print>, // default = true
|
||||
rename: <can rename>, // default = false
|
||||
changeHistory: <can change history>, // default = false
|
||||
comment: <can comment in view mode> // default = edit
|
||||
}
|
||||
},
|
||||
editorConfig: {
|
||||
@@ -115,7 +116,8 @@
|
||||
statusBar: true,
|
||||
autosave: true,
|
||||
forcesave: false,
|
||||
commentAuthorOnly: false
|
||||
commentAuthorOnly: false,
|
||||
showReviewChanges: false
|
||||
},
|
||||
plugins: {
|
||||
autoStartGuid: 'asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}',
|
||||
@@ -129,9 +131,11 @@
|
||||
}
|
||||
},
|
||||
events: {
|
||||
'onReady': <document ready callback>,
|
||||
'onReady': <application ready callback>, // deprecated
|
||||
'onAppReady': <application ready callback>,
|
||||
'onBack': <back to folder callback>,
|
||||
'onDocumentStateChange': <document state changed callback>
|
||||
'onDocumentReady': <document ready callback>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -162,9 +166,11 @@
|
||||
}
|
||||
},
|
||||
events: {
|
||||
'onReady': <document ready callback>,
|
||||
'onReady': <application ready callback>, // deprecated
|
||||
'onAppReady': <application ready callback>,
|
||||
'onBack': <back to folder callback>,
|
||||
'onError': <error callback>,
|
||||
'onDocumentReady': <document ready callback>
|
||||
}
|
||||
}
|
||||
*/
|
||||
@@ -183,6 +189,9 @@
|
||||
_config.editorConfig.canRequestEditRights = _config.events && !!_config.events.onRequestEditRights;
|
||||
_config.frameEditorId = placeholderId;
|
||||
|
||||
_config.events && !!_config.events.onReady && console.log("Obsolete: The onReady event is deprecated. Please use onAppReady instead.");
|
||||
_config.events && (_config.events.onAppReady = _config.events.onAppReady || _config.events.onReady);
|
||||
|
||||
var onMouseUp = function (evt) {
|
||||
_processMouse(evt);
|
||||
};
|
||||
@@ -203,7 +212,7 @@
|
||||
}
|
||||
};
|
||||
|
||||
var _onReady = function() {
|
||||
var _onAppReady = function() {
|
||||
if (_config.type === 'mobile') {
|
||||
document.body.onfocus = function(e) {
|
||||
setTimeout(function(){
|
||||
@@ -273,11 +282,11 @@
|
||||
} else if (msg.event === 'onInternalMessage' && msg.data && msg.data.type == 'localstorage') {
|
||||
_callLocalStorage(msg.data.data);
|
||||
} else {
|
||||
if (msg.event === 'onReady') {
|
||||
_onReady();
|
||||
if (msg.event === 'onAppReady') {
|
||||
_onAppReady();
|
||||
}
|
||||
|
||||
if (handler) {
|
||||
if (handler && typeof handler == "function") {
|
||||
res = handler.call(_self, {target: _self, data: msg.data});
|
||||
}
|
||||
}
|
||||
@@ -311,7 +320,7 @@
|
||||
}
|
||||
|
||||
if (typeof _config.document.fileType === 'string' && _config.document.fileType != '') {
|
||||
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps))$/
|
||||
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods|ots)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp|otp)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps|docm|dot|dotm|dotx|fodt|ott))$/
|
||||
.exec(_config.document.fileType);
|
||||
if (!type) {
|
||||
window.alert("The \"document.fileType\" parameter for the config object is invalid. Please correct it.");
|
||||
@@ -325,9 +334,7 @@
|
||||
|
||||
var type = /^(?:(pdf|djvu|xps))$/.exec(_config.document.fileType);
|
||||
if (type && typeof type[1] === 'string') {
|
||||
if (!_config.document.permissions)
|
||||
_config.document.permissions = {};
|
||||
_config.document.permissions.edit = false;
|
||||
_config.editorConfig.canUseHistory = false;
|
||||
}
|
||||
|
||||
if (!_config.document.title || _config.document.title=='')
|
||||
@@ -409,21 +416,12 @@
|
||||
});
|
||||
};
|
||||
|
||||
var _showError = function(title, msg) {
|
||||
_showMessage(title, msg, "error");
|
||||
};
|
||||
|
||||
// severity could be one of: "error", "info" or "warning"
|
||||
var _showMessage = function(title, msg, severity) {
|
||||
if (typeof severity !== 'string') {
|
||||
severity = "info";
|
||||
}
|
||||
var _showMessage = function(title, msg) {
|
||||
msg = msg || title;
|
||||
_sendCommand({
|
||||
command: 'showMessage',
|
||||
data: {
|
||||
title: title,
|
||||
msg: msg,
|
||||
severity: severity
|
||||
msg: msg
|
||||
}
|
||||
});
|
||||
};
|
||||
@@ -540,7 +538,6 @@
|
||||
};
|
||||
|
||||
return {
|
||||
showError : _showError,
|
||||
showMessage : _showMessage,
|
||||
processSaveResult : _processSaveResult,
|
||||
processRightsChange : _processRightsChange,
|
||||
@@ -656,7 +653,7 @@
|
||||
app = appMap[config.documentType.toLowerCase()];
|
||||
} else
|
||||
if (!!config.document && typeof config.document.fileType === 'string') {
|
||||
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides))$/
|
||||
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm))$/
|
||||
.exec(config.document.fileType);
|
||||
if (type) {
|
||||
if (typeof type[1] === 'string') app = appMap['spreadsheet']; else
|
||||
|
||||
@@ -7,9 +7,8 @@
|
||||
<meta name="description" content="" />
|
||||
<meta name="keywords" content="" />
|
||||
<link rel="icon" href="resources/img/favicon.ico" type="image/x-icon" />
|
||||
<link rel="stylesheet" type="text/css" href="../../../apps/documenteditor/main/resources/css/app.css">
|
||||
|
||||
<!-- splash -->
|
||||
<!-- splash -->
|
||||
|
||||
<style type="text/css">
|
||||
.loadmask {
|
||||
@@ -177,8 +176,6 @@
|
||||
100% { top:100px; background: #55bce6; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>
|
||||
var userAgent = navigator.userAgent.toLowerCase(),
|
||||
@@ -221,7 +218,7 @@
|
||||
}
|
||||
|
||||
var params = getUrlParams(),
|
||||
lang = (params["lang"] || 'en').split("-")[0],
|
||||
lang = (params["lang"] || 'en').split(/[\-\_]/)[0],
|
||||
customer = params["customer"] ? ('<div class="loader-page-text-customer">' + encodeUrlParam(params["customer"]) + '</div>') : '',
|
||||
margin = (customer !== '') ? 50 : 20,
|
||||
loading = 'Loading...',
|
||||
@@ -238,24 +235,50 @@
|
||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||
|
||||
if (!stopLoading)
|
||||
document.write(
|
||||
'<div id="loading-mask" class="loadmask">' +
|
||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||
((logo!==null) ? logo :
|
||||
'<div class="loader-page-romb">' +
|
||||
'<div class="romb" id="blue"></div>' +
|
||||
'<div class="romb" id="green"></div>' +
|
||||
'<div class="romb" id="red"></div>' +
|
||||
'</div>') +
|
||||
'</div>' +
|
||||
'<div class="loader-page-text">' + customer +
|
||||
'<div class="loader-page-text-loading">' + loading + '</div>' +
|
||||
'</div>' +
|
||||
'</div>');
|
||||
if ( !stopLoading )
|
||||
document.write(
|
||||
'<div id="loading-mask" class="loadmask">' +
|
||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||
((logo!==null) ? logo :
|
||||
'<div class="loader-page-romb">' +
|
||||
'<div class="romb" id="blue"></div>' +
|
||||
'<div class="romb" id="green"></div>' +
|
||||
'<div class="romb" id="red"></div>' +
|
||||
'</div>') +
|
||||
'</div>' +
|
||||
'<div class="loader-page-text">' + customer +
|
||||
'<div class="loader-page-text-loading">' + loading + '</div>' +
|
||||
'</div>' +
|
||||
'</div>');
|
||||
</script>
|
||||
|
||||
var require = {
|
||||
waitSeconds: 30
|
||||
<link rel="stylesheet" type="text/css" href="../../../apps/documenteditor/main/resources/css/app.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>
|
||||
window.requireTimeourError = function(){
|
||||
var reqerr;
|
||||
|
||||
if ( lang == 'de') reqerr = 'Die Verbindung ist zu langsam, einige Komponenten konnten nicht geladen werden. Aktualisieren Sie bitte die Seite.';
|
||||
else if ( lang == 'es') reqerr = 'La conexión es muy lenta, algunos de los componentes no han podido cargar. Por favor recargue la página.';
|
||||
else if ( lang == 'fr') reqerr = 'La connexion est trop lente, certains des composants n\'ons pas pu être chargé. Veuillez recharger la page.';
|
||||
else if ( lang == 'ru') reqerr = 'Слишком медленное соединение, не удается загрузить некоторые компоненты. Пожалуйста, обновите страницу.';
|
||||
else reqerr = 'The connection is too slow, some of the components could not be loaded. Please reload the page.';
|
||||
|
||||
return reqerr;
|
||||
};
|
||||
|
||||
var requireTimeoutID = setTimeout(function(){
|
||||
window.alert(window.requireTimeourError());
|
||||
window.location.reload();
|
||||
}, 30000);
|
||||
|
||||
var require = {
|
||||
waitSeconds: 30,
|
||||
callback: function(){
|
||||
clearTimeout(requireTimeoutID);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
@@ -1,42 +1 @@
|
||||
[
|
||||
{"src": "UsageInstructions/SetPageParameters.htm", "name": "Set page parameters", "headername": "Usage Instructions"},
|
||||
{"src": "UsageInstructions/ChangeColorScheme.htm", "name": "Change color scheme"},
|
||||
{"src": "UsageInstructions/CopyPasteUndoRedo.htm", "name": "Copy/paste text passages, undo/redo your actions"},
|
||||
{"src": "UsageInstructions/NonprintingCharacters.htm", "name": "Show/hide nonprinting characters"},
|
||||
{"src": "UsageInstructions/AlignText.htm", "name": "Align your text in a paragraph"},
|
||||
{"src": "UsageInstructions/FormattingPresets.htm", "name": "Apply formatting styles"},
|
||||
{"src": "UsageInstructions/BackgroundColor.htm", "name": "Select background color for a paragraph"},
|
||||
{"src": "UsageInstructions/ParagraphIndents.htm", "name": "Change paragraph indents"},
|
||||
{"src": "UsageInstructions/LineSpacing.htm", "name": "Set paragraph line spacing"},
|
||||
{"src": "UsageInstructions/PageBreaks.htm", "name": "Insert page breaks"},
|
||||
{"src": "UsageInstructions/SectionBreaks.htm", "name": "Insert section breaks"},
|
||||
{"src": "UsageInstructions/AddBorders.htm", "name": "Add borders"},
|
||||
{"src": "UsageInstructions/FontTypeSizeColor.htm", "name": "Set font type, size, and color"},
|
||||
{"src": "UsageInstructions/DecorationStyles.htm", "name": "Apply font decoration styles"},
|
||||
{"src": "UsageInstructions/CopyClearFormatting.htm", "name": "Copy/clear text formatting"},
|
||||
{"src": "UsageInstructions/SetTabStops.htm", "name": "Set tab stops"},
|
||||
{"src": "UsageInstructions/CreateLists.htm", "name": "Create lists"},
|
||||
{"src": "UsageInstructions/InsertTables.htm", "name": "Insert tables"},
|
||||
{"src": "UsageInstructions/InsertImages.htm", "name": "Insert images"},
|
||||
{"src": "UsageInstructions/InsertAutoshapes.htm", "name": "Insert autoshapes"},
|
||||
{"src": "UsageInstructions/InsertCharts.htm", "name": "Insert charts"},
|
||||
{"src": "UsageInstructions/AddHyperlinks.htm", "name": "Add hyperlinks"},
|
||||
{"src": "UsageInstructions/InsertDropCap.htm", "name": "Insert a drop cap"},
|
||||
{"src": "UsageInstructions/InsertHeadersFooters.htm", "name": "Insert headers and footers"},
|
||||
{"src":"UsageInstructions/InsertPageNumbers.htm", "name": "Insert page numbers" },
|
||||
{"src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations" },
|
||||
{"src": "UsageInstructions/InsertTextObjects.htm", "name": "Insert text objects" },
|
||||
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge"},
|
||||
{"src": "UsageInstructions/ViewDocInfo.htm", "name": "View document information"},
|
||||
{"src": "UsageInstructions/SavePrintDownload.htm", "name": "Save/download/print your document"},
|
||||
{"src": "UsageInstructions/OpenCreateNew.htm", "name": "Create a new document or open an existing one"},
|
||||
{"src": "HelpfulHints/About.htm", "name": "About Document Editor", "headername": "Helpful Hints"},
|
||||
{"src": "HelpfulHints/SupportedFormats.htm", "name": "Supported Formats of Electronic Documents"},
|
||||
{"src": "HelpfulHints/AdvancedSettings.htm", "name": "Advanced Settings of Document Editor"},
|
||||
{"src": "HelpfulHints/Navigation.htm", "name": "View Settings and Navigation Tools"},
|
||||
{"src": "HelpfulHints/Search.htm", "name": "Search and Replace Function"},
|
||||
{"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative Document Editing"},
|
||||
{"src": "HelpfulHints/Review.htm", "name": "Document Review"},
|
||||
{"src": "HelpfulHints/SpellChecking.htm", "name": "Spell-checking"},
|
||||
{"src": "HelpfulHints/KeyboardShortcuts.htm", "name": "Keyboard Shortcuts"}
|
||||
]
|
||||
[{"src":"UsageInstructions/SetPageParameters.htm","name":"Set page parameters","headername":"Usage Instructions"},{"src":"UsageInstructions/ChangeColorScheme.htm","name":"Change color scheme"},{"src":"UsageInstructions/CopyPasteUndoRedo.htm","name":"Copy/paste text passages, undo/redo your actions"},{"src":"UsageInstructions/NonprintingCharacters.htm","name":"Show/hide nonprinting characters"},{"src":"UsageInstructions/AlignText.htm","name":"Align your text in a paragraph"},{"src":"UsageInstructions/FormattingPresets.htm","name":"Apply formatting styles"},{"src":"UsageInstructions/BackgroundColor.htm","name":"Select background color for a paragraph"},{"src":"UsageInstructions/ParagraphIndents.htm","name":"Change paragraph indents"},{"src":"UsageInstructions/LineSpacing.htm","name":"Set paragraph line spacing"},{"src":"UsageInstructions/PageBreaks.htm","name":"Insert page breaks"},{"src":"UsageInstructions/SectionBreaks.htm","name":"Insert section breaks"},{"src":"UsageInstructions/AddBorders.htm","name":"Add borders"},{"src":"UsageInstructions/FontTypeSizeColor.htm","name":"Set font type, size, and color"},{"src":"UsageInstructions/DecorationStyles.htm","name":"Apply font decoration styles"},{"src":"UsageInstructions/CopyClearFormatting.htm","name":"Copy/clear text formatting"},{"src":"UsageInstructions/SetTabStops.htm","name":"Set tab stops"},{"src":"UsageInstructions/CreateLists.htm","name":"Create lists"},{"src":"UsageInstructions/InsertTables.htm","name":"Insert tables"},{"src":"UsageInstructions/InsertImages.htm","name":"Insert images"},{"src":"UsageInstructions/InsertAutoshapes.htm","name":"Insert autoshapes"},{"src":"UsageInstructions/InsertCharts.htm","name":"Insert charts"},{"src":"UsageInstructions/AddHyperlinks.htm","name":"Add hyperlinks"},{"src":"UsageInstructions/InsertDropCap.htm","name":"Insert a drop cap"},{"src":"UsageInstructions/InsertHeadersFooters.htm","name":"Insert headers and footers"},{"src":"UsageInstructions/InsertPageNumbers.htm","name":"Insert page numbers"},{"src":"UsageInstructions/InsertFootnotes.htm","name":"Insert footnotes"},{"src":"UsageInstructions/InsertEquation.htm","name":"Insert equations"},{"src":"UsageInstructions/InsertTextObjects.htm","name":"Insert text objects"},{"src":"UsageInstructions/UseMailMerge.htm","name":"Use mail merge"},{"src":"UsageInstructions/ViewDocInfo.htm","name":"View document information"},{"src":"UsageInstructions/SavePrintDownload.htm","name":"Save/download/print your document"},{"src":"UsageInstructions/OpenCreateNew.htm","name":"Create a new document or open an existing one"},{"src":"HelpfulHints/About.htm","name":"About Document Editor","headername":"Helpful Hints"},{"src":"HelpfulHints/SupportedFormats.htm","name":"Supported Formats of Electronic Documents"},{"src":"HelpfulHints/AdvancedSettings.htm","name":"Advanced Settings of Document Editor"},{"src":"HelpfulHints/Navigation.htm","name":"View Settings and Navigation Tools"},{"src":"HelpfulHints/Search.htm","name":"Search and Replace Function"},{"src":"HelpfulHints/CollaborativeEditing.htm","name":"Collaborative Document Editing"},{"src":"HelpfulHints/Review.htm","name":"Document Review"},{"src":"HelpfulHints/SpellChecking.htm","name":"Spell-checking"},{"src":"HelpfulHints/KeyboardShortcuts.htm","name":"Keyboard Shortcuts"}]
|
||||
@@ -12,7 +12,12 @@
|
||||
<p><b>Document Editor</b> lets you change its advanced settings. To access them, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Advanced Settings...</b> option. You can also use the <img alt="Advanced Settings icon" src="../images/advanced_settings_icon.png" /> icon in the right upper corner of the top toolbar.</p>
|
||||
<p>The advanced settings are:</p>
|
||||
<ul>
|
||||
<li><b>Commenting Display</b><sup class="oOfficeFeatures">*</sup> is used to turn on/off the live commenting option. If you disable this feature, the commented passages will be highlighted only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li>
|
||||
<li><b>Commenting Display</b> is used to turn on/off the live commenting option:
|
||||
<ul>
|
||||
<li><b>Turn on display of the comments</b> - if you disable this feature, the commented passages will be highlighted only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar.</li>
|
||||
<li><b>Turn on display of the resolved comments</b> - if you disable this feature, the resolved comments will be hidden in the document text. You'll be able to view such comments only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Spell Checking</b> is used to turn on/off the spell checking option.</li>
|
||||
<li><b>Alternate Input</b> is used to turn on/off hieroglyphs.</li>
|
||||
<li><b>Alignment Guides</b> is used to turn on/off alignment guides that appear when you move objects and allow you to position them on the page precisely.</li>
|
||||
@@ -43,7 +48,6 @@
|
||||
<li><b>Unit of Measurement</b> is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the <b>Centimeter</b>, <b>Point</b>, or <b>Inch</b> option.</li>
|
||||
</ul>
|
||||
<p>To save the changes you made, click the <b>Apply</b> button.</p>
|
||||
<p class="oOfficeFeatures"><sup>*</sup>available for paid versions only</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -26,7 +26,7 @@
|
||||
<p>When no users are viewing or editing the file, the icon in the status bar will look like <img alt="Manage document access rights icon" src="../images/access_rights.png" /> allowing you to manage the users who have access to the file right from the document: invite new users giving them either full or read-only access, or denying some users access rights to the file. Click this icon to manage the access to the file; this can be done both when there are no other users who view or co-edit the document at the moment and when there are other users and the icon looks like <img alt="Number of users icon" src="../images/usersnumber.png" />.</p>
|
||||
<p>As soon as one of the users saves his/her changes by clicking the <img alt="Save icon" src="../images/savewhilecoediting.png" /> icon, the others will see a note within the status bar stating that they have updates. To save the changes you made, so that other users can view them, and get the updates saved by your co-editors, click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar. The updates will be highlighted for you to check what exactly has been changed.</p>
|
||||
<p>You can specify what changes you want to be highlighted during co-editing if you click the <img alt="File icon" src="../images/file.png" /> icon at the left sidebar, select the <b>Advanced Settings...</b> option and choose between <b>none</b>, <b>all</b> and <b>last</b> realtime collaboration changes. Selecting <b>View all</b> changes, all the changes made during the current session will be highlighted. Selecting <b>View last</b> changes, only the changes made since you last time clicked the <img alt="Save icon" src="../images/saveupdate.png" /> icon will be highlighted. Selecting <b>View None</b> changes, changes made during the current session will not be highlighted.</p>
|
||||
<h3>Chat<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
|
||||
<h3>Chat</h3>
|
||||
<p>You can use this tool to coordinate the co-editing process on-the-fly, for example, to arrange with your collaborators about who is doing what, which paragraph you are going to edit now etc.</p>
|
||||
<p>The chat messages are stored during one session only. To discuss the document content it is better to use comments which are stored until you decide to delete them.</p>
|
||||
<p>To access the chat and leave a message for other users,</p>
|
||||
@@ -38,7 +38,7 @@
|
||||
<p>All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - <img alt="Chat icon" src="../images/chaticon_new.png" />.</p>
|
||||
<p>To close the panel with chat messages, click the <img alt="Chat icon" src="../images/chaticon.png" /> icon once again.</p>
|
||||
</div>
|
||||
<h3>Comments<a class="sup_link oOfficeFeatures" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
|
||||
<h3>Comments</h3>
|
||||
<p>To leave a comment,</p>
|
||||
<ol>
|
||||
<li>select a text passage where you think there is an error or problem,</li>
|
||||
@@ -50,16 +50,15 @@
|
||||
<li>click the <b>Add Comment/Add</b> button.</li>
|
||||
</ol>
|
||||
<p>The comment will be seen on the panel on the left. Any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, click the <b>Add Reply</b> link situated under the comment.</p>
|
||||
<p>The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on live commenting option</b> box. In this case the commented passages will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p>
|
||||
<p>The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on display of the comments</b> box. In this case the commented passages will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p>
|
||||
<p>You can manage the comments you added in the following way:</p>
|
||||
<ul>
|
||||
<li>edit them by clicking the <img alt="Edit icon" src="../images/editcommenticon.png" /> icon,</li>
|
||||
<li>delete them by clicking the <img alt="Delete icon" src="../images/deletecommenticon.png" /> icon,</li>
|
||||
<li>close the discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon.</li>
|
||||
<li>close the discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon. If you want to hide resolved comments, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on display of the resolved comments</b> box. In this case the resolved comments will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li>
|
||||
</ul>
|
||||
<p>New comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p>
|
||||
<p>If you are using the <b>Strict</b> co-editing mode, new comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p>
|
||||
<p>To close the panel with comments, click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon once again.</p>
|
||||
<p class="oOfficeFeatures"><sup id="footnote">*</sup>available for paid versions only</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -25,17 +25,17 @@
|
||||
<td>Open the <b>Search</b> panel to start searching for a character/word/phrase in the currently edited document.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Open 'Comments' panel<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
|
||||
<td>Open 'Comments' panel</td>
|
||||
<td>Ctrl+Shift+H</td>
|
||||
<td>Open the <b>Comments</b> panel to add your own comment or reply to other users' comments.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Open comment field<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
|
||||
<td>Open comment field</td>
|
||||
<td>Alt+H</td>
|
||||
<td>Open a data entry field where you can add the text of your comment.</td>
|
||||
</tr>
|
||||
<tr class="onlineDocumentFeatures">
|
||||
<td>Open 'Chat' panel<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
|
||||
<td>Open 'Chat' panel</td>
|
||||
<td>Alt+Q</td>
|
||||
<td>Open the <b>Chat</b> panel and send a message.</td>
|
||||
</tr>
|
||||
@@ -342,12 +342,11 @@
|
||||
<td>Maintain the proportions of the selected object when resizing.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Movement by three-pixel increments</td>
|
||||
<td>Movement by one-pixel increments</td>
|
||||
<td>Ctrl</td>
|
||||
<td>Hold down the Ctrl key and use the keybord arrows to move the selected object by three pixels at a time.</td>
|
||||
<td>Hold down the Ctrl key and use the keybord arrows to move the selected object by one pixel at a time.</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p class="oOfficeFeatures"><sup id="footnote">*</sup> - available for paid versions only</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -9,6 +9,7 @@
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>Copy/paste text passages, undo/redo your actions</h1>
|
||||
<h3>Use basic clipboard operations</h3>
|
||||
<p>To cut, copy and paste text passages and inserted objects (autoshapes, images, charts) within the current document use the corresponding options from the right-click menu or icons at the top toolbar:</p>
|
||||
<ul>
|
||||
<li><b>Cut</b> – select a text fragment or an object and use the <b>Cut</b> option from the right-click menu to delete the selection and send it to the computer clipboard memory. The cut data can be later inserted to another place in the same document.</li>
|
||||
@@ -23,6 +24,14 @@
|
||||
<li><b>Ctrl+V</b> key combination for pasting.</li>
|
||||
</ul>
|
||||
<p class="note"><b>Note</b>: instead of cutting and pasting text within the same document you can just select the necessary text passage and drag and drop it to the necessary position.</p>
|
||||
<h3>Use the Paste Special feature</h3>
|
||||
<p>Once the copied text is pasted, the <b>Paste Special</b> <img alt="Paste Special" src="../images/pastespecialbutton.png" /> button appears next to the inserted text passage. Click this button to select the necessary paste option. </p>
|
||||
<p>When pasting the paragraph text or some text within autoshapes, the following options are available:</p>
|
||||
<ul>
|
||||
<li><em>Paste</em> - allows to paste the copied text keeping its original formatting.</li>
|
||||
<li><em>Keep text only</em> - allows to paste the text without its original formatting.</li>
|
||||
</ul>
|
||||
<h3>Undo/redo your actions</h3>
|
||||
<p>To perform the undo/redo operations, use the corresponding icons at the top toolbar or keyboard shortcuts:</p>
|
||||
<ul>
|
||||
<li><b>Undo</b> – use the <b>Undo</b> <img alt="Undo icon" src="../images/undo.png" /> icon at the top toolbar or the <b>Ctrl+Z</b> key combination to undo the last operation you performed.</li>
|
||||
|
||||
@@ -183,6 +183,8 @@
|
||||
<p><img alt="Shape - Advanced Settings" src="../images/shape_properties_4.png" /></p>
|
||||
<p>The <b>Text Padding</b> tab allows to change the autoshape <b>Top</b>, <b>Bottom</b>, <b>Left</b> and <b>Right</b> internal margins (i.e. the distance between the text within the shape and the autoshape borders).</p>
|
||||
<p class="note"><b>Note</b>: this tab is only available if text is added within the autoshape, otherwise the tab is disabled.</p>
|
||||
<p><img alt="Shape - Advanced Settings" src="../images/shape_properties_5.png" /></p>
|
||||
<p>The <b>Alternative Text</b> tab allows to specify a <b>Title</b> and <b>Description</b> which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the shape.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -158,6 +158,8 @@
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<p><img alt="Chart - Advanced Settings" src="../images/chartsettings5.png" /></p>
|
||||
<p>The <b>Alternative Text</b> tab allows to specify a <b>Title</b> and <b>Description</b> which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the chart.</p>
|
||||
</li>
|
||||
</ol>
|
||||
<hr />
|
||||
@@ -242,6 +244,8 @@
|
||||
<li><b>Move object with text</b> controls whether the chart moves as the text to which it is anchored moves.</li>
|
||||
<li><b>Allow overlap</b> controls whether two charts overlap or not if you drag them near each other on the page.</li>
|
||||
</ul>
|
||||
<p><img alt="Chart - Advanced Settings" src="../images/chart_properties_3.png" /></p>
|
||||
<p>The <b>Alternative Text</b> tab allows to specify a <b>Title</b> and <b>Description</b> which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the chart.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,77 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Insert footnotes</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="Insert footnotes to provide explanations for some terms or make references to the sources" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
<script type="text/javascript" src="../callback.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>Insert footnotes</h1>
|
||||
<p>You can add footnotes to provide explanations or comments for certain sentences or terms used in your text, make references to the sources etc.</p>
|
||||
<p>To insert a footnote into your document,</p>
|
||||
<ol>
|
||||
<li>position the insertion point at the end of the text passage that you want to add a footnote to,</li>
|
||||
<li>click the <b>Footnotes</b> <img alt="Footnotes icon" src="../images/addfootnote.png" /> icon at the top toolbar, or<br/>
|
||||
click the arrow next to the <b>Footnotes</b> <img alt="Footnotes icon" src="../images/footnotes.png" /> icon and select the <b>Insert Footnote</b> option from the menu,
|
||||
<p>The footnote mark (i.e. the superscript character that indicates a footnote) appears in the document text and the insertion point moves to the bottom of the current page.</p>
|
||||
</li>
|
||||
<li>type in the footnote text.</li>
|
||||
</ol>
|
||||
<p>Repeat the above mentioned operations to add subsequent footnotes for other text passages in the document. The footnotes are numbered automatically.</p>
|
||||
<p><img alt="Footnotes" src="../images/footnotesadded.png" /></p>
|
||||
<p>If you hover the mouse pointer over the footnote mark in the document text, a small pop-up window with the footnote text appears.</p>
|
||||
<p><img alt="Footnote text" src="../images/footnotetext.png" /></p>
|
||||
<p>To easily navigate between the added footnotes within the document text,</p>
|
||||
<ol>
|
||||
<li>click the arrow next to the <b>Footnotes</b> <img alt="Footnotes icon" src="../images/footnotes.png" /> icon,</li>
|
||||
<li>in the <b>Go to Footnotes</b> section, use the <img alt="Previous footnote icon" src="../images/previousfootnote.png" /> arrow to go to the previous footnote or the <img alt="Next footnote icon" src="../images/nextfootnote.png" /> arrow to go to the next footnote.</li>
|
||||
</ol>
|
||||
<hr />
|
||||
<p>To edit the footnotes settings,</p>
|
||||
<ol>
|
||||
<li>click the arrow next to the <b>Footnotes</b> <img alt="Footnotes icon" src="../images/footnotes.png" /> icon at the top toolbar,</li>
|
||||
<li>select the <b>Notes Settings</b> option from the menu,</li>
|
||||
<li>change the current parameters in the <b>Notes Settings</b> window that opens:
|
||||
<p><img alt="Footnotes Settings window" src="../images/footnotes_settings.png" /></p>
|
||||
<ul>
|
||||
<li>Set the <b>Location</b> of footnotes on the page selecting one of the available options:
|
||||
<ul>
|
||||
<li><b>Bottom of page</b> - to position footnotes at the bottom of the page (this option is selected by default).</li>
|
||||
<li><b>Below text</b> - to position footnotes closer to the text. This option can be useful in cases when the page contains a short text.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Adjust the footnotes <b>Format</b>:
|
||||
<ul>
|
||||
<li><b>Number Format</b> - select the necessary number format from the available ones: <em>1, 2, 3,...</em>, <em>a, b, c,...</em>, <em>A, B, C,...</em>, <em>i, ii, iii,...</em>, <em>I, II, III,...</em>.</li>
|
||||
<li><b>Start at</b> - use the arrows to set the number or letter you want to start numbering with.</li>
|
||||
<li><b>Numbering</b> - select a way to number your footnotes:
|
||||
<ul>
|
||||
<li><b>Continuous</b> - to number footnotes sequentially throughout the document,</li>
|
||||
<li><b>Restart each section</b> - to start footnote numbering with the number 1 (or some other specified character) at the beginning of each section,</li>
|
||||
<li><b>Restart each page</b> - to start footnote numbering with the number 1 (or some other specified character) at the beginning of each page.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Custom Mark</b> - set a special character or a word you want to use as the footnote mark (e.g. * or Note1). Enter the necessary character/word into the text entry field and click the <b>Insert</b> button at the bottom of the <b>Notes Settings</b> window.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Use the <b>Apply changes to</b> drop-down list to select if you want to apply the specified notes settings to the <b>Whole document</b> or the <b>Current section</b> only.
|
||||
<p class="note"><b>Note</b>: to use different footnotes formatting in separate parts of the document, you need to add <a href="../UsageInstructions/SectionBreaks.htm" onclick="onhyperlinkclick(this)">section breaks</a> first.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>When ready, click the <b>Apply</b> button.</li>
|
||||
</ol>
|
||||
|
||||
<hr />
|
||||
<p>To remove a single footnote, position the insertion point directly before the footnote mark in the document text and press <b>Delete</b>. Other footnotes will be renumbered automatically.</p>
|
||||
<p>To delete all the footnotes in the document,</p>
|
||||
<ol>
|
||||
<li>click the arrow next to the <b>Footnotes</b> <img alt="Footnotes icon" src="../images/footnotes.png" /> icon at the top toolbar,</li>
|
||||
<li>select the <b>Delete All Footnotes</b> option from the menu.</li>
|
||||
</ol>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -46,7 +46,7 @@
|
||||
<li><b>Image Advanced Settings</b> is used to open the 'Image - Advanced Settings' window.</li>
|
||||
</ul>
|
||||
<hr />
|
||||
<p>To change its advanced settings, click the image with the right mouse button and select <b>Advanced Settings</b> from the right-click menu or just click the <b>Show advanced settings</b> link at the right sidebar. The image properties window will open:</p>
|
||||
<p>To change its advanced settings, click the image with the right mouse button and select the <b>Image Advanced Settings</b> option from the right-click menu or just click the <b>Show advanced settings</b> link at the right sidebar. The image properties window will open:</p>
|
||||
<p><img alt="Image - Advanced Settings: Size" src="../images/image_properties.png" /></p>
|
||||
<p>The <b>Size</b> tab contains the following parameters:</p>
|
||||
<ul>
|
||||
@@ -92,6 +92,8 @@
|
||||
<li><b>Move object with text</b> controls whether the image moves as the text to which it is anchored moves.</li>
|
||||
<li><b>Allow overlap</b> controls whether two images overlap or not if you drag them near each other on the page.</li>
|
||||
</ul>
|
||||
<p><img alt="Image - Advanced Settings" src="../images/image_properties_3.png" /></p>
|
||||
<p>The <b>Alternative Text</b> tab allows to specify a <b>Title</b> and <b>Description</b> which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -37,7 +37,7 @@
|
||||
<li>Set the <b>Position</b> of page numbers on the page as well as relative to the top and bottom of the page.</li>
|
||||
<li>Check the <b>Different first page</b> box to apply a different page number to the very first page or in case you don't want to add any number to it at all. </li>
|
||||
<li>Use the <b>Different odd and even pages</b> box to insert different page numbers for odd and even pages. </li>
|
||||
<li>The <b>Link to Previous</b> option is available in case you've previously added <a href="../UsageInstructions/SectionBreaks.htm" onclick="onhyperlinkclick(this)">sections</a> into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that unified numbering is applied to all the sections. If you select a header or footer area, you will see that the area is marked with the <b>Same as Previous</b> label. Uncheck the <b>Link to Previous</b> box to use different page numbering for each section of the document, for example, to start each section numbering at 1. The <b>Same as Previous</b> label will no longer be displayed.</li>
|
||||
<li>The <b>Link to Previous</b> option is available in case you've previously added <a href="../UsageInstructions/SectionBreaks.htm" onclick="onhyperlinkclick(this)">sections</a> into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that unified numbering is applied to all the sections. If you select a header or footer area, you will see that the area is marked with the <b>Same as Previous</b> label. Uncheck the <b>Link to Previous</b> box to use different page numbering for each section of the document. The <b>Same as Previous</b> label will no longer be displayed.</li>
|
||||
</ul>
|
||||
<p><img alt="Same as previous label" src="../images/sameasprevious_label.png" /></p>
|
||||
</li>
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Create forms</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="Insert rich text content controls to create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
<script type="text/javascript" src="../callback.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>Create forms</h1>
|
||||
<p>Using rich text content controls you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted. Rich text content controls are objects containing text that can be formatted. Inline controls cannot contain more than one paragraph, while floating controls can contain several paragraphs, lists, and objects (images, shapes, tables etc.). </p>
|
||||
<h3>Adding controls</h3>
|
||||
<p>To create a new <b>inline</b> control,</p>
|
||||
<ol>
|
||||
<li>position the insertion point within a line of the text where you want the control to be added,<br />or select a text passage you want to become the control contents.</li>
|
||||
<li>press <b>Shift+F1</b></li>
|
||||
</ol>
|
||||
<p>The control will be inserted at the insertion point within a line of the existing text. Inline controls do not allow adding line breaks and cannot contain other objects such as images, tables etc.</p>
|
||||
<p><img alt="New inline content control" src="../images/addedcontentcontrol.png" /></p>
|
||||
<p>To create a new <b>floating</b> control,</p>
|
||||
<ol>
|
||||
<li>position the insertion point at the end of a paragraph after which you want the control to be added,<br />or select one or more of the existing paragraphs you want to become the control contents.</li>
|
||||
<li>press <b>Shift+F2</b></li>
|
||||
</ol>
|
||||
<p>The control will be inserted in a new paragraph. Floating controls allow adding line breaks, i.e. can contain multiple paragraphs as well as some objects, such as images, tables, other content controls etc.</p>
|
||||
<p><img alt="Floating content control" src="../images/floatingcontentcontrol.png" /></p>
|
||||
<p class="note"><b>Note</b>: The content control border is visible when the control is selected only. The borders do not appear on a printed version.</p>
|
||||
<h3>Moving controls</h3>
|
||||
<p>Controls can be <b>moved</b> to another place in the document: click the button to the left of the control border to select the control and drag it without releasing the mouse button to another position in the document text.</p>
|
||||
<p><img alt="Moving content control" src="../images/movecontentcontrol.png" /></p>
|
||||
<p>You can also <b>copy and paste</b> inline controls: select the necessary control and use the <b>Ctrl+C/Ctrl+V</b> key combinations.</p>
|
||||
<h3>Editing control contents</h3>
|
||||
<p>To switch to the control editing mode, press <b>Shift+F9</b>. You will be able to navigate between the controls only using the keyboard arrow buttons. <!--To exit from this mode and be able to edit regular text in your document--></p>
|
||||
<p>Replace the default text within the control ("Your text here") with your own one: select the default text, press the <b>Delete</b> key and type in a new text or copy a text passage from anywhere and paste it into the content control.</p>
|
||||
<p>Text within the rich text content control of any type (both inline and floating) can be formatted using the icons on the top toolbar: you can adjust the <a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">font type, size, color</a>, apply <a href="../UsageInstructions/DecorationStyles.htm" onclick="onhyperlinkclick(this)">decoration styles</a> and <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">formatting presets</a>. It's also possible to use the <b>Paragraph - Advanced settings</b> window accessible from the contextual menu or from the right sidebar to change the text properties. Text within floating controls can be formatted like a regular text of the document, i.e. you can set <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">line spacing</a>, change <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">paragraph indents</a>, adjust <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">tab stops</a>.</p>
|
||||
<h3>Protecting controls</h3>
|
||||
<p>You can prevent users from editing or deleting some individual content controls. Use one of the following keyboard shortcuts:</p>
|
||||
<ul>
|
||||
<li>To protect a control from being edited (but not from being deleted), select the necessary control and press <b>Shift+F6</b></li>
|
||||
<li>To protect a control from being deleted (but not from being edited), select the necessary control and press <b>Shift+F7</b></li>
|
||||
<li>To protect a control from being both edited and deleted, select the necessary control and press <b>Shift+F8</b></li>
|
||||
<li>To disable the protection from editing/deleting, select the necessary control and press <b>Shift+F5</b></li>
|
||||
</ul>
|
||||
<h3>Removing controls</h3>
|
||||
<p>If you do not need a control anymore, you can use one of the following keyboard shortcuts:</p>
|
||||
<ul>
|
||||
<li>To remove a control and all its contents, select the necessary control and press <b>Shift+F3</b></li>
|
||||
<li>To remove a control and leave all its contents, select the necessary control and press <b>Shift+F4</b></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -64,7 +64,7 @@
|
||||
</li>
|
||||
<li><p><b>Select from Template</b> is used to choose a table template from the available ones.</p></li>
|
||||
<li><p><b>Borders Style</b> is used to select the border size, color, style as well as background color.</p></li>
|
||||
<li><p><b>Text Wrapping</b> is used to select between two text wrapping styles - inline and flow.</p></li>
|
||||
<li><p><b>Wrapping Style</b> is used to select between two text wrapping styles - inline and flow.</p></li>
|
||||
<li><p><b>Rows & Columns</b> is used to perform some operations with the table: select, delete, insert rows and columns, merge cells, split a cell.</p></li>
|
||||
<li><p><b>Repeat as header row at the top of each page</b> is used to insert the same header row at the top of each page in long tables.</p></li>
|
||||
<li><p><b>Show advanced settings</b> is used to open the 'Table - Advanced Settings' window.</p></li>
|
||||
@@ -149,7 +149,9 @@
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p><img alt="Table - Advanced Settings" src="../images/table_properties_6.png" /></p>
|
||||
<p>The <b>Alternative Text</b> tab allows to specify a <b>Title</b> and <b>Description</b> which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the table.</p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -25,7 +25,8 @@
|
||||
<p>Select the necessary paragraph(s) and drag the indent markers along the ruler.</p>
|
||||
<ul>
|
||||
<li><b>First Line Indent</b> marker <img alt="First Line Indent marker" src="../images/firstline_indent.png" /> is used to set the offset from the left side of the page for the first line of the paragraph.</li>
|
||||
<li><b>Hanging Indent</b> marker <img alt="Hanging Indent marker" src="../images/hanging.png" /> is used to set the offset from the left side of the page for the second and all the subsequent lines of the paragraph.</li>
|
||||
<li><b>Hanging Indent</b> marker <img alt="Hanging Indent marker" src="../images/hanging.png" /> is used to set the offset from the left side of the page for the second line and all the subsequent lines of the paragraph.</li>
|
||||
<li><b>Left Indent</b> marker <img alt="Left Indent marker" src="../images/leftindent.png" /> is used to set the entire paragraph offset from the left side of the page.</li>
|
||||
<li><b>Right Indent</b> marker <img alt="Right Indent marker" src="../images/right_indent.png" /> is used to set the paragraph offset from the right side of the page.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>Insert section breaks</h1>
|
||||
<p>Section breaks allow you to apply a different layout or formatting for the certain parts of your document. For example, you can use individual <a href="../UsageInstructions/InsertHeadersFooters.htm" onclick="onhyperlinkclick(this)">headers and footers</a>, <a href="../UsageInstructions/InsertPageNumbers.htm" onclick="onhyperlinkclick(this)">page numbering</a>, <a href="../UsageInstructions/SetPageParameters.htm" onclick="onhyperlinkclick(this)">margins, size, orientation, or column number</a> for each separate section.</p>
|
||||
<p>Section breaks allow you to apply a different layout or formatting for the certain parts of your document. For example, you can use individual <a href="../UsageInstructions/InsertHeadersFooters.htm" onclick="onhyperlinkclick(this)">headers and footers</a>, <a href="../UsageInstructions/InsertPageNumbers.htm" onclick="onhyperlinkclick(this)">page numbering</a>, <a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">footnotes format</a>, <a href="../UsageInstructions/SetPageParameters.htm" onclick="onhyperlinkclick(this)">margins, size, orientation, or column number</a> for each separate section.</p>
|
||||
<p class="note"><b>Note</b>: an inserted section break defines formatting of the preceding part of the document.</p>
|
||||
<p>To insert a section break at the current cursor position:</p>
|
||||
<ol>
|
||||
|
||||
@@ -46,6 +46,8 @@
|
||||
<li><b>Left</b> <img alt="Left column icon" src="../images/leftcolumn.png" /> - to add two columns: a narrow column on the left and a wide column on the right,</li>
|
||||
<li><b>Right</b> <img alt="Right column icon" src="../images/rightcolumn.png" /> - to add two columns: a narrow column on the right and a wide column on the left.</li>
|
||||
</ul>
|
||||
<p>If you want to adjust column settings, select the <b>Custom Columns</b> option from the list. The <b>Columns</b> window will open where you'll be able to set necessary <b>Number of columns</b> (it's possible to add up to 12 columns) and <b>Spacing between columns</b>. Enter your new values into the entry fields or adjust the existing values using arrow buttons. Check the <b>Column divider</b> box to add a vertical line between the columns. When ready, click <b>OK</b> to apply the changes.</p>
|
||||
<p><img alt="Custom Columns" src="../images/customcolumns.png" /></p>
|
||||
<p>To exactly specify where a new column should start, place the cursor before the text that you want to move into the new column, click the <b>Insert Page or Section Break</b> <img alt="Insert Page or Section Break" src="../images/pagebreak1.png" /> icon at the top toolbar and then select the <b>Insert Column Break</b> option. The text will be moved to the next column.</p>
|
||||
<p>Added column breaks are indicated in your document by a dotted line: <img alt="Column break" src="../images/columnbreak.png" />. If you do not see the inserted column breaks, click the <img alt="Nonprinting Characters icon" src="../images/nonprintingcharacters.png" /> icon at the top toolbar to display them. To remove a column break select it with the mouse and press the <b>Delete</b> key.</p>
|
||||
<p>To manually change the column width and spacing, you can use the horizontal ruler.</p>
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
<p>To access the detailed information about the currently edited document, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Document Info...</b> option.</p>
|
||||
<h3>General Information</h3>
|
||||
<p>The document information includes document title, author, location, creation date, and statistics: the number of pages, paragraphs, words, symbols, symbols with spaces.</p>
|
||||
<p class="note"><b>Note</b>: Online Editors allow you to change the document title directly from the editor interface. To do that, select the <b>Rename...</b> option from the <b>File</b> <img alt="File icon" src="../images/file.png" /> menu or click on the file name displayed in the editor header next to the logo (in the upper left corner), then enter the necessary <b>File name</b> in a new window that opens and click <b>OK</b>.</p>
|
||||
<div class="onlineDocumentFeatures">
|
||||
<h3>Permission Information</h3>
|
||||
<p class="note"><b>Note</b>: this option is not available for users with the <b>Read Only</b> permissions.</p>
|
||||
@@ -21,7 +22,7 @@
|
||||
<p class="note"><b>Note</b>: this option is not available for free accounts as well as for users with the <b>Read Only</b> permissions.</p>
|
||||
<p>To view all the changes made to this document, select the <b>Version History</b> option at the left sidebar. You'll see the list of this document versions (major changes) and revisions (minor changes) with the indication of each version/revision author and creation date and time. For document versions, the version number is also specified (e.g. <em>ver. 2</em>). To know exactly which changes have been made in each separate version/revision, you can view the one you need by clicking it at the left sidebar. The changes made by the version/revision author are marked with the color which is displayed next to the author name on the left sidebar. To return to the document current version, click the <b>Back to Document</b> link on the top of the version list.</p>
|
||||
</div>
|
||||
<p>To close the <b>File</b> panel and return to document editing, select the <b>Back to Document</b> option.</p>
|
||||
<p>To close the <b>File</b> panel and return to document editing, select the <b>Close Menu</b> option.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
*
|
||||
* (c) Copyright Ascensio System Limited 2010-2017
|
||||
* (c) Copyright Ascensio System Limited 2010-2018
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 416 B |
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 278 B |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 101 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 191 B |
|
After Width: | Height: | Size: 166 B |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 13 KiB |
@@ -1,42 +1 @@
|
||||
[
|
||||
{"src":"UsageInstructions/SetPageParameters.htm", "name": "Задание параметров страницы", "headername": "Инструкции по использованию"},
|
||||
{"src":"UsageInstructions/CopyPasteUndoRedo.htm", "name": "Копирование/вставка текста, отмена/повтор действий"},
|
||||
{"src":"UsageInstructions/NonprintingCharacters.htm", "name": "Отображение/скрытие непечатаемых символов"},
|
||||
{"src":"UsageInstructions/AlignText.htm", "name": "Выравнивание текста в абзаце"},
|
||||
{"src":"UsageInstructions/FormattingPresets.htm", "name": "Применение стилей форматирования"},
|
||||
{"src":"UsageInstructions/ChangeColorScheme.htm", "name": "Изменение цветовой схемы"},
|
||||
{"src":"UsageInstructions/BackgroundColor.htm", "name": "Выбор цвета фона для абзаца"},
|
||||
{"src":"UsageInstructions/ParagraphIndents.htm", "name": "Изменение отступов абзацев"},
|
||||
{"src":"UsageInstructions/LineSpacing.htm", "name": "Задание междустрочного интервала в абзацах"},
|
||||
{"src":"UsageInstructions/PageBreaks.htm", "name": "Вставка разрывов страниц"},
|
||||
{"src":"UsageInstructions/SectionBreaks.htm", "name": "Вставка разрывов раздела"},
|
||||
{"src":"UsageInstructions/AddBorders.htm", "name": "Добавление границ"},
|
||||
{"src":"UsageInstructions/FontTypeSizeColor.htm", "name": "Задание типа, размера и цвета шрифта"},
|
||||
{"src":"UsageInstructions/DecorationStyles.htm", "name": "Применение стилей оформления шрифта"},
|
||||
{"src":"UsageInstructions/CopyClearFormatting.htm", "name": "Копирование/очистка форматирования текста"},
|
||||
{"src":"UsageInstructions/SetTabStops.htm", "name": "Установка позиций табуляции"},
|
||||
{"src":"UsageInstructions/CreateLists.htm", "name": "Создание списков"},
|
||||
{"src":"UsageInstructions/InsertTables.htm", "name": "Вставка таблиц"},
|
||||
{"src":"UsageInstructions/InsertImages.htm", "name": "Вставка изображений"},
|
||||
{"src":"UsageInstructions/InsertAutoshapes.htm", "name": "Вставка автофигур"},
|
||||
{"src":"UsageInstructions/InsertCharts.htm", "name": "Вставка диаграмм"},
|
||||
{"src":"UsageInstructions/AddHyperlinks.htm", "name": "Добавление гиперссылок"},
|
||||
{"src":"UsageInstructions/InsertDropCap.htm", "name": "Вставка буквицы"},
|
||||
{"src":"UsageInstructions/InsertHeadersFooters.htm", "name": "Вставка колонтитулов"},
|
||||
{"src":"UsageInstructions/InsertPageNumbers.htm", "name": "Вставка номеров страниц" },
|
||||
{"src": "UsageInstructions/InsertEquation.htm", "name": "Вставка формул" },
|
||||
{"src": "UsageInstructions/InsertTextObjects.htm", "name": "Вставка текстовых объектов" },
|
||||
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Использование слияния"},
|
||||
{"src":"UsageInstructions/ViewDocInfo.htm", "name": "Просмотр сведений о документе"},
|
||||
{"src":"UsageInstructions/SavePrintDownload.htm", "name": "Сохранение/загрузка/печать документа"},
|
||||
{"src":"UsageInstructions/OpenCreateNew.htm", "name": "Создание нового документа или открытие существующего"},
|
||||
{"src":"HelpfulHints/About.htm", "name": "О редакторе документов", "headername": "Полезные советы"},
|
||||
{"src":"HelpfulHints/SupportedFormats.htm", "name": "Поддерживаемые форматы электронных документов"},
|
||||
{"src":"HelpfulHints/AdvancedSettings.htm", "name": "Дополнительные параметры редактора документов"},
|
||||
{"src":"HelpfulHints/Navigation.htm", "name": "Параметры представления и инструменты навигации"},
|
||||
{"src":"HelpfulHints/Search.htm", "name": "Функция поиска и замены"},
|
||||
{ "src": "HelpfulHints/CollaborativeEditing.htm", "name": "Совместное редактирование документа" },
|
||||
{"src": "HelpfulHints/Review.htm", "name": "Рецензирование документа"},
|
||||
{"src":"HelpfulHints/SpellChecking.htm", "name": "Проверка орфографии"},
|
||||
{"src":"HelpfulHints/KeyboardShortcuts.htm", "name": "Сочетания клавиш"}
|
||||
]
|
||||
[{"src":"UsageInstructions/SetPageParameters.htm","name":"Задание параметров страницы","headername":"Инструкции по использованию"},{"src":"UsageInstructions/CopyPasteUndoRedo.htm","name":"Копирование/вставка текста, отмена/повтор действий"},{"src":"UsageInstructions/NonprintingCharacters.htm","name":"Отображение/скрытие непечатаемых символов"},{"src":"UsageInstructions/AlignText.htm","name":"Выравнивание текста в абзаце"},{"src":"UsageInstructions/FormattingPresets.htm","name":"Применение стилей форматирования"},{"src":"UsageInstructions/ChangeColorScheme.htm","name":"Изменение цветовой схемы"},{"src":"UsageInstructions/BackgroundColor.htm","name":"Выбор цвета фона для абзаца"},{"src":"UsageInstructions/ParagraphIndents.htm","name":"Изменение отступов абзацев"},{"src":"UsageInstructions/LineSpacing.htm","name":"Задание междустрочного интервала в абзацах"},{"src":"UsageInstructions/PageBreaks.htm","name":"Вставка разрывов страниц"},{"src":"UsageInstructions/SectionBreaks.htm","name":"Вставка разрывов раздела"},{"src":"UsageInstructions/AddBorders.htm","name":"Добавление границ"},{"src":"UsageInstructions/FontTypeSizeColor.htm","name":"Задание типа, размера и цвета шрифта"},{"src":"UsageInstructions/DecorationStyles.htm","name":"Применение стилей оформления шрифта"},{"src":"UsageInstructions/CopyClearFormatting.htm","name":"Копирование/очистка форматирования текста"},{"src":"UsageInstructions/SetTabStops.htm","name":"Установка позиций табуляции"},{"src":"UsageInstructions/CreateLists.htm","name":"Создание списков"},{"src":"UsageInstructions/InsertTables.htm","name":"Вставка таблиц"},{"src":"UsageInstructions/InsertImages.htm","name":"Вставка изображений"},{"src":"UsageInstructions/InsertAutoshapes.htm","name":"Вставка автофигур"},{"src":"UsageInstructions/InsertCharts.htm","name":"Вставка диаграмм"},{"src":"UsageInstructions/AddHyperlinks.htm","name":"Добавление гиперссылок"},{"src":"UsageInstructions/InsertDropCap.htm","name":"Вставка буквицы"},{"src":"UsageInstructions/InsertHeadersFooters.htm","name":"Вставка колонтитулов"},{"src":"UsageInstructions/InsertPageNumbers.htm","name":"Вставка номеров страниц"},{"src":"UsageInstructions/InsertFootnotes.htm","name":"Вставка сносок"},{"src":"UsageInstructions/InsertEquation.htm","name":"Вставка формул"},{"src":"UsageInstructions/InsertTextObjects.htm","name":"Вставка текстовых объектов"},{"src":"UsageInstructions/UseMailMerge.htm","name":"Использование слияния"},{"src":"UsageInstructions/ViewDocInfo.htm","name":"Просмотр сведений о документе"},{"src":"UsageInstructions/SavePrintDownload.htm","name":"Сохранение/загрузка/печать документа"},{"src":"UsageInstructions/OpenCreateNew.htm","name":"Создание нового документа или открытие существующего"},{"src":"HelpfulHints/About.htm","name":"О редакторе документов","headername":"Полезные советы"},{"src":"HelpfulHints/SupportedFormats.htm","name":"Поддерживаемые форматы электронных документов"},{"src":"HelpfulHints/AdvancedSettings.htm","name":"Дополнительные параметры редактора документов"},{"src":"HelpfulHints/Navigation.htm","name":"Параметры представления и инструменты навигации"},{"src":"HelpfulHints/Search.htm","name":"Функция поиска и замены"},{"src":"HelpfulHints/CollaborativeEditing.htm","name":"Совместное редактирование документа"},{"src":"HelpfulHints/Review.htm","name":"Рецензирование документа"},{"src":"HelpfulHints/SpellChecking.htm","name":"Проверка орфографии"},{"src":"HelpfulHints/KeyboardShortcuts.htm","name":"Сочетания клавиш"}]
|
||||
@@ -12,7 +12,12 @@
|
||||
<p>Вы можете изменить дополнительные параметры онлайн-редактора документов. Для перехода к ним щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Дополнительные параметры...</b>. Можно также использовать значок <img alt="Значок Дополнительные параметры" src="../images/advanced_settings_icon.png" />, расположенный в правом верхнем углу верхней панели инструментов.</p>
|
||||
<p>Доступны следующие дополнительные параметры:</p>
|
||||
<ul>
|
||||
<li><b>Отображение комментариев</b><sup class="oOfficeFeatures">*</sup> - используется для включения/отключения опции комментирования в реальном времени. Если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</li>
|
||||
<li><b>Отображение комментариев</b> - используется для включения/отключения опции комментирования в реальном времени:
|
||||
<ul>
|
||||
<li><b>Включить отображение комментариев в тексте</b> - если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" /> на левой боковой панели.</li>
|
||||
<li><b>Включить отображение решенных комментариев</b> - если отключить эту функцию, решенные комментарии в тексте документа будут скрыты. Просмотреть такие комментарии можно будет только при нажатии на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" /> на левой боковой панели.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Проверка орфографии</b> - используется для включения/отключения опции проверки орфографии.</li>
|
||||
<li><b>Альтернативный ввод</b> - используется для включения/отключения иероглифов.</li>
|
||||
<li><b>Направляющие выравнивания</b> - используется для включения/отключения направляющих выравнивания, которые появляются при перемещении объектов и позволяют точно расположить их на странице.</li>
|
||||
@@ -41,7 +46,6 @@
|
||||
<li><b>Единица измерения</b> - используется для определения единиц, которые должны использоваться на линейках и в окнах свойств для измерения параметров элементов, таких как ширина, высота, интервалы, поля и т.д. Можно выбрать опцию <b>Сантиметр</b>, <b>Пункт</b> или <b>Дюйм</b>.</li>
|
||||
</ul>
|
||||
<p>Чтобы сохранить внесенные изменения, нажмите кнопку <b>Применить</b>.</p>
|
||||
<p class="oOfficeFeatures"><sup>*</sup>доступно только для платных версий</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -29,7 +29,7 @@
|
||||
<p>Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: <img alt="Значок Управление правами доступа к документу" src="../images/access_rights.png" />, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: <img alt="Значок Количество пользователей" src="../images/usersnumber.png" />.</p>
|
||||
<p>Как только один из пользователей сохранит свои изменения, нажав на значок <img alt="Значок Сохранить" src="../images/savewhilecoediting.png" />, все остальные увидят в строке состояния примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок <img alt="Значок Сохранить и получить обновления" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов. Обновления будут подсвечены, чтобы Вы могли проверить, что конкретно изменилось.</p>
|
||||
<p>Можно указать, какие изменения требуется подсвечивать во время совместного редактирования: для этого нажмите на значок <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели, выберите опцию <b>Дополнительные параметры...</b>, а затем укажите, отображать ли <b>все</b> или <b>последние</b> изменения, внесенные при совместной работе. При выборе опции <b>Все</b> будут подсвечиваться все изменения, внесенные за время текущей сессии. При выборе опции <b>Последние</b> будут подсвечиваться только те изменения, которые были внесены с момента, когда Вы последний раз нажимали на значок <img alt="Значок Сохранить и получить изменения" src="../images/saveupdate.png" />. При выборе опции <b>Никакие</b> изменения, внесенные во время текущей сессии, подсвечиваться не будут.</p>
|
||||
<h3>Чат<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
|
||||
<h3>Чат</h3>
|
||||
<p>Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.</p>
|
||||
<p>Сообщения в чате хранятся только в течение одной сессии. Для обсуждения содержания документа лучше использовать комментарии, которые хранятся до тех пор, пока вы не решите их удалить.</p>
|
||||
<p>Чтобы войти в чат и оставить сообщение для других пользователей:</p>
|
||||
@@ -41,7 +41,7 @@
|
||||
<p>Все сообщения, оставленные пользователями, будут отображаться на панели слева. Если есть новые сообщения, которые Вы еще не прочитали, значок чата будет выглядеть так - <img alt="Значок Чат" src="../images/chaticon_new.png" />.</p>
|
||||
<p>Чтобы закрыть панель с сообщениями чата, нажмите на значок <img alt="Значок Чат" src="../images/chaticon.png" /> еще раз.</p>
|
||||
</div>
|
||||
<h3>Комментарии<a class="sup_link oOfficeFeatures" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
|
||||
<h3>Комментарии</h3>
|
||||
<p>Чтобы оставить комментарий:</p>
|
||||
<ol>
|
||||
<li>выделите фрагмент текста, в котором, по Вашему мнению, содержится какая-то ошибка или проблема,</li>
|
||||
@@ -53,16 +53,15 @@
|
||||
<li>нажмите кнопку <b>Добавить</b>.</li>
|
||||
</ol>
|
||||
<p>Комментарий появится на панели слева. Любой другой пользователь может ответить на добавленный комментарий, чтобы дать ответ на вопросы или отчитаться о проделанной работе. Для этого надо нажать на ссылку <b>Добавить ответ</b>, расположенную под комментарием.</p>
|
||||
<p>Фрагмент текста, который Вы прокомментировали, будет подсвечен в документе. Для просмотра комментария щелкните по этому фрагменту. Если требуется отключить эту функцию, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить опцию комментирования в реальном времени</b>. В этом случае прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</p>
|
||||
<p>Фрагмент текста, который Вы прокомментировали, будет подсвечен в документе. Для просмотра комментария щелкните по этому фрагменту. Если требуется отключить эту функцию, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить отображение комментариев в тексте</b>. В этом случае прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</p>
|
||||
<p>Вы можете управлять добавленными комментариями следующим образом:</p>
|
||||
<ul>
|
||||
<li>отредактировать их, нажав значок <img alt="Значок Редактировать" src="../images/editcommenticon.png" />,</li>
|
||||
<li>удалить их, нажав значок <img alt="Значок Удалить" src="../images/deletecommenticon.png" />,</li>
|
||||
<li>закрыть обсуждение, нажав на значок <img alt="Значок Решить" src="../images/resolveicon.png" />, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок <img alt="Значок Открыть снова" src="../images/resolvedicon.png" />.</li>
|
||||
<li>закрыть обсуждение, нажав на значок <img alt="Значок Решить" src="../images/resolveicon.png" />, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок <img alt="Значок Открыть снова" src="../images/resolvedicon.png" />. Если Вы хотите скрыть решенные комментарии, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить отображение решенных комментариев</b>. В этом случае решенные комментарии будут подсвечиваться, только когда Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</li>
|
||||
</ul>
|
||||
<p>Новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок <img alt="Значок Сохранить и получить обновления" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p>
|
||||
<p>Если Вы используете <b>Строгий</b> режим совместного редактирования, новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок <img alt="Значок Сохранить и получить обновления" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p>
|
||||
<p>Чтобы закрыть панель с комментариями, нажмите на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" /> еще раз.</p>
|
||||
<p class="oOfficeFeatures"><sup id="footnote">*</sup>доступно только для платных версий</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -25,17 +25,17 @@
|
||||
<td>Открыть панель <b>Поиск</b>, чтобы начать поиск символа/слова/фразы в редактируемом документе.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Открыть панель 'Комментарии'<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
|
||||
<td>Открыть панель 'Комментарии'</td>
|
||||
<td>Ctrl+Shift+H</td>
|
||||
<td>Открыть панель <b>Комментарии</b>, чтобы добавить свой комментарий или ответить на комментарии других пользователей.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Открыть поле комментария<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
|
||||
<td>Открыть поле комментария</td>
|
||||
<td>Alt+H</td>
|
||||
<td>Открыть поле ввода данных, в котором можно добавить текст комментария.</td>
|
||||
</tr>
|
||||
<tr class="onlineDocumentFeatures">
|
||||
<td>Открыть панель 'Чат'<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
|
||||
<td>Открыть панель 'Чат'</td>
|
||||
<td>Alt+Q</td>
|
||||
<td>Открыть панель <b>Чат</b> и отправить сообщение.</td>
|
||||
</tr>
|
||||
@@ -340,12 +340,11 @@
|
||||
<td>Сохранять пропорции выбранного объекта при изменении размера.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Перемещение с шагом в три пикселя</td>
|
||||
<td>Перемещение с шагом в один пиксель</td>
|
||||
<td>Ctrl</td>
|
||||
<td>Удерживайте клавишу Ctrl и используйте стрелки на клавиатуре, чтобы перемещать выбранный объект на три пикселя за раз.</td>
|
||||
<td>Удерживайте клавишу Ctrl и используйте стрелки на клавиатуре, чтобы перемещать выбранный объект на один пиксель за раз.</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p class="oOfficeFeatures"><sup id="footnote">*</sup> - доступно только для платных версий</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -9,6 +9,7 @@
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>Копирование/вставка текста, отмена/повтор действий</h1>
|
||||
<h3>Использование основных операций с буфером обмена</h3>
|
||||
<p>Для выполнения операций вырезания, копирования и вставки фрагментов текста и вставленных объектов (автофигур, рисунков, диаграмм) в текущем документе используйте соответствующие команды контекстного меню или значки на верхней панели инструментов:</p>
|
||||
<ul>
|
||||
<li><b>Вырезать</b> – выделите фрагмент текста или объект и используйте опцию контекстного меню <b>Вырезать</b>, чтобы удалить выделенный фрагмент и отправить его в буфер обмена компьютера. Вырезанные данные можно затем вставить в другое место этого же документа.</li>
|
||||
@@ -22,6 +23,14 @@
|
||||
<li>сочетание клавиш <b>Ctrl+V</b> для вставки.</li>
|
||||
</ul>
|
||||
<p class="note"><b>Примечание</b>: вместо того чтобы вырезать и вставлять текст в рамках одного и того же документа, можно просто выделить нужный фрагмент текста и перетащить его мышкой в нужное место.</p>
|
||||
<h3>Использование функции Специальная вставка</h3>
|
||||
<p>После вставки скопированного текста рядом со вставленным фрагментом текста появляется кнопка <b>Специальная вставка</b> <img alt="Специальная вставка" src="../images/pastespecialbutton.png" />. Нажмите на эту кнопку, чтобы выбрать нужный параметр вставки. </p>
|
||||
<p>При вставке текста абзаца или текста в автофигурах доступны следующие параметры:</p>
|
||||
<ul>
|
||||
<li><em>Вставить</em> - позволяет вставить скопированный текст, сохранив его исходное форматирование.</li>
|
||||
<li><em>Сохранить только текст</em> - позволяет вставить текст без исходного форматирования.</li>
|
||||
</ul>
|
||||
<h3>Отмена / повтор действий</h3>
|
||||
<p>Для выполнения операций отмены/повтора используйте соответствующие значки на верхней панели инструментов или сочетания клавиш:</p>
|
||||
<ul>
|
||||
<li><b>Отменить</b> – чтобы отменить последнее выполненное действие, используйте значок <b>Отменить</b> <img alt="Значок Отменить" src="../images/undo.png" /> на верхней панели инструментов или сочетание клавиш <b>Ctrl+Z</b>.</li>
|
||||
|
||||
@@ -185,6 +185,8 @@
|
||||
<p><img alt="Фигура - Дополнительные параметры" src="../images/shape_properties_4.png" /></p>
|
||||
<p>На вкладке <b>Поля вокруг текста</b> можно изменить внутренние поля автофигуры <b>Сверху</b>, <b>Снизу</b>, <b>Слева</b> и <b>Справа</b> (то есть расстояние между текстом внутри фигуры и границами автофигуры).</p>
|
||||
<p class="note"><b>Примечание</b>: эта вкладка доступна, только если в автофигуру добавлен текст, в противном случае вкладка неактивна.</p>
|
||||
<p><img alt="Фигура - Дополнительные параметры" src="../images/shape_properties_5.png" /></p>
|
||||
<p>Вкладка <b>Альтернативный текст</b> позволяет задать <b>Заголовок</b> и <b>Описание</b>, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит фигура.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -275,6 +275,8 @@
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<p><img alt="Диаграмма - Дополнительные параметры" src="../images/chartsettings5.png" /></p>
|
||||
<p>Вкладка <b>Альтернативный текст</b> позволяет задать <b>Заголовок</b> и <b>Описание</b>, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит диаграмма.</p>
|
||||
</li>
|
||||
</ol>
|
||||
<hr />
|
||||
@@ -367,6 +369,8 @@
|
||||
<li>Опция <b>Перемещать с текстом</b> определяет, будет ли диаграмма перемещаться вместе с текстом, к которому она привязана.</li>
|
||||
<li>Опция <b>Разрешить перекрытие</b> определяет, будут ли перекрываться две диаграммы, если перетащить их близко друг к другу на странице.</li>
|
||||
</ul>
|
||||
<p><img alt="Диаграмма - Дополнительные параметры" src="../images/chart_properties_3.png" /></p>
|
||||
<p>Вкладка <b>Альтернативный текст</b> позволяет задать <b>Заголовок</b> и <b>Описание</b>, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит диаграмма.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,77 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Вставка сносок</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="Вставьте сноски, чтобы пояснить какие-то термины или указать ссылки на источники" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
<script type="text/javascript" src="../callback.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>Вставка сносок</h1>
|
||||
<p>Сноски можно добавлять, чтобы пояснить или прокомментировать какие-то фразы или термины, использованные в тексте, указать ссылки на источники и так далее.</p>
|
||||
<p>Чтобы вставить сноску в документ:</p>
|
||||
<ol>
|
||||
<li>установите курсор в конце фрагмента текста, к которому надо добавить сноску,</li>
|
||||
<li>нажмите на значок <b>Сноски</b> <img alt="Значок Сноски" src="../images/addfootnote.png" /> на верхней панели инструментов или<br/>
|
||||
нажмите на стрелку рядом со значком <b>Сноски</b> <img alt="Значок Сноски" src="../images/footnotes.png" /> и выберите в меню опцию <b>Вставить сноску</b>,
|
||||
<p>В тексте документа появится знак сноски (то есть надстрочный знак, обозначающий сноску), а курсор переместится в нижнюю часть текущей страницы.</p>
|
||||
</li>
|
||||
<li>введите текст сноски.</li>
|
||||
</ol>
|
||||
<p>Повторите вышеуказанные действия, чтобы добавить последующие сноски к другим фрагментам текста в документе. Сноски нумеруются автоматически.</p>
|
||||
<p><img alt="Сноски" src="../images/footnotesadded.png" /></p>
|
||||
<p>При наведении курсора на знак сноски в тексте документа появляется небольшое всплывающее окно с текстом сноски.</p>
|
||||
<p><img alt="Текст сноски" src="../images/footnotetext.png" /></p>
|
||||
<p>Чтобы легко переходить между добавленными сносками в тексте документа:</p>
|
||||
<ol>
|
||||
<li>нажмите на стрелку рядом со значком <b>Сноски</b> <img alt="Значок Сноски" src="../images/footnotes.png" />,</li>
|
||||
<li>в разделе <b>Перейти к сноскам</b> используйте стрелку <img alt="Значок Предыдущая сноска" src="../images/previousfootnote.png" /> для перехода к предыдущей сноске или стрелку <img alt="Значок Следующая сноска" src="../images/nextfootnote.png" /> для перехода к следующей сноске.</li>
|
||||
</ol>
|
||||
<hr />
|
||||
<p>Чтобы изменить параметры сносок:</p>
|
||||
<ol>
|
||||
<li>нажмите на стрелку рядом со значком <b>Сноски</b> <img alt="Значок Сноски" src="../images/footnotes.png" /> на верхней панели инструментов,</li>
|
||||
<li>выберите в меню опцию <b>Параметры сносок</b>,</li>
|
||||
<li>измените текущие параметры в открывшемся окне <b>Параметры сносок</b>:
|
||||
<p><img alt="Окно параметры сносок" src="../images/footnotes_settings.png" /></p>
|
||||
<ul>
|
||||
<li>Задайте <b>Положение</b> сносок на странице, выбрав один из доступных вариантов:
|
||||
<ul>
|
||||
<li><b>Внизу страницы</b> - чтобы расположить сноски внизу страницы (эта опция выбрана по умолчанию).</li>
|
||||
<li><b>Под текстом</b> - чтобы расположить сноски ближе к тексту. Эта опция может быть полезна в тех случаях, когда на странице содержится короткий текст.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Настройте <b>Формат</b> сносок:
|
||||
<ul>
|
||||
<li><b>Формат номера</b> - выберите нужный формат номера из доступных вариантов: <em>1, 2, 3,...</em>, <em>a, b, c,...</em>, <em>A, B, C,...</em>, <em>i, ii, iii,...</em>, <em>I, II, III,...</em>.</li>
|
||||
<li><b>Начать с</b> - используйте стрелки, чтобы задать цифру или букву, с которой должна начинаться нумерация.</li>
|
||||
<li><b>Нумерация</b> - выберите способ нумерации сносок:
|
||||
<ul>
|
||||
<li><b>Непрерывная</b> - чтобы нумеровать сноски последовательно во всем документе,</li>
|
||||
<li><b>В каждом разделе</b> - чтобы начинать нумерацию сносок с цифры 1 (или другого заданного символа) в начале каждого раздела,</li>
|
||||
<li><b>На каждой странице</b> - чтобы начинать нумерацию сносок с цифры 1 (или другого заданного символа) в начале каждой страницы.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Особый символ</b> - задайте специальный символ или слово, которые требуется использовать в качестве знака сноски (например, * или Прим.1). Введите в поле ввода текста нужный символ или слово и нажмите кнопку <b>Вставить</b> в нижней части окна <b>Параметры сносок</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Используйте раскрывающийся список <b>Применить изменения</b>, чтобы выбрать, требуется ли применить указанные параметры сносок <b>Ко всему документу</b> или только <b>К текущему разделу</b>.
|
||||
<p class="note"><b>Примечание</b>: чтобы использовать различное форматирование сносок в отдельных частях документа, сначала необходимо добавить <a href="../UsageInstructions/SectionBreaks.htm" onclick="onhyperlinkclick(this)">разрывы раздела</a>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Когда все будет готово, нажмите на кнопку <b>Применить</b>.</li>
|
||||
</ol>
|
||||
|
||||
<hr />
|
||||
<p>Чтобы удалить отдельную сноску, установите курсор непосредственно перед знаком сноски в тексте документа и нажмите клавишу <b>Delete</b>. Нумерация оставшихся сносок изменится автоматически.</p>
|
||||
<p>Чтобы удалить все сноски в документе:</p>
|
||||
<ol>
|
||||
<li>нажмите на стрелку рядом со значком <b>Сноски</b> <img alt="Значок Сноски" src="../images/footnotes.png" /> на верхней панели инструментов,</li>
|
||||
<li>выберите в меню опцию <b>Удалить все сноски</b>.</li>
|
||||
</ol>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -47,7 +47,7 @@
|
||||
<li><b>Дополнительные параметры изображения</b> - используется для вызова окна 'Изображение - Дополнительные параметры'.</li>
|
||||
</ul>
|
||||
<hr />
|
||||
<p>Чтобы изменить дополнительные параметры изображения, щелкните по нему правой кнопкой мыши и выберите из контекстного меню пункт <b>Дополнительные параметры</b>. Или нажмите ссылку <b>Дополнительные параметры</b> на правой боковой панели. Откроется окно свойств изображения:</p>
|
||||
<p>Чтобы изменить дополнительные параметры изображения, щелкните по нему правой кнопкой мыши и выберите из контекстного меню пункт <b>Дополнительные параметры изображения</b>. Или нажмите ссылку <b>Дополнительные параметры</b> на правой боковой панели. Откроется окно свойств изображения:</p>
|
||||
<p><img alt="Изображение - Дополнительные параметры: Размер" src="../images/image_properties.png" /></p>
|
||||
<p>Вкладка <b>Размер</b> содержит следующие параметры:</p>
|
||||
<ul>
|
||||
@@ -90,7 +90,9 @@
|
||||
</li>
|
||||
<li>Опция <b>Перемещать с текстом</b> определяет, будет ли изображение перемещаться вместе с текстом, к которому оно привязано.</li>
|
||||
<li>Опция <b>Разрешить перекрытие</b> определяет, будут ли перекрываться два изображения, если перетащить их близко друг к другу на странице.</li>
|
||||
</ul>
|
||||
</ul>
|
||||
<p><img alt="Изображение - Дополнительные параметры" src="../images/image_properties_3.png" /></p>
|
||||
<p>Вкладка <b>Альтернативный текст</b> позволяет задать <b>Заголовок</b> и <b>Описание</b>, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,55 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Создание форм</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="Вставляйте элементы управления содержимым 'форматированный текст' создать форму с полями ввода, которую могут заполнять другие пользователи, или защитить некоторые части документа от редактирования или удаления" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
<script type="text/javascript" src="../callback.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>Создание форм</h1>
|
||||
<p>Используя элементы управления содержимым "форматированный текст", вы можете создать форму с полями ввода, которую могут заполнять другие пользователи, или защитить некоторые части документа от редактирования или удаления. Элементы управления содержимым "форматированный текст" - это объекты, содержащие текст, который можно форматировать. Встроенные элементы управления могут содержать не более одного абзаца, тогда как плавающие элементы управления могут содержать несколько абзацев, списки и объекты (изображения, фигуры, таблицы и так далее). </p>
|
||||
<h3>Добавление элементов управления</h3>
|
||||
<p>Для создания нового <b>встроенного</b> элемента управления,</p>
|
||||
<ol>
|
||||
<li>установите курсор в строке текста там, где требуется добавить элемент управления,<br />или выделите фрагмент текста, который должен стать содержимым элемента управления.</li>
|
||||
<li>нажмите сочетание клавиш <b>Shift+F1</b></li>
|
||||
</ol>
|
||||
<p>Элемент управления будет вставлен в позицию курсора в строке существующего текста. Встроенные элементы управления не позволяют добавлять разрывы строки и не могут содержать другие объекты, такие как изображения, таблицы и так далее.</p>
|
||||
<p><img alt="Новый встроенный элемент управления" src="../images/addedcontentcontrol.png" /></p>
|
||||
<p>Для создания нового <b>плавающего</b> элемента управления,</p>
|
||||
<ol>
|
||||
<li>установите курсор в конце абзаца, после которого требуется добавить элемент управления,<br />или выделите один или несколько существующих абзацев, которые должны стать содержимым элемента управления.</li>
|
||||
<li>нажмите сочетание клавиш <b>Shift+F2</b></li>
|
||||
</ol>
|
||||
<p>Элемент управления будет вставлен в новом абзаце. Плавающие элементы управления позволяют добавлять разрывы строки, то есть могут содержать несколько абзацев, а также какие-либо объекты, такие как изображения, таблицы, другие элементы управления содержимым и так далее.</p>
|
||||
<p><img alt="Плавающий элемент управления" src="../images/floatingcontentcontrol.png" /></p>
|
||||
<p class="note"><b>Примечание</b>: Граница элемента управления содержимым видна только при выделении элемента управления. Границы не отображаются в печатной версии.</p>
|
||||
<h3>Перемещение элементов управления</h3>
|
||||
<p>Элементы управления можно <b>перемещать</b> на другое место в документе: нажмите на кнопку слева от границы элемента управления, чтобы выделить элемент управления, и перетащите его, не отпуская кнопку мыши, на другое место в тексте документа.</p>
|
||||
<p><img alt="Перемещение элементов управления" src="../images/movecontentcontrol.png" /></p>
|
||||
<p>Встроенные элементы управления можно также <b>копировать и вставлять</b>: выделите нужный элемент управления и используйте сочетания клавиш <b>Ctrl+C/Ctrl+V</b>.</p>
|
||||
<h3>Редактирование содержимого элементов управления</h3>
|
||||
<p>Для перехода в режим редактирования элементов управления нажмите сочетание клавиш <b>Shift+F9</b>. Вы сможете перемещаться только между элементами управления, используя кнопки со стрелками на клавиатуре. <!--To exit from this mode and be able to edit regular text in your document--></p>
|
||||
<p>Замените стандартный текст в элементе управления ("Введите ваш текст") на свой собственный: выделите стандартный текст, нажмите клавишу <b>Delete</b> и введите новый текст или скопируйте откуда-нибудь фрагмент текста и вставьте его в элемент управления содержимым.</p>
|
||||
<p>Текст внутри элемента управления содержимым "форматированный текст" любого типа (и встроенного, и плавающего) можно отформатировать с помощью значков на верхней панели инструментов: вы можете изменить <a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">тип, размер, цвет шрифта</a>, применить <a href="../UsageInstructions/DecorationStyles.htm" onclick="onhyperlinkclick(this)">стили оформления</a> и <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">предустановленные стили форматирования</a>. Для изменения свойств текста можно также использовать окно <b>Абзац - Дополнительные параметры</b>, доступное из контекстного меню или с правой боковой панели. Текст в плавающих элементах управления можно форматировать, как обычный текст документа, то есть вы можете задать <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">междустрочный интервал</a>, изменить <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">отступы абзаца</a>, настроить <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">позиции табуляции</a>.</p>
|
||||
<h3>Защита элементов управления</h3>
|
||||
<p>Можно запретить пользователям редактирование или удаление некоторых отдельных элементов управления содержимым. Используйте одно из следующих сочетаний клавиш:</p>
|
||||
<ul>
|
||||
<li>Чтобы защитить элемент управления от редактирования (но не от удаления), выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F6</b></li>
|
||||
<li>Чтобы защитить элемент управления от удаления (но не от редактирования), выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F7</b></li>
|
||||
<li>Чтобы защитить элемент управления от редактирования и удаления одновременно, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F8</b></li>
|
||||
<li>Чтобы снять защиту от редактирования/удаления, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F5</b></li>
|
||||
</ul>
|
||||
<h3>Удаление элементов управления</h3>
|
||||
<p>Если вам больше не нужен какой-то элемент управления, вы можете использовать одно из следующих сочетаний клавиш:</p>
|
||||
<ul>
|
||||
<li>Чтобы удалить элемент управления и все его содержимое, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F3</b></li>
|
||||
<li>Чтобы удалить элемент управления и оставить все его содержимое, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F4</b></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -64,7 +64,7 @@
|
||||
</li>
|
||||
<li><p><b>По шаблону</b> - используется для выбора одного из доступных шаблонов таблиц.</p></li>
|
||||
<li><p><b>Стиль границ</b> - используется для выбора толщины, цвета и стиля границ, а также цвета фона.</p></li>
|
||||
<li><p><b>Обтекание текстом</b> - используется для выбора одного из двух стилей обтекания текстом - встроенного и плавающего.</p></li>
|
||||
<li><p><b>Стиль обтекания</b> - используется для выбора одного из двух стилей обтекания текстом - встроенного и плавающего.</p></li>
|
||||
<li><p><b>Строки и столбцы</b> - используется для выполнения некоторых операций с таблицей: выделения, удаления, вставки строк и столбцов, объединения ячеек, разделения ячейки.</p></li>
|
||||
<li><p><b>Повторять как заголовок на каждой странице</b> - в длинных таблицах используется для вставки одной и той же строки заголовка наверху каждой страницы.</p></li>
|
||||
<li><p><b>Дополнительные параметры</b> - используется для вызова окна 'Таблица - Дополнительные параметры'.</p></li>
|
||||
@@ -154,6 +154,8 @@
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<p><img alt="Таблица - Дополнительные параметры" src="../images/table_properties_6.png" /></p>
|
||||
<p>Вкладка <b>Альтернативный текст</b> позволяет задать <b>Заголовок</b> и <b>Описание</b>, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит таблица.</p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -49,10 +49,10 @@
|
||||
<li>задать <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">междустрочный интервал</a>, изменить <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">отступы абзаца</a>, настроить <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">позиции табуляции</a> для многострочного текста внутри текстового поля</li>
|
||||
<li>вставить <a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">гиперссылку</a></li>
|
||||
</ul>
|
||||
<p>Можно также нажать на значок <b>Параметры объекта Text Art</b> <img alt="Значок Параметры объекта Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели и изменить некоторые параметры стиля.</p>
|
||||
<p>Можно также нажать на значок <b>Параметры объектов Text Art</b> <img alt="Значок Параметры объектов Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели и изменить некоторые параметры стиля.</p>
|
||||
<h3>Изменение стиля объекта Text Art</h3>
|
||||
<p>Выделите текстовый объект и щелкните по значку <b>Параметры объекта Text Art</b> <img alt="Значок Параметры объекта Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели.</p>
|
||||
<p><img alt="Вкладка Параметры объекта Text Art" src="../images/right_textart.png" /></p>
|
||||
<p>Выделите текстовый объект и щелкните по значку <b>Параметры объектов Text Art</b> <img alt="Значок Параметры объектов Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели.</p>
|
||||
<p><img alt="Вкладка Параметры объектов Text Art" src="../images/right_textart.png" /></p>
|
||||
<p>Измените примененный стиль текста, выбрав из галереи новый <b>Шаблон</b>. Можно также дополнительно изменить этот базовый стиль, выбрав другой тип, размер шрифта и т.д.</p>
|
||||
<p>Измените <b>Заливку</b> шрифта. Можно выбрать следующие варианты:</p>
|
||||
<ul>
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
<ul>
|
||||
<li>Маркер <b>отступа первой строки</b> <img alt="Маркер отступа первой строки" src="../images/firstline_indent.png" /> используется, чтобы задать смещение от левого поля страницы для первой строки абзаца.</li>
|
||||
<li>Маркер <b>выступа</b> <img alt="Маркер выступа" src="../images/hanging.png" /> используется, чтобы задать смещение от левого поля страницы для второй и всех последующих строк абзаца.</li>
|
||||
<li>Маркер <b>отступа слева</b> <img alt="Маркер отступа слева" src="../images/leftindent.png" /> используется, чтобы задать смещение от левого поля страницы для всего абзаца.</li>
|
||||
<li>Маркер <b>отступа справа</b> <img alt="Маркер отступа справа" src="../images/right_indent.png" /> используется, чтобы задать смещение абзаца от правого поля страницы.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<h1>Вставка разрывов раздела</h1>
|
||||
<p>
|
||||
Разрывы раздела дают возможность применять разные виды форматирования к определенным разделам вашего документа. Например, вы можете применить особые
|
||||
<a href="../UsageInstructions/InsertHeadersFooters.htm" onclick="onhyperlinkclick(this)">верхние и нижние колонтитулы</a>, <a href="../UsageInstructions/InsertPageNumbers.htm" onclick="onhyperlinkclick(this)">нумерацию страниц</a>, <a href="../UsageInstructions/SetPageParameters.htm" onclick="onhyperlinkclick(this)">поля, размер, ориентацию страницы или количество колонок</a>
|
||||
<a href="../UsageInstructions/InsertHeadersFooters.htm" onclick="onhyperlinkclick(this)">верхние и нижние колонтитулы</a>, <a href="../UsageInstructions/InsertPageNumbers.htm" onclick="onhyperlinkclick(this)">нумерацию страниц</a>, <a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">формат сносок</a>, <a href="../UsageInstructions/SetPageParameters.htm" onclick="onhyperlinkclick(this)">поля, размер, ориентацию страницы или количество колонок</a>
|
||||
к каждому отдельно взятому разделу.</p>
|
||||
<p class="note"><b>Примечание</b>: вставленный разрыв раздела определяет форматирование предшествующей части документа.</p>
|
||||
<p>Для вставки разрыва раздела в то место, где находится курсор:</p>
|
||||
|
||||
@@ -46,6 +46,8 @@
|
||||
<li><b>Слева</b> <img alt="Значок колонок Слева" src="../images/leftcolumn.png" /> - чтобы добавить две колонки: узкую слева и широкую справа,</li>
|
||||
<li><b>Справа</b> <img alt="Значок колонок Справа" src="../images/rightcolumn.png" /> - чтобы добавить две колонки: узкую справа и широкую слева.</li>
|
||||
</ul>
|
||||
<p>Если требуется изменить параметры колонок, выберите из списка опцию <b>Настраиваемые колонки</b>. Откроется окно <b>Колонки</b>, в котором можно будет указать нужное <b>Количество колонок</b> (можно добавить не более 12 колонок) и <b>Интервал между колонками</b>. Введите новые значения в поля ввода или скорректируйте имеющиеся значения с помощью кнопок со стрелками. Отметьте опцию <b>Разделитель</b>, чтобы добавить вертикальную линию между колонками. Когда все будет готово, нажмите кнопку <b>OK</b>, чтобы применить изменения.</p>
|
||||
<p><img alt="Настраиваемые колонки" src="../images/customcolumns.png" /></p>
|
||||
<p>Чтобы точно определить, где должна начинаться новая колонка, установите курсор перед текстом, который требуется перенести в новую колонку, нажмите на значок <b>Вставить разрыв страницы или раздела</b> <img alt="Разрыв страницы" src="../images/pagebreak1.png" /> на верхней панели инструментов, а затем выберите опцию <b>Вставить разрыв колонки</b>. Текст будет перенесен в следующую колонку.</p>
|
||||
<p>Добавленные разрывы колонок обозначаются в документе пунктирной линией: <img alt="Разрыв колонки" src="../images/columnbreak.png" />. Если вы не видите вставленных разрывов колонок, для их отображения нужно нажать на кнопку <img alt="Значок Непечатаемые символы" src="../images/nonprintingcharacters.png" /> на верхней панели инструментов. Для того чтобы убрать разрыв колонки, выделите его мышью и нажмите клавишу <b>Delete</b>.</p>
|
||||
<p>Чтобы вручную изменить ширину колонок и расстояние между ними, можно использовать горизонтальную линейку.</p>
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
<p>Чтобы получить доступ к подробным сведениям о редактируемом документе, нажмите значок <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Сведения о документе...</b>.</p>
|
||||
<h3>Общие сведения</h3>
|
||||
<p>Сведения о документе включают название документа, автора, размещение, дату создания, а также статистику: количество страниц, абзацев, слов, символов, символов с пробелами.</p>
|
||||
<p class="note"><b>Примечание</b>: используя онлайн-редакторы, вы можете изменить название документа непосредственно из интерфейса редактора. Для этого выберите опцию <b>Переименовать...</b> в меню <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> или щелкните по имени файла, отображенному в шапке редактора рядом с логотипом (в левом верхнем углу), затем введите нужное <b>Имя файла</b> в новом открывшемся окне и нажмите кнопку <b>OK</b>.</p>
|
||||
<div class="onlineDocumentFeatures">
|
||||
<h3>Сведения о правах доступа</h3>
|
||||
<p class="note"><b>Примечание</b>: эта опция недоступна для пользователей с правами доступа <b>Только чтение</b>.</p>
|
||||
@@ -20,7 +21,7 @@
|
||||
<h3>Журнал версий</h3>
|
||||
<p class="note"><b>Примечание</b>: эта опция недоступна для бесплатных аккаунтов, а также для пользователей с правами доступа <b>Только чтение</b>.</p>
|
||||
<p>Чтобы просмотреть все внесенные в документ изменения, выберите опцию <b>Журнал версий</b> на левой боковой панели. Вы увидите список версий (существенных изменений) и ревизий (незначительных изменений) этого документа с указанием автора и даты и времени создания каждой версии/ревизии. Для версий документа также указан номер версии (например, <em>вер. 2</em>). Чтобы точно знать, какие изменения были внесены в каждой конкретной версии/ревизии, можно просмотреть нужную, нажав на нее на левой боковой панели. Изменения, внесенные автором версии/ревизии, помечены цветом, который показан рядом с именем автора на левой боковой панели. Чтобы вернуться к текущей версии документа, нажмите на ссылку <b>Вернуться к документу</b> над списком версий.</p>
|
||||
<p>Чтобы закрыть панель <b>Файл</b> и вернуться к редактированию документа, выберите опцию <b>Вернуться к документу</b>.</p>
|
||||
<p>Чтобы закрыть панель <b>Файл</b> и вернуться к редактированию документа, выберите опцию <b>Закрыть меню</b>.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
*
|
||||
* (c) Copyright Ascensio System Limited 2010-2017
|
||||
* (c) Copyright Ascensio System Limited 2010-2018
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.9 KiB |