diff --git a/404.html b/404.html index 7998e36..589363a 100644 --- a/404.html +++ b/404.html @@ -1,15 +1,17 @@ - + Page not found - 吴语学堂拼音输入方案合集 + + - + - + @@ -17,25 +19,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git a/book.js b/book.js index d40440c..aa12e7e 100644 --- a/book.js +++ b/book.js @@ -4,14 +4,16 @@ window.onunload = function () { }; // Global variable, shared between modules -function playground_text(playground) { +function playground_text(playground, hidden = true) { let code_block = playground.querySelector("code"); if (window.ace && code_block.classList.contains("editable")) { let editor = window.ace.edit(code_block); return editor.getValue(); - } else { + } else if (hidden) { return code_block.textContent; + } else { + return code_block.innerText; } } @@ -66,7 +68,7 @@ function playground_text(playground) { } // updates the visibility of play button based on `no_run` class and - // used crates vs ones available on http://play.rust-lang.org + // used crates vs ones available on https://play.rust-lang.org function update_play_button(pre_block, playground_crates) { var play_button = pre_block.querySelector(".play-button"); @@ -166,7 +168,6 @@ function playground_text(playground) { .filter(function (node) {return node.classList.contains("editable"); }) .forEach(function (block) { block.classList.remove('language-rust'); }); - Array code_nodes .filter(function (node) {return !node.classList.contains("editable"); }) .forEach(function (block) { hljs.highlightBlock(block); }); @@ -178,7 +179,7 @@ function playground_text(playground) { // even if highlighting doesn't apply code_nodes.forEach(function (block) { block.classList.add('hljs'); }); - Array.from(document.querySelectorAll("code.language-rust")).forEach(function (block) { + Array.from(document.querySelectorAll("code.hljs")).forEach(function (block) { var lines = Array.from(block.querySelectorAll('.boring')); // If no lines were hidden, return @@ -300,6 +301,13 @@ function playground_text(playground) { themePopup.querySelector("button#" + get_theme()).focus(); } + function updateThemeSelected() { + themePopup.querySelectorAll('.theme-selected').forEach(function (el) { + el.classList.remove('theme-selected'); + }); + themePopup.querySelector("button#" + get_theme()).classList.add('theme-selected'); + } + function hideThemes() { themePopup.style.display = 'none'; themeToggleButton.setAttribute('aria-expanded', false); @@ -338,7 +346,7 @@ function playground_text(playground) { } setTimeout(function () { - themeColorMetaTag.content = getComputedStyle(document.body).backgroundColor; + themeColorMetaTag.content = getComputedStyle(document.documentElement).backgroundColor; }, 1); if (window.ace && window.editors) { @@ -355,6 +363,7 @@ function playground_text(playground) { html.classList.remove(previousTheme); html.classList.add(theme); + updateThemeSelected(); } // Set theme @@ -432,7 +441,7 @@ function playground_text(playground) { })(); (function sidebar() { - var html = document.querySelector("html"); + var body = document.querySelector("body"); var sidebar = document.getElementById("sidebar"); var sidebarLinks = document.querySelectorAll('#sidebar a'); var sidebarToggleButton = document.getElementById("sidebar-toggle"); @@ -440,8 +449,8 @@ function playground_text(playground) { var firstContact = null; function showSidebar() { - html.classList.remove('sidebar-hidden') - html.classList.add('sidebar-visible'); + body.classList.remove('sidebar-hidden') + body.classList.add('sidebar-visible'); Array.from(sidebarLinks).forEach(function (link) { link.setAttribute('tabIndex', 0); }); @@ -462,8 +471,8 @@ function playground_text(playground) { }); function hideSidebar() { - html.classList.remove('sidebar-visible') - html.classList.add('sidebar-hidden'); + body.classList.remove('sidebar-visible') + body.classList.add('sidebar-hidden'); Array.from(sidebarLinks).forEach(function (link) { link.setAttribute('tabIndex', -1); }); @@ -474,14 +483,14 @@ function playground_text(playground) { // Toggle sidebar sidebarToggleButton.addEventListener('click', function sidebarToggle() { - if (html.classList.contains("sidebar-hidden")) { + if (body.classList.contains("sidebar-hidden")) { var current_width = parseInt( document.documentElement.style.getPropertyValue('--sidebar-width'), 10); if (current_width < 150) { document.documentElement.style.setProperty('--sidebar-width', '150px'); } showSidebar(); - } else if (html.classList.contains("sidebar-visible")) { + } else if (body.classList.contains("sidebar-visible")) { hideSidebar(); } else { if (getComputedStyle(sidebar)['transform'] === 'none') { @@ -497,14 +506,14 @@ function playground_text(playground) { function initResize(e) { window.addEventListener('mousemove', resize, false); window.addEventListener('mouseup', stopResize, false); - html.classList.add('sidebar-resizing'); + body.classList.add('sidebar-resizing'); } function resize(e) { var pos = (e.clientX - sidebar.offsetLeft); if (pos < 20) { hideSidebar(); } else { - if (html.classList.contains("sidebar-hidden")) { + if (body.classList.contains("sidebar-hidden")) { showSidebar(); } pos = Math.min(pos, window.innerWidth - 100); @@ -513,7 +522,7 @@ function playground_text(playground) { } //on mouseup remove windows functions mousemove & mouseup function stopResize(e) { - html.classList.remove('sidebar-resizing'); + body.classList.remove('sidebar-resizing'); window.removeEventListener('mousemove', resize, false); window.removeEventListener('mouseup', stopResize, false); } @@ -542,33 +551,41 @@ function playground_text(playground) { firstContact = null; } }, { passive: true }); - - // Scroll sidebar to current active section - var activeSection = document.getElementById("sidebar").querySelector(".active"); - if (activeSection) { - // https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView - activeSection.scrollIntoView({ block: 'center' }); - } })(); (function chapterNavigation() { document.addEventListener('keydown', function (e) { if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) { return; } if (window.search && window.search.hasFocus()) { return; } + var html = document.querySelector('html'); + function next() { + var nextButton = document.querySelector('.nav-chapters.next'); + if (nextButton) { + window.location.href = nextButton.href; + } + } + function prev() { + var previousButton = document.querySelector('.nav-chapters.previous'); + if (previousButton) { + window.location.href = previousButton.href; + } + } switch (e.key) { case 'ArrowRight': e.preventDefault(); - var nextButton = document.querySelector('.nav-chapters.next'); - if (nextButton) { - window.location.href = nextButton.href; + if (html.dir == 'rtl') { + prev(); + } else { + next(); } break; case 'ArrowLeft': e.preventDefault(); - var previousButton = document.querySelector('.nav-chapters.previous'); - if (previousButton) { - window.location.href = previousButton.href; + if (html.dir == 'rtl') { + next(); + } else { + prev(); } break; } @@ -592,7 +609,7 @@ function playground_text(playground) { text: function (trigger) { hideTooltip(trigger); let playground = trigger.closest("pre"); - return playground_text(playground); + return playground_text(playground, false); } }); @@ -667,13 +684,14 @@ function playground_text(playground) { }, { passive: true }); })(); (function controllBorder() { - menu.classList.remove('bordered'); - document.addEventListener('scroll', function () { + function updateBorder() { if (menu.offsetTop === 0) { menu.classList.remove('bordered'); } else { menu.classList.add('bordered'); } - }, { passive: true }); + } + updateBorder(); + document.addEventListener('scroll', updateBorder, { passive: true }); })(); })(); diff --git a/css/chrome.css b/css/chrome.css index 10fa4b3..2314f7a 100644 --- a/css/chrome.css +++ b/css/chrome.css @@ -2,12 +2,6 @@ @import 'variables.css'; -::-webkit-scrollbar { - background: var(--bg); -} -::-webkit-scrollbar-thumb { - background: var(--scrollbar); -} html { scrollbar-color: var(--scrollbar) var(--bg); } @@ -18,6 +12,19 @@ a > .hljs { color: var(--links); } +/* + body-container is necessary because mobile browsers don't seem to like + overflow-x on the body tag when there is a tag. +*/ +#body-container { + /* + This is used when the sidebar pushes the body content off the side of + the screen on small screens. Without it, dragging on mobile Safari + will want to reposition the viewport in a weird way. + */ + overflow-x: clip; +} + /* Menu Bar */ #menu-bar, @@ -30,9 +37,9 @@ a > .hljs { display: flex; flex-wrap: wrap; background-color: var(--bg); - border-bottom-color: var(--bg); - border-bottom-width: 1px; - border-bottom-style: solid; + border-block-end-color: var(--bg); + border-block-end-width: 1px; + border-block-end-style: solid; } #menu-bar.sticky, .js #menu-bar-hover-placeholder:hover + #menu-bar, @@ -49,7 +56,7 @@ a > .hljs { height: var(--menu-bar-height); } #menu-bar.bordered { - border-bottom-color: var(--table-border-color); + border-block-end-color: var(--table-border-color); } #menu-bar i, #menu-bar .icon-button { position: relative; @@ -86,7 +93,7 @@ a > .hljs { display: flex; margin: 0 5px; } -.no-js .left-buttons { +.no-js .left-buttons button { display: none; } @@ -153,7 +160,7 @@ a > .hljs { } .nav-wrapper { - margin-top: 50px; + margin-block-start: 50px; display: none; } @@ -166,23 +173,34 @@ a > .hljs { background-color: var(--sidebar-bg); } -.previous { - float: left; -} +/* Only Firefox supports flow-relative values */ +.previous { float: left; } +[dir=rtl] .previous { float: right; } +/* Only Firefox supports flow-relative values */ .next { float: right; right: var(--page-padding); } +[dir=rtl] .next { + float: left; + right: unset; + left: var(--page-padding); +} + +/* Use the correct buttons for RTL layouts*/ +[dir=rtl] .previous i.fa-angle-left:before {content:"\f105";} +[dir=rtl] .next i.fa-angle-right:before { content:"\f104"; } @media only screen and (max-width: 1080px) { .nav-wide-wrapper { display: none; } .nav-wrapper { display: block; } } +/* sidebar-visible */ @media only screen and (max-width: 1380px) { - .sidebar-visible .nav-wide-wrapper { display: none; } - .sidebar-visible .nav-wrapper { display: block; } + #sidebar-toggle-anchor:checked ~ .page-wrapper .nav-wide-wrapper { display: none; } + #sidebar-toggle-anchor:checked ~ .page-wrapper .nav-wrapper { display: block; } } /* Inline code */ @@ -229,7 +247,7 @@ pre > .buttons :hover { background-color: var(--theme-hover); } pre > .buttons i { - margin-left: 8px; + margin-inline-start: 8px; } pre > .buttons button { cursor: inherit; @@ -266,7 +284,7 @@ pre > code { } pre > .result { - margin-top: 10px; + margin-block-start: 10px; } /* Search */ @@ -277,8 +295,14 @@ pre > .result { mark { border-radius: 2px; - padding: 0 3px 1px 3px; - margin: 0 -3px -1px -3px; + padding-block-start: 0; + padding-block-end: 1px; + padding-inline-start: 3px; + padding-inline-end: 3px; + margin-block-start: 0; + margin-block-end: -1px; + margin-inline-start: -3px; + margin-inline-end: -3px; background-color: var(--search-mark-bg); transition: background-color 300ms linear; cursor: pointer; @@ -290,14 +314,17 @@ mark.fade-out { } .searchbar-outer { - margin-left: auto; - margin-right: auto; + margin-inline-start: auto; + margin-inline-end: auto; max-width: var(--content-max-width); } #searchbar { width: 100%; - margin: 5px auto 0px auto; + margin-block-start: 5px; + margin-block-end: 0; + margin-inline-start: auto; + margin-inline-end: auto; padding: 10px 16px; transition: box-shadow 300ms ease-in-out; border: 1px solid var(--searchbar-border-color); @@ -313,20 +340,23 @@ mark.fade-out { .searchresults-header { font-weight: bold; font-size: 1em; - padding: 18px 0 0 5px; + padding-block-start: 18px; + padding-block-end: 0; + padding-inline-start: 5px; + padding-inline-end: 0; color: var(--searchresults-header-fg); } .searchresults-outer { - margin-left: auto; - margin-right: auto; + margin-inline-start: auto; + margin-inline-end: auto; max-width: var(--content-max-width); - border-bottom: 1px dashed var(--searchresults-border-color); + border-block-end: 1px dashed var(--searchresults-border-color); } ul#searchresults { list-style: none; - padding-left: 20px; + padding-inline-start: 20px; } ul#searchresults li { margin: 10px 0px; @@ -339,7 +369,10 @@ ul#searchresults li.focus { ul#searchresults span.teaser { display: block; clear: both; - margin: 5px 0 0 20px; + margin-block-start: 5px; + margin-block-end: 0; + margin-inline-start: 20px; + margin-inline-end: 0; font-size: 0.8em; } ul#searchresults span.teaser em { @@ -362,12 +395,14 @@ ul#searchresults span.teaser em { background-color: var(--sidebar-bg); color: var(--sidebar-fg); } +[dir=rtl] .sidebar { left: unset; right: 0; } .sidebar-resizing { -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; } +.no-js .sidebar, .js:not(.sidebar-resizing) .sidebar { transition: transform 0.3s; /* Animation: slide away */ } @@ -391,12 +426,18 @@ ul#searchresults span.teaser em { top: 0; bottom: 0; } +[dir=rtl] .sidebar .sidebar-resize-handle { right: unset; left: 0; } .js .sidebar .sidebar-resize-handle { cursor: col-resize; width: 5px; } -.sidebar-hidden .sidebar { +/* sidebar-hidden */ +#sidebar-toggle-anchor:not(:checked) ~ .sidebar { transform: translateX(calc(0px - var(--sidebar-width))); + z-index: -1; +} +[dir=rtl] #sidebar-toggle-anchor:not(:checked) ~ .sidebar { + transform: translateX(var(--sidebar-width)); } .sidebar::-webkit-scrollbar { background: var(--sidebar-bg); @@ -405,19 +446,26 @@ ul#searchresults span.teaser em { background: var(--scrollbar); } -.sidebar-visible .page-wrapper { +/* sidebar-visible */ +#sidebar-toggle-anchor:checked ~ .page-wrapper { transform: translateX(var(--sidebar-width)); } +[dir=rtl] #sidebar-toggle-anchor:checked ~ .page-wrapper { + transform: translateX(calc(0px - var(--sidebar-width))); +} @media only screen and (min-width: 620px) { - .sidebar-visible .page-wrapper { + #sidebar-toggle-anchor:checked ~ .page-wrapper { + transform: none; + margin-inline-start: var(--sidebar-width); + } + [dir=rtl] #sidebar-toggle-anchor:checked ~ .page-wrapper { transform: none; - margin-left: var(--sidebar-width); } } .chapter { list-style: none outside none; - padding-left: 0; + padding-inline-start: 0; line-height: 2.2em; } @@ -447,7 +495,7 @@ ul#searchresults span.teaser em { .chapter li > a.toggle { cursor: pointer; display: block; - margin-left: auto; + margin-inline-start: auto; padding: 0 10px; user-select: none; opacity: 0.68; @@ -464,7 +512,7 @@ ul#searchresults span.teaser em { .chapter li.chapter-item { line-height: 1.5em; - margin-top: 0.6em; + margin-block-start: 0.6em; } .chapter li.expanded > a.toggle div { @@ -487,7 +535,7 @@ ul#searchresults span.teaser em { .section { list-style: none outside none; - padding-left: 20px; + padding-inline-start: 20px; line-height: 1.9em; } @@ -507,7 +555,10 @@ ul#searchresults span.teaser em { padding: 0; list-style: none; display: none; + /* Don't let the children's background extend past the rounded corners. */ + overflow: hidden; } +[dir=rtl] .theme-popup { left: unset; right: 10px; } .theme-popup .default { color: var(--icons); } @@ -515,10 +566,10 @@ ul#searchresults span.teaser em { width: 100%; border: 0; margin: 0; - padding: 2px 10px; + padding: 2px 20px; line-height: 25px; white-space: nowrap; - text-align: left; + text-align: start; cursor: pointer; color: inherit; background: inherit; @@ -527,8 +578,10 @@ ul#searchresults span.teaser em { .theme-popup .theme:hover { background-color: var(--theme-hover); } -.theme-popup .theme:hover:first-child, -.theme-popup .theme:hover:last-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; + +.theme-selected::before { + display: inline-block; + content: "✓"; + margin-inline-start: -14px; + width: 14px; } diff --git a/css/general.css b/css/general.css index 0e4f07a..e7d20da 100644 --- a/css/general.css +++ b/css/general.css @@ -5,6 +5,7 @@ :root { /* Browser default font-size is 16px, this way 1 rem = 10px */ font-size: 62.5%; + color-scheme: var(--color-scheme); } html { @@ -22,8 +23,9 @@ body { } code { - font-family: "Source Code Pro", Consolas, "Ubuntu Mono", Menlo, "DejaVu Sans Mono", monospace, monospace !important; - font-size: 0.875em; /* please adjust the ace font size accordingly in editor.js */ + font-family: var(--mono-font) !important; + font-size: var(--code-font-size); + direction: ltr !important; } /* make long words/inline code not x overflow */ @@ -47,13 +49,13 @@ h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { .hide-boring .boring { display: none; } .hidden { display: none !important; } -h2, h3 { margin-top: 2.5em; } -h4, h5 { margin-top: 2em; } +h2, h3 { margin-block-start: 2.5em; } +h4, h5 { margin-block-start: 2em; } .header + .header h3, .header + .header h4, .header + .header h5 { - margin-top: 1em; + margin-block-start: 1em; } h1:target::before, @@ -64,7 +66,7 @@ h5:target::before, h6:target::before { display: inline-block; content: "»"; - margin-left: -30px; + margin-inline-start: -30px; width: 30px; } @@ -73,28 +75,34 @@ h6:target::before { https://bugs.webkit.org/show_bug.cgi?id=218076 */ :target { + /* Safari does not support logical properties */ scroll-margin-top: calc(var(--menu-bar-height) + 0.5em); } .page { outline: 0; padding: 0 var(--page-padding); - margin-top: calc(0px - var(--menu-bar-height)); /* Compensate for the #menu-bar-hover-placeholder */ + margin-block-start: calc(0px - var(--menu-bar-height)); /* Compensate for the #menu-bar-hover-placeholder */ } .page-wrapper { box-sizing: border-box; + background-color: var(--bg); } +.no-js .page-wrapper, .js:not(.sidebar-resizing) .page-wrapper { transition: margin-left 0.3s ease, transform 0.3s ease; /* Animation: slide away */ } +[dir=rtl] .js:not(.sidebar-resizing) .page-wrapper { + transition: margin-right 0.3s ease, transform 0.3s ease; /* Animation: slide away */ +} .content { overflow-y: auto; padding: 0 5px 50px 5px; } .content main { - margin-left: auto; - margin-right: auto; + margin-inline-start: auto; + margin-inline-end: auto; max-width: var(--content-max-width); } .content p { line-height: 1.45em; } @@ -144,14 +152,49 @@ blockquote { padding: 0 20px; color: var(--fg); background-color: var(--quote-bg); - border-top: .1em solid var(--quote-border); - border-bottom: .1em solid var(--quote-border); + border-block-start: .1em solid var(--quote-border); + border-block-end: .1em solid var(--quote-border); +} + +.warning { + margin: 20px; + padding: 0 20px; + border-inline-start: 2px solid var(--warning-border); +} + +.warning:before { + position: absolute; + width: 3rem; + height: 3rem; + margin-inline-start: calc(-1.5rem - 21px); + content: "ⓘ"; + text-align: center; + background-color: var(--bg); + color: var(--warning-border); + font-weight: bold; + font-size: 2rem; +} + +blockquote .warning:before { + background-color: var(--quote-bg); } +kbd { + background-color: var(--table-border-color); + border-radius: 4px; + border: solid 1px var(--theme-popup-border); + box-shadow: inset 0 -1px 0 var(--theme-hover); + display: inline-block; + font-size: var(--code-font-size); + font-family: var(--mono-font); + line-height: 10px; + padding: 4px 5px; + vertical-align: middle; +} :not(.footnote-definition) + .footnote-definition, .footnote-definition + :not(.footnote-definition) { - margin-top: 2em; + margin-block-start: 2em; } .footnote-definition { font-size: 0.9em; diff --git a/css/print.css b/css/print.css index 5e690f7..dcf0ba6 100644 --- a/css/print.css +++ b/css/print.css @@ -8,7 +8,7 @@ #page-wrapper.page-wrapper { transform: none; - margin-left: 0px; + margin-inline-start: 0px; overflow-y: initial; } @@ -23,11 +23,7 @@ } code { - background-color: #666666; - border-radius: 5px; - - /* Force background to be printed in Chrome */ - -webkit-print-color-adjust: exact; + direction: ltr !important; } pre > .buttons { diff --git a/css/variables.css b/css/variables.css index 56b634b..10a7590 100644 --- a/css/variables.css +++ b/css/variables.css @@ -6,6 +6,8 @@ --page-padding: 15px; --content-max-width: 750px; --menu-bar-height: 50px; + --mono-font: "Source Code Pro", Consolas, "Ubuntu Mono", Menlo, "DejaVu Sans Mono", monospace, monospace; + --code-font-size: 0.875em /* please adjust the ace font size accordingly in editor.js */ } /* Themes */ @@ -36,6 +38,8 @@ --quote-bg: hsl(226, 15%, 17%); --quote-border: hsl(226, 15%, 22%); + --warning-border: #ff8e00; + --table-border-color: hsl(210, 25%, 13%); --table-header-bg: hsl(210, 25%, 28%); --table-alternate-bg: hsl(210, 25%, 11%); @@ -48,6 +52,8 @@ --searchresults-border-color: #888; --searchresults-li-bg: #252932; --search-mark-bg: #e3b171; + + --color-scheme: dark; } .coal { @@ -76,6 +82,8 @@ --quote-bg: hsl(234, 21%, 18%); --quote-border: hsl(234, 21%, 23%); + --warning-border: #ff8e00; + --table-border-color: hsl(200, 7%, 13%); --table-header-bg: hsl(200, 7%, 28%); --table-alternate-bg: hsl(200, 7%, 11%); @@ -88,6 +96,8 @@ --searchresults-border-color: #98a3ad; --searchresults-li-bg: #2b2b2f; --search-mark-bg: #355c7d; + + --color-scheme: dark; } .light { @@ -116,6 +126,8 @@ --quote-bg: hsl(197, 37%, 96%); --quote-border: hsl(197, 37%, 91%); + --warning-border: #ff8e00; + --table-border-color: hsl(0, 0%, 95%); --table-header-bg: hsl(0, 0%, 80%); --table-alternate-bg: hsl(0, 0%, 97%); @@ -128,6 +140,8 @@ --searchresults-border-color: #888; --searchresults-li-bg: #e4f2fe; --search-mark-bg: #a2cff5; + + --color-scheme: light; } .navy { @@ -156,6 +170,8 @@ --quote-bg: hsl(226, 15%, 17%); --quote-border: hsl(226, 15%, 22%); + --warning-border: #ff8e00; + --table-border-color: hsl(226, 23%, 16%); --table-header-bg: hsl(226, 23%, 31%); --table-alternate-bg: hsl(226, 23%, 14%); @@ -168,6 +184,8 @@ --searchresults-border-color: #5c5c68; --searchresults-li-bg: #242430; --search-mark-bg: #a2cff5; + + --color-scheme: dark; } .rust { @@ -196,6 +214,8 @@ --quote-bg: hsl(60, 5%, 75%); --quote-border: hsl(60, 5%, 70%); + --warning-border: #ff8e00; + --table-border-color: hsl(60, 9%, 82%); --table-header-bg: #b3a497; --table-alternate-bg: hsl(60, 9%, 84%); @@ -208,6 +228,8 @@ --searchresults-border-color: #888; --searchresults-li-bg: #dec2a2; --search-mark-bg: #e69f67; + + --color-scheme: light; } @media (prefers-color-scheme: dark) { @@ -237,6 +259,8 @@ --quote-bg: hsl(234, 21%, 18%); --quote-border: hsl(234, 21%, 23%); + --warning-border: #ff8e00; + --table-border-color: hsl(200, 7%, 13%); --table-header-bg: hsl(200, 7%, 28%); --table-alternate-bg: hsl(200, 7%, 11%); diff --git a/index.html b/index.html index d4247cd..0877a77 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,16 @@ - + 吴语学堂拼音输入方案合集 - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git a/print.html b/print.html index 9e033a6..067fcde 100644 --- a/print.html +++ b/print.html @@ -1,15 +1,17 @@ - + 吴语学堂拼音输入方案合集 - + + + - + - + @@ -17,25 +19,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + - + +
diff --git a/searchindex.js b/searchindex.js index 773151f..0fc1741 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["index.html#吴语学堂拼音输入方案合集","index.html#方案列表","index.html#安装方法","index.html#使用","index.html#字音查询","index.html#鸣谢","index.html#联系","安装方法/安装方法.html#安装方法","安装方法/Windows.html#windows下安装方法","安装方法/Windows.html#安装时添加输入方案","安装方法/Windows.html#添加输入方案--更新输入方案","安装方法/Windows.html#视频教程","安装方法/macOS.html#macos下安装方法","安装方法/macOS.html#方法一","安装方法/macOS.html#方法二","安装方法/Linux.html#linux下安装方法","安装方法/Linux.html#方法一","安装方法/Linux.html#方法二","安装方法/Android.html#android","安装方法/iOS.html#ios","使用/使用.html#使用","使用/模糊音.html#模糊音","使用/输入提示.html#输入提示","使用/反查.html#反查","使用/自定义短语.html#自定义短语"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":0,"title":0},"1":{"body":19,"breadcrumbs":0,"title":0},"10":{"body":10,"breadcrumbs":1,"title":0},"11":{"body":4,"breadcrumbs":1,"title":0},"12":{"body":0,"breadcrumbs":2,"title":1},"13":{"body":30,"breadcrumbs":1,"title":0},"14":{"body":45,"breadcrumbs":1,"title":0},"15":{"body":0,"breadcrumbs":2,"title":1},"16":{"body":46,"breadcrumbs":1,"title":0},"17":{"body":33,"breadcrumbs":1,"title":0},"18":{"body":10,"breadcrumbs":2,"title":1},"19":{"body":38,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":0,"title":0},"20":{"body":0,"breadcrumbs":0,"title":0},"21":{"body":21,"breadcrumbs":0,"title":0},"22":{"body":19,"breadcrumbs":0,"title":0},"23":{"body":20,"breadcrumbs":0,"title":0},"24":{"body":7,"breadcrumbs":0,"title":0},"3":{"body":0,"breadcrumbs":0,"title":0},"4":{"body":1,"breadcrumbs":0,"title":0},"5":{"body":3,"breadcrumbs":0,"title":0},"6":{"body":2,"breadcrumbs":0,"title":0},"7":{"body":5,"breadcrumbs":0,"title":0},"8":{"body":0,"breadcrumbs":2,"title":1},"9":{"body":12,"breadcrumbs":1,"title":0}},"docs":{"0":{"body":"","breadcrumbs":"吴语学堂拼音输入方案合集 » 吴语学堂拼音输入方案合集","id":"0","title":"吴语学堂拼音输入方案合集"},"1":{"body":"℞ NGLI/rime-wugniu_zaonhe :上海吴语 wugniu_zaonhe:上海 wugniu_zaonhe:上海(老派) wugniu_sonkaon:松江 ℞ NGLI/rime-wugniu_soutseu :苏州吴语 wugniu_soutseu:苏州 ℞ NGLI/rime-wugniu_kashin :嘉兴吴语(五县两区) wugniu_donshian:桐乡 wugniu_haegnin:海宁 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 ℞ NGLI/rime-wugniu_gninpou :宁波吴语 wugniu_gninpou:宁波 wugniu_gnincieu:鄞州","breadcrumbs":"吴语学堂拼音输入方案合集 » 方案列表","id":"1","title":"方案列表"},"10":{"body":"如果需要添加更多输入方案,可以参照以下步骤。 在任务栏 Rime 图标这边右键打开菜单。 右键打开菜单 打开后选择“輸入法設定”,就能进入“【小狼毫】方案選單設定”的界面。点击下方的“獲取更多輸入法方案...”。 方案選單設定1 点完会弹出一个命令行界面。在这个命令行中输入仓库的地址。仓库地址在输入方案网页的左上角。注意是输入 仓库地址 ,而非输入方案的名称。 仓库地址 比如要安装宁波话输入法,就可以输入 NGLI/rime-wugniu_gninpou。 输入完按下回车,等待一段时间。 plum 等到命令行界面不再变化,就可以关掉命令行界面了。再回到“【小狼毫】方案選單設定”的界面,可以发现输入法选单多了几种输入法。可以点击输入法的名字查看输入法的简介,然后根据个人需要勾选。选完点击“中”。 方案選單設定2 之后是介面風格設定,选择一个自己喜欢的配色即可。选完点击“中”。 介面風格設定 完成后,再次右键任务栏 Rime 图标打开菜单,选择“重新部署”。稍等一会儿,待其部署完成即可。 菜单 这种方法可以用于添加或更新输入方案。更新输入方案时,有可能出现更新失败的情形。可以到用户文件夹下,将已有的输入法文件删除。再试着重新安装一遍输入方案。 安装完输入方案后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,从选单中选择想要的输入法。开始打字。 方案選單2","breadcrumbs":"安装方法 » Windows » 添加输入方案 / 更新输入方案","id":"10","title":"添加输入方案 / 更新输入方案"},"11":{"body":"以下两个视频教程是以版本 0.13.0 为例讲解的,与当前版本的安装方法有差异,仅供参考。 https://www.bilibili.com/video/BV1db411S7gf https://www.bilibili.com/video/BV1qb411L7xt 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Windows » 视频教程:","id":"11","title":"视频教程:"},"12":{"body":"","breadcrumbs":"安装方法 » macOS » macOS下安装方法","id":"12","title":"macOS下安装方法"},"13":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。将上一步下载的输入法文件和这一步下载的配置文件放到Rime的用户文件夹(~/Library/Rime/,可以通过点击输入法状态栏上的Rime图标,选择“用户设定...”来打开)。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » macOS » 方法一","id":"13","title":"方法一"},"14":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件default.custom.yaml,将它放到Rime的用户文件夹(~/Library/Rime/,可以通过点击Rime图标选择“用户设定...”来打开)内。打开文件,应当显示为如下内容。 patch: schema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » macOS » 方法二","id":"14","title":"方法二"},"15":{"body":"","breadcrumbs":"安装方法 » Linux » Linux下安装方法","id":"15","title":"Linux下安装方法"},"16":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将它放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » Linux » 方法一","id":"16","title":"方法一"},"17":{"body":"安装Rime输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将上一步下载的输入法文件和这一步下载的配置文件放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Linux » 方法二","id":"17","title":"方法二"},"18":{"body":"安装同文输入法。具体可以参照 Trime 的 网站 。 安装好之后,打开同文输入法,点击“启用”,再点击“选取”选择同文输入法平台。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 输入法需要基础配置文件和基础词表,同时也依赖朙月拼音和五筆畫实现反查。点击下方链接下载。 Rime 輸入法基礎配置 essay 朙月拼音 五筆畫 解压第 3 步和第 4 步下载好的几个压缩包,找到所有以 .yaml 和 .txt 结尾的文件,将它们放到安卓设备的 /sdcard/rime 文件夹(主目录下的 rime 文件夹)。 放好后,再次打开同文输入法。选择“部署”,等待一段时间后,再选择“输入”>“方案”,根据自己的需要勾选输入方案。选完点“确定”。 到打字界面,长按输入法左下角“選單”,在选单中选择输入法。 有需要的话,也可以参阅 Trime 输入法的 文档 。","breadcrumbs":"安装方法 » Android » Android","id":"18","title":"Android"},"19":{"body":"至苹果应用商店下载安装 iRime 输入法。 在电脑上点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 解压下载好的压缩包,找到以 .yaml 结尾的输入法文件。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照 Rime 官方的 教程 。 确保电脑和 iOS 设备处在同一个 WiFi 下。在 iOS 设备上点击 iRime 的图标,选择“电脑快传”。按照说明在电脑浏览器上输入 iOS 设备上显示的网址。 打开网址后,在列表内找到 default.custom.yaml 点击垃圾桶按钮将它删掉。再点击“上传文件”,将刚才解压得到的输入法文件以及第 4 步新建的 default.custom.yaml 上传上去。 退出 iOS 设备上“电脑快传”的页面,先点击“部署”,等部署完成后,再点击“选择方案”,根据自己的需要勾选输入方案。 到打字界面,点击键盘图标,在选单中选择输入法。","breadcrumbs":"安装方法 » iOS » iOS","id":"19","title":"iOS"},"2":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"吴语学堂拼音输入方案合集 » 安装方法","id":"2","title":"安装方法"},"20":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"使用 » 使用","id":"20","title":"使用"},"21":{"body":"有几个输入法默认开启了一些模糊音设置。如果使用者想要手动调整模糊音,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 比如在 wugniu_gninpou.custom.yaml 里提供了「约一不分」这一模糊音,若想要关闭这一模糊音,只需在下面两行代码的前面加上 # 号。 - derive/ia(?=q|h)/i/ - derive/ya(?=q|h)/yi/ 又如 wugniu_gninpou.custom.yaml 文件中还提供了「胡符不分」这一模糊音,但默认处于关闭状态。只需删去下面这行代码前的 # 号,就可以开启这一设置。 #- derive/wu$/vu/ 需要注意的是 YAML 格式的文件使用缩进来表示层级关系。所以在定制模糊音时要注意不要把行首的空格也删去了。 文件中每一类模糊音设置前都有文字说明,只要对照这些说明增删 # 号就行。 另外还有一些容错设置,允许用户把 au 打成 ao ,把 ao 打成 oa 等。这些容错设置也是默认开启的。 文件中还提供了转换为 协会式拼音 的选项。只需删去所有「轉爲吳語協會式拼音」和「顯示吳語協會式拼音」小节下的 # 号即可。 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。 如果用户会正则表达式,也可以参照 Rime 网站上 有关拼写运算的文档 ,自己定制模糊音甚至拼音方案。","breadcrumbs":"使用 » 模糊音 » 模糊音","id":"21","title":"模糊音"},"22":{"body":"在输入时输入法会有输入提示。提示使用者选项中每个字的读音。 因为使用者在打字时并不需要输入声调,所以输入提示默认是不显示声调的。但如果使用者出于学习或其他目的,想要在打字时知道这些字的单字调,以下几种输入方案提供了这一功能。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,找到去「輸入提示設置」这一节,删去这一节下面这几行代码前的 # 号 #- xform/( .+)\\d/$1/ #- xform/\\d(.+?)(?=\\b)/$1/ #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 输入提示 » 输入提示","id":"22","title":"输入提示"},"23":{"body":"如果不确定某个字在当地方言里的读音。吴语学堂的这些输入方案提供了两种形式的反查。一种是通过普通话反查,还有一种是通过笔画反查。按下 ` 键,键入完整的汉语拼音,就能通过汉语拼音反查字音。同样按下 ` 键,键入 hspnz 就能通过笔画反查字音,这里的 hspnz 分别代表 一丨丿丶乙 这五种基本笔画。 比如使用宁波话输入法,想查找“山”字在宁波话中的读音。就可以按下 ` 键,键入 shan ,或是键入 szs 。 反查 反查主要是为了让使用者确定某个字的拼写,所以反查不显示声调。但以下这几种输入方案可以开启声调显示。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,会有「反查標註設置」这一节。想要开启声调显示,可以删去这一小节下这行代码前的 # 号 #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 反查 » 反查","id":"23","title":"反查"},"24":{"body":"吴语学堂的这些输入方案支持用户自定义短语。 使用者可以在用户文件夹内新建名为 custom_phrase.txt 的文件,在文件中添加自定义的短语。 自定义短语的格式为短语、拼音、字频,三者用 tab 键分隔。示例如下。 吳語\twu gniu\t100 一些文本编辑器会将 tab 键转换成空格,导致自定义短语无法生效。若出现这种情况,请检查编辑器的设置,确保三者之间使用 tab 键分隔。","breadcrumbs":"使用 » 自定义短语 » 自定义短语","id":"24","title":"自定义短语"},"3":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"吴语学堂拼音输入方案合集 » 使用","id":"3","title":"使用"},"4":{"body":"https://www.wugniu.com/","breadcrumbs":"吴语学堂拼音输入方案合集 » 字音查询","id":"4","title":"字音查询"},"5":{"body":"Rime Trime iRime","breadcrumbs":"吴语学堂拼音输入方案合集 » 鸣谢","id":"5","title":"鸣谢"},"6":{"body":"吴语学堂 : QQ群:955201855 微信公众号:wugniu_com 微博: 吴语学堂微博","breadcrumbs":"吴语学堂拼音输入方案合集 » 联系","id":"6","title":"联系"},"7":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"安装方法 » 安装方法","id":"7","title":"安装方法"},"8":{"body":"","breadcrumbs":"安装方法 » Windows » Windows下安装方法","id":"8","title":"Windows下安装方法"},"9":{"body":"打开 Rime 输入法的网站 https://rime.im/ ,点击小狼毫的图标下载输入法的安装包。当前版本为 0.14.3。 Windows_下载_Rime 下载好安装包之后,双击安装。 如果弹出警告,点开“更多信息”选择“仍要运行”。(下图是安装 0.13.0 版时截的图,0.14.3 版类似) 仍要运行 同意许可证,选择安装位置。点击“安装”。 Windows_Rime_安装1 Windows_Rime_安装2 如果是第一次安装,安装进行到一半的时候,会弹出“【小狼毫】安裝選項”的界面。这里可以设定将输入法安装到哪种系统语言下,也可以自定义用户文件夹的位置。这里建议使用默认位置,避免给之后安装输入方案带来不必要的麻烦。选择完后点击“安裝”。 安裝選項 稍等一段时间,等到安装程序提示成功。点击“完成”结束安装。 Windows_Rime_安装3 点击在任务栏上输入法的图标,选择小狼毫。 选择小狼毫 选择好之后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,可以发现选单中已经有了几种输入方案。如果没有更多需求的话,就可以选一种打字了。 方案選單1","breadcrumbs":"安装方法 » Windows » 安装时添加输入方案","id":"9","title":"安装时添加输入方案"}},"length":25,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":3,"docs":{"19":{"tf":2.23606797749979},"2":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":2.0},"23":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"24":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.7320508075688772},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":3,"docs":{"19":{"tf":2.6457513110645907},"2":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":2.0},"23":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"24":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["index.html#吴语学堂拼音输入方案合集","index.html#方案列表","index.html#安装方法","index.html#使用","index.html#字音查询","index.html#鸣谢","index.html#联系","安装方法/安装方法.html#安装方法","安装方法/Windows.html#windows下安装方法","安装方法/Windows.html#安装时添加输入方案","安装方法/Windows.html#添加输入方案--更新输入方案","安装方法/Windows.html#视频教程","安装方法/macOS.html#macos下安装方法","安装方法/macOS.html#方法一","安装方法/macOS.html#方法二","安装方法/Linux.html#linux下安装方法","安装方法/Linux.html#方法一","安装方法/Linux.html#方法二","安装方法/Android.html#android","安装方法/iOS.html#ios","安装方法/iOS.html#仓输入法","安装方法/iOS.html#irime-输入法","使用/使用.html#使用","使用/模糊音.html#模糊音","使用/输入提示.html#输入提示","使用/反查.html#反查","使用/自定义短语.html#自定义短语"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":0,"title":0},"1":{"body":19,"breadcrumbs":0,"title":0},"10":{"body":10,"breadcrumbs":1,"title":0},"11":{"body":4,"breadcrumbs":1,"title":0},"12":{"body":0,"breadcrumbs":2,"title":1},"13":{"body":30,"breadcrumbs":1,"title":0},"14":{"body":45,"breadcrumbs":1,"title":0},"15":{"body":0,"breadcrumbs":2,"title":1},"16":{"body":46,"breadcrumbs":1,"title":0},"17":{"body":33,"breadcrumbs":1,"title":0},"18":{"body":10,"breadcrumbs":2,"title":1},"19":{"body":30,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":0,"title":0},"20":{"body":9,"breadcrumbs":1,"title":0},"21":{"body":10,"breadcrumbs":2,"title":1},"22":{"body":0,"breadcrumbs":0,"title":0},"23":{"body":21,"breadcrumbs":0,"title":0},"24":{"body":19,"breadcrumbs":0,"title":0},"25":{"body":20,"breadcrumbs":0,"title":0},"26":{"body":7,"breadcrumbs":0,"title":0},"3":{"body":0,"breadcrumbs":0,"title":0},"4":{"body":1,"breadcrumbs":0,"title":0},"5":{"body":3,"breadcrumbs":0,"title":0},"6":{"body":2,"breadcrumbs":0,"title":0},"7":{"body":5,"breadcrumbs":0,"title":0},"8":{"body":0,"breadcrumbs":2,"title":1},"9":{"body":12,"breadcrumbs":1,"title":0}},"docs":{"0":{"body":"","breadcrumbs":"吴语学堂拼音输入方案合集 » 吴语学堂拼音输入方案合集","id":"0","title":"吴语学堂拼音输入方案合集"},"1":{"body":"℞ NGLI/rime-wugniu_zaonhe :上海吴语 wugniu_zaonhe:上海 wugniu_zaonhe:上海(老派) wugniu_sonkaon:松江 ℞ NGLI/rime-wugniu_soutseu :苏州吴语 wugniu_soutseu:苏州 ℞ NGLI/rime-wugniu_kashin :嘉兴吴语(五县两区) wugniu_donshian:桐乡 wugniu_haegnin:海宁 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 ℞ NGLI/rime-wugniu_gninpou :宁波吴语 wugniu_gninpou:宁波 wugniu_gnincieu:鄞州","breadcrumbs":"吴语学堂拼音输入方案合集 » 方案列表","id":"1","title":"方案列表"},"10":{"body":"如果需要添加更多输入方案,可以参照以下步骤。 在任务栏 Rime 图标这边右键打开菜单。 右键打开菜单 打开后选择“輸入法設定”,就能进入“【小狼毫】方案選單設定”的界面。点击下方的“獲取更多輸入法方案...”。 方案選單設定1 点完会弹出一个命令行界面。在这个命令行中输入仓库的地址。仓库地址在输入方案网页的左上角。注意是输入 仓库地址 ,而非输入方案的名称。 仓库地址 比如要安装宁波话输入法,就可以输入 NGLI/rime-wugniu_gninpou。 输入完按下回车,等待一段时间。 plum 等到命令行界面不再变化,就可以关掉命令行界面了。再回到“【小狼毫】方案選單設定”的界面,可以发现输入法选单多了几种输入法。可以点击输入法的名字查看输入法的简介,然后根据个人需要勾选。选完点击“中”。 方案選單設定2 之后是介面風格設定,选择一个自己喜欢的配色即可。选完点击“中”。 介面風格設定 完成后,再次右键任务栏 Rime 图标打开菜单,选择“重新部署”。稍等一会儿,待其部署完成即可。 菜单 这种方法可以用于添加或更新输入方案。更新输入方案时,有可能出现更新失败的情形。可以到用户文件夹下,将已有的输入法文件删除。再试着重新安装一遍输入方案。 安装完输入方案后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,从选单中选择想要的输入法。开始打字。 方案選單2","breadcrumbs":"安装方法 » Windows » 添加输入方案 / 更新输入方案","id":"10","title":"添加输入方案 / 更新输入方案"},"11":{"body":"以下两个视频教程是以版本 0.13.0 为例讲解的,与当前版本的安装方法有差异,仅供参考。 https://www.bilibili.com/video/BV1db411S7gf https://www.bilibili.com/video/BV1qb411L7xt 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Windows » 视频教程:","id":"11","title":"视频教程:"},"12":{"body":"","breadcrumbs":"安装方法 » macOS » macOS下安装方法","id":"12","title":"macOS下安装方法"},"13":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。将上一步下载的输入法文件和这一步下载的配置文件放到Rime的用户文件夹(~/Library/Rime/,可以通过点击输入法状态栏上的Rime图标,选择“用户设定...”来打开)。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » macOS » 方法一","id":"13","title":"方法一"},"14":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件default.custom.yaml,将它放到Rime的用户文件夹(~/Library/Rime/,可以通过点击Rime图标选择“用户设定...”来打开)内。打开文件,应当显示为如下内容。 patch: schema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » macOS » 方法二","id":"14","title":"方法二"},"15":{"body":"","breadcrumbs":"安装方法 » Linux » Linux下安装方法","id":"15","title":"Linux下安装方法"},"16":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将它放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » Linux » 方法一","id":"16","title":"方法一"},"17":{"body":"安装Rime输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将上一步下载的输入法文件和这一步下载的配置文件放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Linux » 方法二","id":"17","title":"方法二"},"18":{"body":"安装同文输入法。具体可以参照 Trime 的 网站 。 安装好之后,打开同文输入法,点击“启用”,再点击“选取”选择同文输入法平台。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 输入法需要基础配置文件和基础词表,同时也依赖朙月拼音和五筆畫实现反查。点击下方链接下载。 Rime 輸入法基礎配置 essay 朙月拼音 五筆畫 解压第 3 步和第 4 步下载好的几个压缩包,找到所有以 .yaml 和 .txt 结尾的文件,将它们放到安卓设备的 /sdcard/rime 文件夹(主目录下的 rime 文件夹)。 放好后,再次打开同文输入法。选择“部署”,等待一段时间后,再选择“输入”>“方案”,根据自己的需要勾选输入方案。选完点“确定”。 到打字界面,长按输入法左下角“選單”,在选单中选择输入法。 有需要的话,也可以参阅 Trime 输入法的 文档 。","breadcrumbs":"安装方法 » Android » Android","id":"18","title":"Android"},"19":{"body":"iOS 平台下,有两个输入法应用可供选择,分别是 「仓」输入法 和 iRime 输入法 。在安装前,先要在电脑上完成一些准备工作。 点击下方链接,下载输入方案文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 解压下载好的压缩包,找到以 .yaml 结尾的输入方案文件。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照 Rime 官方的 教程 。","breadcrumbs":"安装方法 » iOS » iOS","id":"19","title":"iOS"},"2":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"吴语学堂拼音输入方案合集 » 安装方法","id":"2","title":"安装方法"},"20":{"body":"在苹果应用商店下载安装「仓」输入法。 确保电脑和 iOS 设备处在同一个 WiFi 下。在 iOS 设备上点击「仓」输入法的图标,选择「输入方案上传」>「启动服务」。按照说明在电脑浏览器上输入 iOS 设备上显示的网址。 打开网址后,双击打开 Rime 文件夹,点击上传按钮或通过拖拽,将刚才解压得到的输入方案文件以及 default.custom.yaml 上传上去。 关闭网页,并在 iOS 设备上点击「停止服务」。在 iOS 设备上选择「RIME」>「重新部署」,等部署完成后,再点击「输入方案设置」,根据自己的需要勾选输入方案。 在 iOS 的「设置」中,选择「通用」>「键盘」,点击「添加新键盘」,将「仓输入法」添加到键盘中。 到打字界面,点击键盘图标,在选单中选择输入法。","breadcrumbs":"安装方法 » iOS » 「仓」输入法","id":"20","title":"「仓」输入法"},"21":{"body":"在苹果应用商店下载安装 iRime 输入法。 确保电脑和 iOS 设备处在同一个 WiFi 下。在 iOS 设备上点击 iRime 的图标,选择“电脑快传”。按照说明在电脑浏览器上输入 iOS 设备上显示的网址。 打开网址后,在列表内找到 default.custom.yaml 点击垃圾桶按钮将它删掉。再点击“上传文件”,将刚才解压得到的输入方案文件以及 default.custom.yaml 上传上去。 退出 iOS 设备上“电脑快传”的页面,先点击“部署”,等部署完成后,再点击“选择方案”,根据自己的需要勾选输入方案。 在 iOS 的「设置」中,选择「通用」>「键盘」,点击「添加新键盘」,将「iRime 输入法」添加到键盘中。 到打字界面,点击键盘图标,在选单中选择输入法。","breadcrumbs":"安装方法 » iOS » iRime 输入法","id":"21","title":"iRime 输入法"},"22":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"使用 » 使用","id":"22","title":"使用"},"23":{"body":"有几个输入法默认开启了一些模糊音设置。如果使用者想要手动调整模糊音,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 比如在 wugniu_gninpou.custom.yaml 里提供了「约一不分」这一模糊音,若想要关闭这一模糊音,只需在下面两行代码的前面加上 # 号。 - derive/ia(?=q|h)/i/ - derive/ya(?=q|h)/yi/ 又如 wugniu_gninpou.custom.yaml 文件中还提供了「胡符不分」这一模糊音,但默认处于关闭状态。只需删去下面这行代码前的 # 号,就可以开启这一设置。 #- derive/wu$/vu/ 需要注意的是 YAML 格式的文件使用缩进来表示层级关系。所以在定制模糊音时要注意不要把行首的空格也删去了。 文件中每一类模糊音设置前都有文字说明,只要对照这些说明增删 # 号就行。 另外还有一些容错设置,允许用户把 au 打成 ao ,把 ao 打成 oa 等。这些容错设置也是默认开启的。 文件中还提供了转换为 协会式拼音 的选项。只需删去所有「轉爲吳語協會式拼音」和「顯示吳語協會式拼音」小节下的 # 号即可。 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。 如果用户会正则表达式,也可以参照 Rime 网站上 有关拼写运算的文档 ,自己定制模糊音甚至拼音方案。","breadcrumbs":"使用 » 模糊音 » 模糊音","id":"23","title":"模糊音"},"24":{"body":"在输入时输入法会有输入提示。提示使用者选项中每个字的读音。 因为使用者在打字时并不需要输入声调,所以输入提示默认是不显示声调的。但如果使用者出于学习或其他目的,想要在打字时知道这些字的单字调,以下几种输入方案提供了这一功能。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,找到去「輸入提示設置」这一节,删去这一节下面这几行代码前的 # 号 #- xform/( .+)\\d/$1/ #- xform/\\d(.+?)(?=\\b)/$1/ #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 输入提示 » 输入提示","id":"24","title":"输入提示"},"25":{"body":"如果不确定某个字在当地方言里的读音。吴语学堂的这些输入方案提供了两种形式的反查。一种是通过普通话反查,还有一种是通过笔画反查。按下 ` 键,键入完整的汉语拼音,就能通过汉语拼音反查字音。同样按下 ` 键,键入 hspnz 就能通过笔画反查字音,这里的 hspnz 分别代表 一丨丿丶乙 这五种基本笔画。 比如使用宁波话输入法,想查找“山”字在宁波话中的读音。就可以按下 ` 键,键入 shan ,或是键入 szs 。 反查 反查主要是为了让使用者确定某个字的拼写,所以反查不显示声调。但以下这几种输入方案可以开启声调显示。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,会有「反查標註設置」这一节。想要开启声调显示,可以删去这一小节下这行代码前的 # 号 #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 反查 » 反查","id":"25","title":"反查"},"26":{"body":"吴语学堂的这些输入方案支持用户自定义短语。 使用者可以在用户文件夹内新建名为 custom_phrase.txt 的文件,在文件中添加自定义的短语。 自定义短语的格式为短语、拼音、字频,三者用 tab 键分隔。示例如下。 吳語\twu gniu\t100 一些文本编辑器会将 tab 键转换成空格,导致自定义短语无法生效。若出现这种情况,请检查编辑器的设置,确保三者之间使用 tab 键分隔。","breadcrumbs":"使用 » 自定义短语 » 自定义短语","id":"26","title":"自定义短语"},"3":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"吴语学堂拼音输入方案合集 » 使用","id":"3","title":"使用"},"4":{"body":"https://www.wugniu.com/","breadcrumbs":"吴语学堂拼音输入方案合集 » 字音查询","id":"4","title":"字音查询"},"5":{"body":"Rime Trime iRime","breadcrumbs":"吴语学堂拼音输入方案合集 » 鸣谢","id":"5","title":"鸣谢"},"6":{"body":"吴语学堂 : QQ群:955201855 微信公众号:wugniu_com 微博: 吴语学堂微博","breadcrumbs":"吴语学堂拼音输入方案合集 » 联系","id":"6","title":"联系"},"7":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"安装方法 » 安装方法","id":"7","title":"安装方法"},"8":{"body":"","breadcrumbs":"安装方法 » Windows » Windows下安装方法","id":"8","title":"Windows下安装方法"},"9":{"body":"打开 Rime 输入法的网站 https://rime.im/ ,点击小狼毫的图标下载输入法的安装包。当前版本为 0.14.3。 Windows_下载_Rime 下载好安装包之后,双击安装。 如果弹出警告,点开“更多信息”选择“仍要运行”。(下图是安装 0.13.0 版时截的图,0.14.3 版类似) 仍要运行 同意许可证,选择安装位置。点击“安装”。 Windows_Rime_安装1 Windows_Rime_安装2 如果是第一次安装,安装进行到一半的时候,会弹出“【小狼毫】安裝選項”的界面。这里可以设定将输入法安装到哪种系统语言下,也可以自定义用户文件夹的位置。这里建议使用默认位置,避免给之后安装输入方案带来不必要的麻烦。选择完后点击“安裝”。 安裝選項 稍等一段时间,等到安装程序提示成功。点击“完成”结束安装。 Windows_Rime_安装3 点击在任务栏上输入法的图标,选择小狼毫。 选择小狼毫 选择好之后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,可以发现选单中已经有了几种输入方案。如果没有更多需求的话,就可以选一种打字了。 方案選單1","breadcrumbs":"安装方法 » Windows » 安装时添加输入方案","id":"9","title":"安装时添加输入方案"}},"length":27,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":1,"docs":{"18":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":2.23606797749979},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":1,"docs":{"18":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.7320508075688772},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":5,"docs":{"19":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":2.449489742783178},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":2.0},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/searchindex.json b/searchindex.json index 7d87262..2048229 100644 --- a/searchindex.json +++ b/searchindex.json @@ -1 +1 @@ -{"doc_urls":["index.html#吴语学堂拼音输入方案合集","index.html#方案列表","index.html#安装方法","index.html#使用","index.html#字音查询","index.html#鸣谢","index.html#联系","安装方法/安装方法.html#安装方法","安装方法/Windows.html#windows下安装方法","安装方法/Windows.html#安装时添加输入方案","安装方法/Windows.html#添加输入方案--更新输入方案","安装方法/Windows.html#视频教程","安装方法/macOS.html#macos下安装方法","安装方法/macOS.html#方法一","安装方法/macOS.html#方法二","安装方法/Linux.html#linux下安装方法","安装方法/Linux.html#方法一","安装方法/Linux.html#方法二","安装方法/Android.html#android","安装方法/iOS.html#ios","使用/使用.html#使用","使用/模糊音.html#模糊音","使用/输入提示.html#输入提示","使用/反查.html#反查","使用/自定义短语.html#自定义短语"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":0,"title":0},"1":{"body":19,"breadcrumbs":0,"title":0},"10":{"body":10,"breadcrumbs":1,"title":0},"11":{"body":4,"breadcrumbs":1,"title":0},"12":{"body":0,"breadcrumbs":2,"title":1},"13":{"body":30,"breadcrumbs":1,"title":0},"14":{"body":45,"breadcrumbs":1,"title":0},"15":{"body":0,"breadcrumbs":2,"title":1},"16":{"body":46,"breadcrumbs":1,"title":0},"17":{"body":33,"breadcrumbs":1,"title":0},"18":{"body":10,"breadcrumbs":2,"title":1},"19":{"body":38,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":0,"title":0},"20":{"body":0,"breadcrumbs":0,"title":0},"21":{"body":21,"breadcrumbs":0,"title":0},"22":{"body":19,"breadcrumbs":0,"title":0},"23":{"body":20,"breadcrumbs":0,"title":0},"24":{"body":7,"breadcrumbs":0,"title":0},"3":{"body":0,"breadcrumbs":0,"title":0},"4":{"body":1,"breadcrumbs":0,"title":0},"5":{"body":3,"breadcrumbs":0,"title":0},"6":{"body":2,"breadcrumbs":0,"title":0},"7":{"body":5,"breadcrumbs":0,"title":0},"8":{"body":0,"breadcrumbs":2,"title":1},"9":{"body":12,"breadcrumbs":1,"title":0}},"docs":{"0":{"body":"","breadcrumbs":"吴语学堂拼音输入方案合集 » 吴语学堂拼音输入方案合集","id":"0","title":"吴语学堂拼音输入方案合集"},"1":{"body":"℞ NGLI/rime-wugniu_zaonhe :上海吴语 wugniu_zaonhe:上海 wugniu_zaonhe:上海(老派) wugniu_sonkaon:松江 ℞ NGLI/rime-wugniu_soutseu :苏州吴语 wugniu_soutseu:苏州 ℞ NGLI/rime-wugniu_kashin :嘉兴吴语(五县两区) wugniu_donshian:桐乡 wugniu_haegnin:海宁 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 ℞ NGLI/rime-wugniu_gninpou :宁波吴语 wugniu_gninpou:宁波 wugniu_gnincieu:鄞州","breadcrumbs":"吴语学堂拼音输入方案合集 » 方案列表","id":"1","title":"方案列表"},"10":{"body":"如果需要添加更多输入方案,可以参照以下步骤。 在任务栏 Rime 图标这边右键打开菜单。 右键打开菜单 打开后选择“輸入法設定”,就能进入“【小狼毫】方案選單設定”的界面。点击下方的“獲取更多輸入法方案...”。 方案選單設定1 点完会弹出一个命令行界面。在这个命令行中输入仓库的地址。仓库地址在输入方案网页的左上角。注意是输入 仓库地址 ,而非输入方案的名称。 仓库地址 比如要安装宁波话输入法,就可以输入 NGLI/rime-wugniu_gninpou。 输入完按下回车,等待一段时间。 plum 等到命令行界面不再变化,就可以关掉命令行界面了。再回到“【小狼毫】方案選單設定”的界面,可以发现输入法选单多了几种输入法。可以点击输入法的名字查看输入法的简介,然后根据个人需要勾选。选完点击“中”。 方案選單設定2 之后是介面風格設定,选择一个自己喜欢的配色即可。选完点击“中”。 介面風格設定 完成后,再次右键任务栏 Rime 图标打开菜单,选择“重新部署”。稍等一会儿,待其部署完成即可。 菜单 这种方法可以用于添加或更新输入方案。更新输入方案时,有可能出现更新失败的情形。可以到用户文件夹下,将已有的输入法文件删除。再试着重新安装一遍输入方案。 安装完输入方案后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,从选单中选择想要的输入法。开始打字。 方案選單2","breadcrumbs":"安装方法 » Windows » 添加输入方案 / 更新输入方案","id":"10","title":"添加输入方案 / 更新输入方案"},"11":{"body":"以下两个视频教程是以版本 0.13.0 为例讲解的,与当前版本的安装方法有差异,仅供参考。 https://www.bilibili.com/video/BV1db411S7gf https://www.bilibili.com/video/BV1qb411L7xt 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Windows » 视频教程:","id":"11","title":"视频教程:"},"12":{"body":"","breadcrumbs":"安装方法 » macOS » macOS下安装方法","id":"12","title":"macOS下安装方法"},"13":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。将上一步下载的输入法文件和这一步下载的配置文件放到Rime的用户文件夹(~/Library/Rime/,可以通过点击输入法状态栏上的Rime图标,选择“用户设定...”来打开)。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » macOS » 方法一","id":"13","title":"方法一"},"14":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件default.custom.yaml,将它放到Rime的用户文件夹(~/Library/Rime/,可以通过点击Rime图标选择“用户设定...”来打开)内。打开文件,应当显示为如下内容。 patch: schema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » macOS » 方法二","id":"14","title":"方法二"},"15":{"body":"","breadcrumbs":"安装方法 » Linux » Linux下安装方法","id":"15","title":"Linux下安装方法"},"16":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将它放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » Linux » 方法一","id":"16","title":"方法一"},"17":{"body":"安装Rime输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将上一步下载的输入法文件和这一步下载的配置文件放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Linux » 方法二","id":"17","title":"方法二"},"18":{"body":"安装同文输入法。具体可以参照 Trime 的 网站 。 安装好之后,打开同文输入法,点击“启用”,再点击“选取”选择同文输入法平台。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 输入法需要基础配置文件和基础词表,同时也依赖朙月拼音和五筆畫实现反查。点击下方链接下载。 Rime 輸入法基礎配置 essay 朙月拼音 五筆畫 解压第 3 步和第 4 步下载好的几个压缩包,找到所有以 .yaml 和 .txt 结尾的文件,将它们放到安卓设备的 /sdcard/rime 文件夹(主目录下的 rime 文件夹)。 放好后,再次打开同文输入法。选择“部署”,等待一段时间后,再选择“输入”>“方案”,根据自己的需要勾选输入方案。选完点“确定”。 到打字界面,长按输入法左下角“選單”,在选单中选择输入法。 有需要的话,也可以参阅 Trime 输入法的 文档 。","breadcrumbs":"安装方法 » Android » Android","id":"18","title":"Android"},"19":{"body":"至苹果应用商店下载安装 iRime 输入法。 在电脑上点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 解压下载好的压缩包,找到以 .yaml 结尾的输入法文件。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照 Rime 官方的 教程 。 确保电脑和 iOS 设备处在同一个 WiFi 下。在 iOS 设备上点击 iRime 的图标,选择“电脑快传”。按照说明在电脑浏览器上输入 iOS 设备上显示的网址。 打开网址后,在列表内找到 default.custom.yaml 点击垃圾桶按钮将它删掉。再点击“上传文件”,将刚才解压得到的输入法文件以及第 4 步新建的 default.custom.yaml 上传上去。 退出 iOS 设备上“电脑快传”的页面,先点击“部署”,等部署完成后,再点击“选择方案”,根据自己的需要勾选输入方案。 到打字界面,点击键盘图标,在选单中选择输入法。","breadcrumbs":"安装方法 » iOS » iOS","id":"19","title":"iOS"},"2":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"吴语学堂拼音输入方案合集 » 安装方法","id":"2","title":"安装方法"},"20":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"使用 » 使用","id":"20","title":"使用"},"21":{"body":"有几个输入法默认开启了一些模糊音设置。如果使用者想要手动调整模糊音,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 比如在 wugniu_gninpou.custom.yaml 里提供了「约一不分」这一模糊音,若想要关闭这一模糊音,只需在下面两行代码的前面加上 # 号。 - derive/ia(?=q|h)/i/ - derive/ya(?=q|h)/yi/ 又如 wugniu_gninpou.custom.yaml 文件中还提供了「胡符不分」这一模糊音,但默认处于关闭状态。只需删去下面这行代码前的 # 号,就可以开启这一设置。 #- derive/wu$/vu/ 需要注意的是 YAML 格式的文件使用缩进来表示层级关系。所以在定制模糊音时要注意不要把行首的空格也删去了。 文件中每一类模糊音设置前都有文字说明,只要对照这些说明增删 # 号就行。 另外还有一些容错设置,允许用户把 au 打成 ao ,把 ao 打成 oa 等。这些容错设置也是默认开启的。 文件中还提供了转换为 协会式拼音 的选项。只需删去所有「轉爲吳語協會式拼音」和「顯示吳語協會式拼音」小节下的 # 号即可。 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。 如果用户会正则表达式,也可以参照 Rime 网站上 有关拼写运算的文档 ,自己定制模糊音甚至拼音方案。","breadcrumbs":"使用 » 模糊音 » 模糊音","id":"21","title":"模糊音"},"22":{"body":"在输入时输入法会有输入提示。提示使用者选项中每个字的读音。 因为使用者在打字时并不需要输入声调,所以输入提示默认是不显示声调的。但如果使用者出于学习或其他目的,想要在打字时知道这些字的单字调,以下几种输入方案提供了这一功能。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,找到去「輸入提示設置」这一节,删去这一节下面这几行代码前的 # 号 #- xform/( .+)\\d/$1/ #- xform/\\d(.+?)(?=\\b)/$1/ #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 输入提示 » 输入提示","id":"22","title":"输入提示"},"23":{"body":"如果不确定某个字在当地方言里的读音。吴语学堂的这些输入方案提供了两种形式的反查。一种是通过普通话反查,还有一种是通过笔画反查。按下 ` 键,键入完整的汉语拼音,就能通过汉语拼音反查字音。同样按下 ` 键,键入 hspnz 就能通过笔画反查字音,这里的 hspnz 分别代表 一丨丿丶乙 这五种基本笔画。 比如使用宁波话输入法,想查找“山”字在宁波话中的读音。就可以按下 ` 键,键入 shan ,或是键入 szs 。 反查 反查主要是为了让使用者确定某个字的拼写,所以反查不显示声调。但以下这几种输入方案可以开启声调显示。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,会有「反查標註設置」这一节。想要开启声调显示,可以删去这一小节下这行代码前的 # 号 #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 反查 » 反查","id":"23","title":"反查"},"24":{"body":"吴语学堂的这些输入方案支持用户自定义短语。 使用者可以在用户文件夹内新建名为 custom_phrase.txt 的文件,在文件中添加自定义的短语。 自定义短语的格式为短语、拼音、字频,三者用 tab 键分隔。示例如下。 吳語\twu gniu\t100 一些文本编辑器会将 tab 键转换成空格,导致自定义短语无法生效。若出现这种情况,请检查编辑器的设置,确保三者之间使用 tab 键分隔。","breadcrumbs":"使用 » 自定义短语 » 自定义短语","id":"24","title":"自定义短语"},"3":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"吴语学堂拼音输入方案合集 » 使用","id":"3","title":"使用"},"4":{"body":"https://www.wugniu.com/","breadcrumbs":"吴语学堂拼音输入方案合集 » 字音查询","id":"4","title":"字音查询"},"5":{"body":"Rime Trime iRime","breadcrumbs":"吴语学堂拼音输入方案合集 » 鸣谢","id":"5","title":"鸣谢"},"6":{"body":"吴语学堂 : QQ群:955201855 微信公众号:wugniu_com 微博: 吴语学堂微博","breadcrumbs":"吴语学堂拼音输入方案合集 » 联系","id":"6","title":"联系"},"7":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"安装方法 » 安装方法","id":"7","title":"安装方法"},"8":{"body":"","breadcrumbs":"安装方法 » Windows » Windows下安装方法","id":"8","title":"Windows下安装方法"},"9":{"body":"打开 Rime 输入法的网站 https://rime.im/ ,点击小狼毫的图标下载输入法的安装包。当前版本为 0.14.3。 Windows_下载_Rime 下载好安装包之后,双击安装。 如果弹出警告,点开“更多信息”选择“仍要运行”。(下图是安装 0.13.0 版时截的图,0.14.3 版类似) 仍要运行 同意许可证,选择安装位置。点击“安装”。 Windows_Rime_安装1 Windows_Rime_安装2 如果是第一次安装,安装进行到一半的时候,会弹出“【小狼毫】安裝選項”的界面。这里可以设定将输入法安装到哪种系统语言下,也可以自定义用户文件夹的位置。这里建议使用默认位置,避免给之后安装输入方案带来不必要的麻烦。选择完后点击“安裝”。 安裝選項 稍等一段时间,等到安装程序提示成功。点击“完成”结束安装。 Windows_Rime_安装3 点击在任务栏上输入法的图标,选择小狼毫。 选择小狼毫 选择好之后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,可以发现选单中已经有了几种输入方案。如果没有更多需求的话,就可以选一种打字了。 方案選單1","breadcrumbs":"安装方法 » Windows » 安装时添加输入方案","id":"9","title":"安装时添加输入方案"}},"length":25,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":3,"docs":{"19":{"tf":2.23606797749979},"2":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":2.0},"23":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"24":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.7320508075688772},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":3,"docs":{"19":{"tf":2.6457513110645907},"2":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":2.0},"23":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"23":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"24":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["index.html#吴语学堂拼音输入方案合集","index.html#方案列表","index.html#安装方法","index.html#使用","index.html#字音查询","index.html#鸣谢","index.html#联系","安装方法/安装方法.html#安装方法","安装方法/Windows.html#windows下安装方法","安装方法/Windows.html#安装时添加输入方案","安装方法/Windows.html#添加输入方案--更新输入方案","安装方法/Windows.html#视频教程","安装方法/macOS.html#macos下安装方法","安装方法/macOS.html#方法一","安装方法/macOS.html#方法二","安装方法/Linux.html#linux下安装方法","安装方法/Linux.html#方法一","安装方法/Linux.html#方法二","安装方法/Android.html#android","安装方法/iOS.html#ios","安装方法/iOS.html#仓输入法","安装方法/iOS.html#irime-输入法","使用/使用.html#使用","使用/模糊音.html#模糊音","使用/输入提示.html#输入提示","使用/反查.html#反查","使用/自定义短语.html#自定义短语"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":0,"title":0},"1":{"body":19,"breadcrumbs":0,"title":0},"10":{"body":10,"breadcrumbs":1,"title":0},"11":{"body":4,"breadcrumbs":1,"title":0},"12":{"body":0,"breadcrumbs":2,"title":1},"13":{"body":30,"breadcrumbs":1,"title":0},"14":{"body":45,"breadcrumbs":1,"title":0},"15":{"body":0,"breadcrumbs":2,"title":1},"16":{"body":46,"breadcrumbs":1,"title":0},"17":{"body":33,"breadcrumbs":1,"title":0},"18":{"body":10,"breadcrumbs":2,"title":1},"19":{"body":30,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":0,"title":0},"20":{"body":9,"breadcrumbs":1,"title":0},"21":{"body":10,"breadcrumbs":2,"title":1},"22":{"body":0,"breadcrumbs":0,"title":0},"23":{"body":21,"breadcrumbs":0,"title":0},"24":{"body":19,"breadcrumbs":0,"title":0},"25":{"body":20,"breadcrumbs":0,"title":0},"26":{"body":7,"breadcrumbs":0,"title":0},"3":{"body":0,"breadcrumbs":0,"title":0},"4":{"body":1,"breadcrumbs":0,"title":0},"5":{"body":3,"breadcrumbs":0,"title":0},"6":{"body":2,"breadcrumbs":0,"title":0},"7":{"body":5,"breadcrumbs":0,"title":0},"8":{"body":0,"breadcrumbs":2,"title":1},"9":{"body":12,"breadcrumbs":1,"title":0}},"docs":{"0":{"body":"","breadcrumbs":"吴语学堂拼音输入方案合集 » 吴语学堂拼音输入方案合集","id":"0","title":"吴语学堂拼音输入方案合集"},"1":{"body":"℞ NGLI/rime-wugniu_zaonhe :上海吴语 wugniu_zaonhe:上海 wugniu_zaonhe:上海(老派) wugniu_sonkaon:松江 ℞ NGLI/rime-wugniu_soutseu :苏州吴语 wugniu_soutseu:苏州 ℞ NGLI/rime-wugniu_kashin :嘉兴吴语(五县两区) wugniu_donshian:桐乡 wugniu_haegnin:海宁 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 ℞ NGLI/rime-wugniu_gninpou :宁波吴语 wugniu_gninpou:宁波 wugniu_gnincieu:鄞州","breadcrumbs":"吴语学堂拼音输入方案合集 » 方案列表","id":"1","title":"方案列表"},"10":{"body":"如果需要添加更多输入方案,可以参照以下步骤。 在任务栏 Rime 图标这边右键打开菜单。 右键打开菜单 打开后选择“輸入法設定”,就能进入“【小狼毫】方案選單設定”的界面。点击下方的“獲取更多輸入法方案...”。 方案選單設定1 点完会弹出一个命令行界面。在这个命令行中输入仓库的地址。仓库地址在输入方案网页的左上角。注意是输入 仓库地址 ,而非输入方案的名称。 仓库地址 比如要安装宁波话输入法,就可以输入 NGLI/rime-wugniu_gninpou。 输入完按下回车,等待一段时间。 plum 等到命令行界面不再变化,就可以关掉命令行界面了。再回到“【小狼毫】方案選單設定”的界面,可以发现输入法选单多了几种输入法。可以点击输入法的名字查看输入法的简介,然后根据个人需要勾选。选完点击“中”。 方案選單設定2 之后是介面風格設定,选择一个自己喜欢的配色即可。选完点击“中”。 介面風格設定 完成后,再次右键任务栏 Rime 图标打开菜单,选择“重新部署”。稍等一会儿,待其部署完成即可。 菜单 这种方法可以用于添加或更新输入方案。更新输入方案时,有可能出现更新失败的情形。可以到用户文件夹下,将已有的输入法文件删除。再试着重新安装一遍输入方案。 安装完输入方案后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,从选单中选择想要的输入法。开始打字。 方案選單2","breadcrumbs":"安装方法 » Windows » 添加输入方案 / 更新输入方案","id":"10","title":"添加输入方案 / 更新输入方案"},"11":{"body":"以下两个视频教程是以版本 0.13.0 为例讲解的,与当前版本的安装方法有差异,仅供参考。 https://www.bilibili.com/video/BV1db411S7gf https://www.bilibili.com/video/BV1qb411L7xt 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Windows » 视频教程:","id":"11","title":"视频教程:"},"12":{"body":"","breadcrumbs":"安装方法 » macOS » macOS下安装方法","id":"12","title":"macOS下安装方法"},"13":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。将上一步下载的输入法文件和这一步下载的配置文件放到Rime的用户文件夹(~/Library/Rime/,可以通过点击输入法状态栏上的Rime图标,选择“用户设定...”来打开)。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » macOS » 方法一","id":"13","title":"方法一"},"14":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件default.custom.yaml,将它放到Rime的用户文件夹(~/Library/Rime/,可以通过点击Rime图标选择“用户设定...”来打开)内。打开文件,应当显示为如下内容。 patch: schema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“重新部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » macOS » 方法二","id":"14","title":"方法二"},"15":{"body":"","breadcrumbs":"安装方法 » Linux » Linux下安装方法","id":"15","title":"Linux下安装方法"},"16":{"body":"安装 Rime 输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 在终端内运行以下命令,安装 東風破 (需要先安装 git )。 curl -fsSL https://git.io/rime-install | bash 以安装宁波话输入法为例,运行以下命令,下载输入法码表。 cd plum\nbash rime-install NGLI/rime-wugniu_gninpou 要安装其他输入法,只需将 NGLI/rime-wugniu_gninpou 替换为仓库地址就可以了。注意是 仓库地址 不是输入法的方案名称。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将它放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。","breadcrumbs":"安装方法 » Linux » 方法一","id":"16","title":"方法一"},"17":{"body":"安装Rime输入法。安装和使用方法见 Rime 输入法的网站 https://rime.im/ 。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml,将上一步下载的输入法文件和这一步下载的配置文件放到 Rime 的用户文件夹(~/.config/ibus/rime/)内。 打开配置文件 default.custom.yaml,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照Rime官方的 教程 。 在输入法状态栏上点击“部署”。等待一段时间。 按F4或Ctrl+`,从选单中选择想要的输入法。 有需要的话,也可以参阅 Rime 输入法的 文档 。","breadcrumbs":"安装方法 » Linux » 方法二","id":"17","title":"方法二"},"18":{"body":"安装同文输入法。具体可以参照 Trime 的 网站 。 安装好之后,打开同文输入法,点击“启用”,再点击“选取”选择同文输入法平台。 点击下方链接,下载输入法文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 输入法需要基础配置文件和基础词表,同时也依赖朙月拼音和五筆畫实现反查。点击下方链接下载。 Rime 輸入法基礎配置 essay 朙月拼音 五筆畫 解压第 3 步和第 4 步下载好的几个压缩包,找到所有以 .yaml 和 .txt 结尾的文件,将它们放到安卓设备的 /sdcard/rime 文件夹(主目录下的 rime 文件夹)。 放好后,再次打开同文输入法。选择“部署”,等待一段时间后,再选择“输入”>“方案”,根据自己的需要勾选输入方案。选完点“确定”。 到打字界面,长按输入法左下角“選單”,在选单中选择输入法。 有需要的话,也可以参阅 Trime 输入法的 文档 。","breadcrumbs":"安装方法 » Android » Android","id":"18","title":"Android"},"19":{"body":"iOS 平台下,有两个输入法应用可供选择,分别是 「仓」输入法 和 iRime 输入法 。在安装前,先要在电脑上完成一些准备工作。 点击下方链接,下载输入方案文件。 上海 (包含中派上海、老派上海和松江三种口音) 苏州 嘉兴 (包含桐乡、海宁、海盐、嘉兴、嘉善五种口音) 宁波 (包含宁波和鄞州两种口音) 解压下载好的压缩包,找到以 .yaml 结尾的输入方案文件。 点击 此处 下载压缩包,解压后可得配置文件 default.custom.yaml。打开文件,应当显示为如下内容。 patch:\nschema_list: - schema: wugniu_zaonhe # 上海 - schema: wugniu_zaonhe_laupha # 上海(老派) - schema: wugniu_sonkaon # 松江 - schema: wugniu_soutseu # 苏州 - schema: wugniu_donshian # 桐乡 - schema: wugniu_haegnin # 海宁 - schema: wugniu_haeye # 海盐 - schema: wugniu_kashin # 嘉兴 - schema: wugniu_kazoe # 嘉善 - schema: wugniu_gninpou # 宁波 - schema: wugniu_gnincieu # 鄞州 -schema: 后面跟输入方案的名称。不需要某种输入法,就将那一行删去,只保留需要的。如果需要更多的输入法,也可以自行在列表中修改添加。具体可以参照 Rime 官方的 教程 。","breadcrumbs":"安装方法 » iOS » iOS","id":"19","title":"iOS"},"2":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"吴语学堂拼音输入方案合集 » 安装方法","id":"2","title":"安装方法"},"20":{"body":"在苹果应用商店下载安装「仓」输入法。 确保电脑和 iOS 设备处在同一个 WiFi 下。在 iOS 设备上点击「仓」输入法的图标,选择「输入方案上传」>「启动服务」。按照说明在电脑浏览器上输入 iOS 设备上显示的网址。 打开网址后,双击打开 Rime 文件夹,点击上传按钮或通过拖拽,将刚才解压得到的输入方案文件以及 default.custom.yaml 上传上去。 关闭网页,并在 iOS 设备上点击「停止服务」。在 iOS 设备上选择「RIME」>「重新部署」,等部署完成后,再点击「输入方案设置」,根据自己的需要勾选输入方案。 在 iOS 的「设置」中,选择「通用」>「键盘」,点击「添加新键盘」,将「仓输入法」添加到键盘中。 到打字界面,点击键盘图标,在选单中选择输入法。","breadcrumbs":"安装方法 » iOS » 「仓」输入法","id":"20","title":"「仓」输入法"},"21":{"body":"在苹果应用商店下载安装 iRime 输入法。 确保电脑和 iOS 设备处在同一个 WiFi 下。在 iOS 设备上点击 iRime 的图标,选择“电脑快传”。按照说明在电脑浏览器上输入 iOS 设备上显示的网址。 打开网址后,在列表内找到 default.custom.yaml 点击垃圾桶按钮将它删掉。再点击“上传文件”,将刚才解压得到的输入方案文件以及 default.custom.yaml 上传上去。 退出 iOS 设备上“电脑快传”的页面,先点击“部署”,等部署完成后,再点击“选择方案”,根据自己的需要勾选输入方案。 在 iOS 的「设置」中,选择「通用」>「键盘」,点击「添加新键盘」,将「iRime 输入法」添加到键盘中。 到打字界面,点击键盘图标,在选单中选择输入法。","breadcrumbs":"安装方法 » iOS » iRime 输入法","id":"21","title":"iRime 输入法"},"22":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"使用 » 使用","id":"22","title":"使用"},"23":{"body":"有几个输入法默认开启了一些模糊音设置。如果使用者想要手动调整模糊音,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 比如在 wugniu_gninpou.custom.yaml 里提供了「约一不分」这一模糊音,若想要关闭这一模糊音,只需在下面两行代码的前面加上 # 号。 - derive/ia(?=q|h)/i/ - derive/ya(?=q|h)/yi/ 又如 wugniu_gninpou.custom.yaml 文件中还提供了「胡符不分」这一模糊音,但默认处于关闭状态。只需删去下面这行代码前的 # 号,就可以开启这一设置。 #- derive/wu$/vu/ 需要注意的是 YAML 格式的文件使用缩进来表示层级关系。所以在定制模糊音时要注意不要把行首的空格也删去了。 文件中每一类模糊音设置前都有文字说明,只要对照这些说明增删 # 号就行。 另外还有一些容错设置,允许用户把 au 打成 ao ,把 ao 打成 oa 等。这些容错设置也是默认开启的。 文件中还提供了转换为 协会式拼音 的选项。只需删去所有「轉爲吳語協會式拼音」和「顯示吳語協會式拼音」小节下的 # 号即可。 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。 如果用户会正则表达式,也可以参照 Rime 网站上 有关拼写运算的文档 ,自己定制模糊音甚至拼音方案。","breadcrumbs":"使用 » 模糊音 » 模糊音","id":"23","title":"模糊音"},"24":{"body":"在输入时输入法会有输入提示。提示使用者选项中每个字的读音。 因为使用者在打字时并不需要输入声调,所以输入提示默认是不显示声调的。但如果使用者出于学习或其他目的,想要在打字时知道这些字的单字调,以下几种输入方案提供了这一功能。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,找到去「輸入提示設置」这一节,删去这一节下面这几行代码前的 # 号 #- xform/( .+)\\d/$1/ #- xform/\\d(.+?)(?=\\b)/$1/ #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 输入提示 » 输入提示","id":"24","title":"输入提示"},"25":{"body":"如果不确定某个字在当地方言里的读音。吴语学堂的这些输入方案提供了两种形式的反查。一种是通过普通话反查,还有一种是通过笔画反查。按下 ` 键,键入完整的汉语拼音,就能通过汉语拼音反查字音。同样按下 ` 键,键入 hspnz 就能通过笔画反查字音,这里的 hspnz 分别代表 一丨丿丶乙 这五种基本笔画。 比如使用宁波话输入法,想查找“山”字在宁波话中的读音。就可以按下 ` 键,键入 shan ,或是键入 szs 。 反查 反查主要是为了让使用者确定某个字的拼写,所以反查不显示声调。但以下这几种输入方案可以开启声调显示。 wugniu_soutseu:苏州 wugniu_haeye:海盐 wugniu_kashin:嘉兴 wugniu_kazoe:嘉善 如果使用者需要,可以点击 此处 下载模糊音定制模板。解压后找到对应地区的 .custom.yaml 结尾的文件。用记事本或其他文本编辑器打开它。 模糊音模板文件内,会有「反查標註設置」这一节。想要开启声调显示,可以删去这一小节下这行代码前的 # 号 #- xlit/12345678/¹²³⁴⁵⁶⁷⁸/ 同时在下面这行前面加上 # 号 - xform/\\d// 更改完后,记得保存。保存好之后,将文件放到 Rime 输入法的用户文件夹中。Windows 系统下用户文件夹的位置在 %APPDATA%\\Rime,Mac OS 下是 ~/Library/Rime,Linux 下是 ~/.config/ibus/rime。Windows 下也可以通过右键任务栏上的 Rime 图标来找到用户文件夹。 将文件放入用户文件夹之后,右键 Rime 图标点击“重新部署”。稍等一会儿就能生效了。 更多定制方法,请参照 Rime 的 定制指南 。","breadcrumbs":"使用 » 反查 » 反查","id":"25","title":"反查"},"26":{"body":"吴语学堂的这些输入方案支持用户自定义短语。 使用者可以在用户文件夹内新建名为 custom_phrase.txt 的文件,在文件中添加自定义的短语。 自定义短语的格式为短语、拼音、字频,三者用 tab 键分隔。示例如下。 吳語\twu gniu\t100 一些文本编辑器会将 tab 键转换成空格,导致自定义短语无法生效。若出现这种情况,请检查编辑器的设置,确保三者之间使用 tab 键分隔。","breadcrumbs":"使用 » 自定义短语 » 自定义短语","id":"26","title":"自定义短语"},"3":{"body":"模糊音 输入提示 反查 自定义短语","breadcrumbs":"吴语学堂拼音输入方案合集 » 使用","id":"3","title":"使用"},"4":{"body":"https://www.wugniu.com/","breadcrumbs":"吴语学堂拼音输入方案合集 » 字音查询","id":"4","title":"字音查询"},"5":{"body":"Rime Trime iRime","breadcrumbs":"吴语学堂拼音输入方案合集 » 鸣谢","id":"5","title":"鸣谢"},"6":{"body":"吴语学堂 : QQ群:955201855 微信公众号:wugniu_com 微博: 吴语学堂微博","breadcrumbs":"吴语学堂拼音输入方案合集 » 联系","id":"6","title":"联系"},"7":{"body":"Windows macOS Linux Android iOS","breadcrumbs":"安装方法 » 安装方法","id":"7","title":"安装方法"},"8":{"body":"","breadcrumbs":"安装方法 » Windows » Windows下安装方法","id":"8","title":"Windows下安装方法"},"9":{"body":"打开 Rime 输入法的网站 https://rime.im/ ,点击小狼毫的图标下载输入法的安装包。当前版本为 0.14.3。 Windows_下载_Rime 下载好安装包之后,双击安装。 如果弹出警告,点开“更多信息”选择“仍要运行”。(下图是安装 0.13.0 版时截的图,0.14.3 版类似) 仍要运行 同意许可证,选择安装位置。点击“安装”。 Windows_Rime_安装1 Windows_Rime_安装2 如果是第一次安装,安装进行到一半的时候,会弹出“【小狼毫】安裝選項”的界面。这里可以设定将输入法安装到哪种系统语言下,也可以自定义用户文件夹的位置。这里建议使用默认位置,避免给之后安装输入方案带来不必要的麻烦。选择完后点击“安裝”。 安裝選項 稍等一段时间,等到安装程序提示成功。点击“完成”结束安装。 Windows_Rime_安装3 点击在任务栏上输入法的图标,选择小狼毫。 选择小狼毫 选择好之后,打开任何一个编辑器或输入框,按 F4 或 Ctrl+` 唤出“方案選單”,可以发现选单中已经有了几种输入方案。如果没有更多需求的话,就可以选一种打字了。 方案選單1","breadcrumbs":"安装方法 » Windows » 安装时添加输入方案","id":"9","title":"安装时添加输入方案"}},"length":27,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":1,"docs":{"18":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":2.23606797749979},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"18":{"tf":1.0}}},"4":{"df":1,"docs":{"18":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"18":{"tf":1.7320508075688772},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"%":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"m":{"a":{"c":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"d":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"。":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"u":{"$":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"(":{"?":{"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"|":{"df":0,"docs":{},"h":{")":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"4":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}},"或":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"v":{"1":{"d":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"b":{"4":{"1":{"1":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":5,"docs":{"19":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":2.449489742783178},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":2.0},"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"群":{"df":0,"docs":{},":":{"9":{"5":{"5":{"2":{"0":{"1":{"8":{"5":{"5":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"16":{"tf":2.0},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":2.0},"5":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}}},"df":5,"docs":{"13":{"tf":3.4641016151377544},"14":{"tf":3.4641016151377544},"16":{"tf":3.4641016151377544},"17":{"tf":3.4641016151377544},"19":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}}},"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"a":{"b":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"安":{"df":0,"docs":{},"装":{"1":{"df":1,"docs":{"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"下":{"df":0,"docs":{},"载":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"26":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"6":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}}},"y":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"z":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"\\":{"d":{"(":{".":{"+":{"?":{")":{"(":{"?":{"=":{"\\":{"b":{")":{"/":{"$":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/tomorrow-night.css b/tomorrow-night.css index 5b4aca7..81fe276 100644 --- a/tomorrow-night.css +++ b/tomorrow-night.css @@ -1,7 +1,7 @@ /* Tomorrow Night Theme */ -/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ /* Original theme - https://github.com/chriskempson/tomorrow-theme */ -/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ /* Tomorrow Comment */ .hljs-comment { diff --git "a/\344\275\277\347\224\250/\344\275\277\347\224\250.html" "b/\344\275\277\347\224\250/\344\275\277\347\224\250.html" index 7a091f5..68d8d51 100644 --- "a/\344\275\277\347\224\250/\344\275\277\347\224\250.html" +++ "b/\344\275\277\347\224\250/\344\275\277\347\224\250.html" @@ -1,14 +1,16 @@ - + 使用 - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\344\275\277\347\224\250/\345\217\215\346\237\245.html" "b/\344\275\277\347\224\250/\345\217\215\346\237\245.html" index 5097b46..02af0bb 100644 --- "a/\344\275\277\347\224\250/\345\217\215\346\237\245.html" +++ "b/\344\275\277\347\224\250/\345\217\215\346\237\245.html" @@ -1,14 +1,16 @@ - + 反查 - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\344\275\277\347\224\250/\346\250\241\347\263\212\351\237\263.html" "b/\344\275\277\347\224\250/\346\250\241\347\263\212\351\237\263.html" index 570ca9f..a72bd3f 100644 --- "a/\344\275\277\347\224\250/\346\250\241\347\263\212\351\237\263.html" +++ "b/\344\275\277\347\224\250/\346\250\241\347\263\212\351\237\263.html" @@ -1,14 +1,16 @@ - + 模糊音 - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\344\275\277\347\224\250/\350\207\252\345\256\232\344\271\211\347\237\255\350\257\255.html" "b/\344\275\277\347\224\250/\350\207\252\345\256\232\344\271\211\347\237\255\350\257\255.html" index 7f48641..4ac9cb4 100644 --- "a/\344\275\277\347\224\250/\350\207\252\345\256\232\344\271\211\347\237\255\350\257\255.html" +++ "b/\344\275\277\347\224\250/\350\207\252\345\256\232\344\271\211\347\237\255\350\257\255.html" @@ -1,14 +1,16 @@ - + 自定义短语 - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\344\275\277\347\224\250/\350\276\223\345\205\245\346\217\220\347\244\272.html" "b/\344\275\277\347\224\250/\350\276\223\345\205\245\346\217\220\347\244\272.html" index 7f34b39..6c4250c 100644 --- "a/\344\275\277\347\224\250/\350\276\223\345\205\245\346\217\220\347\244\272.html" +++ "b/\344\275\277\347\224\250/\350\276\223\345\205\245\346\217\220\347\244\272.html" @@ -1,14 +1,16 @@ - + 输入提示 - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\345\256\211\350\243\205\346\226\271\346\263\225/Android.html" "b/\345\256\211\350\243\205\346\226\271\346\263\225/Android.html" index fdfcbac..31cc583 100644 --- "a/\345\256\211\350\243\205\346\226\271\346\263\225/Android.html" +++ "b/\345\256\211\350\243\205\346\226\271\346\263\225/Android.html" @@ -1,14 +1,16 @@ - + Android - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\345\256\211\350\243\205\346\226\271\346\263\225/Linux.html" "b/\345\256\211\350\243\205\346\226\271\346\263\225/Linux.html" index 87670f4..06745cb 100644 --- "a/\345\256\211\350\243\205\346\226\271\346\263\225/Linux.html" +++ "b/\345\256\211\350\243\205\346\226\271\346\263\225/Linux.html" @@ -1,14 +1,16 @@ - + Linux - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\345\256\211\350\243\205\346\226\271\346\263\225/Windows.html" "b/\345\256\211\350\243\205\346\226\271\346\263\225/Windows.html" index 9c27c6b..3bc19f4 100644 --- "a/\345\256\211\350\243\205\346\226\271\346\263\225/Windows.html" +++ "b/\345\256\211\350\243\205\346\226\271\346\263\225/Windows.html" @@ -1,14 +1,16 @@ - + Windows - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\345\256\211\350\243\205\346\226\271\346\263\225/iOS.html" "b/\345\256\211\350\243\205\346\226\271\346\263\225/iOS.html" index e8ebdaa..b22f56c 100644 --- "a/\345\256\211\350\243\205\346\226\271\346\263\225/iOS.html" +++ "b/\345\256\211\350\243\205\346\226\271\346\263\225/iOS.html" @@ -1,14 +1,16 @@ - + iOS - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\345\256\211\350\243\205\346\226\271\346\263\225/macOS.html" "b/\345\256\211\350\243\205\346\226\271\346\263\225/macOS.html" index 20ba494..91565b6 100644 --- "a/\345\256\211\350\243\205\346\226\271\346\263\225/macOS.html" +++ "b/\345\256\211\350\243\205\346\226\271\346\263\225/macOS.html" @@ -1,14 +1,16 @@ - + macOS - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +
diff --git "a/\345\256\211\350\243\205\346\226\271\346\263\225/\345\256\211\350\243\205\346\226\271\346\263\225.html" "b/\345\256\211\350\243\205\346\226\271\346\263\225/\345\256\211\350\243\205\346\226\271\346\263\225.html" index 4ade7c1..fc37df6 100644 --- "a/\345\256\211\350\243\205\346\226\271\346\263\225/\345\256\211\350\243\205\346\226\271\346\263\225.html" +++ "b/\345\256\211\350\243\205\346\226\271\346\263\225/\345\256\211\350\243\205\346\226\271\346\263\225.html" @@ -1,14 +1,16 @@ - + 安装方法 - 吴语学堂拼音输入方案合集 + + - + - + @@ -16,25 +18,29 @@ + + + - + +
- - - + + - + + +
- -
+ - - - - - - - + + + + + + + + + + + +