Home
last modified time | relevance | path

Searched refs:cites (Results 1 – 25 of 772) sorted by relevance

12345678910>>...31

/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/wasm/js-demo/js/
H A DinitialClusters.ts5 cites: [
11 cites: [
17 cites: [
23 cites: [
29 cites: [
35 cites: [
41 cites: [
47 cites: [
H A DDocument.ts59 for (let cite of cluster.cites) {
68 for (let cite of cluster.cites) {
180 createCluster(cites: Cite[]): Cluster {
183 cites: cites,
H A DDocumentEditor.tsx90 let editors = cluster.cites.map((cite: Cite, i) => {
92 let cites = me.cites.slice(0) as Cite[];
93 cites[i] = c;
94 let _me = { ...me, cites };
/dports/textproc/hs-pandoc/pandoc-2.14.2/test/command/
H A D4928.md3 \cites(Multiprenote)(multipostnote)[23][42]{Knu86}[65]{Nie72}
10 \cites(Multiprenote)()[23][42]{Knu86}[65]{Nie72}
12 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites(Multiprenote)()[23…
17 \cites()(multipostnote)[23][42]{Knu86}[65]{Nie72}
19 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites()(multipostnote)[2…
24 \cites()()[23][42]{Knu86}[65]{Nie72}
26 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites()()[23][42]{Knu86}…
31 \cites(multipostnote)[23][42]{Knu86}[65]{Nie72}
33 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites(multipostnote)[23]…
38 \cites(Multiprenote)(multipostnote){Knu86}
[all …]
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/pandoc-2.11.4/test/command/
H A D4928.md3 \cites(Multiprenote)(multipostnote)[23][42]{Knu86}[65]{Nie72}
10 \cites(Multiprenote)()[23][42]{Knu86}[65]{Nie72}
12 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites(Multiprenote)()[23…
17 \cites()(multipostnote)[23][42]{Knu86}[65]{Nie72}
19 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites()(multipostnote)[2…
24 \cites()()[23][42]{Knu86}[65]{Nie72}
26 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites()()[23][42]{Knu86}…
31 \cites(multipostnote)[23][42]{Knu86}[65]{Nie72}
33 …n, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cites(multipostnote)[23]…
38 \cites(Multiprenote)(multipostnote){Knu86}
[all …]
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/citeproc/src/
H A Dtest.rs55 cites: vec![Cite::basic(ref_ids[i - 1])], in insert_ascending_notes()
82 cites: vec![Cite::basic("one")], in test_ibid_1_2()
86 cites: vec![Cite::basic("one")], in test_ibid_1_2()
212 let cites = vec![Cite::basic("two")]; in preview_cluster_replace() localVariable
223 let cites = vec![Cite::basic("one")]; in preview_cluster_replace_ibid() localVariable
232 let cites = vec![Cite::basic("one")]; in preview_cluster_reorder_append() localVariable
251 db.preview_citation_cluster(&cites, PreviewPosition::MarkWithZero(positions), None); in preview_cluster_reorder_append()
260 let cites = vec![Cite::basic("one"), Cite::basic("three")]; in preview_cluster_reorder_insert() localVariable
279 db.preview_citation_cluster(&cites, PreviewPosition::MarkWithZero(positions), None); in preview_cluster_reorder_insert()
289 let cites = vec![Cite::basic("three")]; in preview_cluster_reorder_replace() localVariable
[all …]
H A Dprocessor.rs395 let Cluster { id: cluster_id, cites, } = cluster; in init_clusters()
396 let mut ids = Vec::with_capacity(cites.len()); in init_clusters()
397 for (index, cite) in cites.into_iter().enumerate() { in init_clusters()
417 let string_id::Cluster { id: cluster_id, cites, } = cluster; in init_clusters_str()
419 let mut ids = Vec::with_capacity(cites.len()); in init_clusters_str()
420 for (index, cite) in cites.into_iter().enumerate() { in init_clusters_str()
466 for (index, cite) in cites.iter().enumerate() { in insert_cites()
477 pub fn insert_cites_str(&mut self, cluster_id: &str, cites: &[Cite<Markup>]) { in insert_cites_str()
479 self.insert_cites(interned, cites); in insert_cites_str()
703 cites: &[Cite<Markup>], in preview_citation_cluster()
[all …]
/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/bibexport/
H A Dbibexport.sh304 mv ${TMPFILE}.aux ${TMPFILE}-cites.aux
305 bibtex -terse -min-crossrefs=${CREF} ${TMPFILE}-cites
312 cat ${TMPFILE}-cites.bbl >> ${FINALFILE};
317 rm -f ${TMPFILE}-cites.bbl ${TMPFILE}-cites.aux ${TMPFILE}-cites.blg
/dports/textproc/py-citeproc-py/citeproc-py-0.6.0/citeproc/source/
H A D__init__.py136 def __init__(self, cites, **kwargs): argument
137 for cite in cites:
139 self.cites = cites
143 cites = ', '.join([cite.key for cite in self.cites])
144 return '{}({})'.format(self.__class__.__name__, cites)
/dports/print/R-cran-knitr/knitr/R/
H A Dcitation.R116 cites = citation(pkg, auto = FALSE) functionVar
117 cites = Filter(x = cites, function(cite) {
121 s = make_unique(unlist(lapply(cites, function(cite) {
124 mapply(cites, s, FUN = function(cite, suffix) {
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/proc/src/ir/
H A Dtransforms.rs513 cites: &mut Vec<Unnamed3<O>>, in group_and_collapse()
523 for ix in 0..cites.len() { in group_and_collapse()
524 let gen4 = &cites[ix].gen4; in group_and_collapse()
559 while top_ix < cites.len() { in group_and_collapse()
560 if cites[top_ix].is_first { in group_and_collapse()
563 while ix < cites.len() { in group_and_collapse()
569 IR::find_first_year_and_suffix(cites[ix].gen4.root, &cites[ix].gen4.arena) in group_and_collapse()
614 while ix < cites.len() { in group_and_collapse()
615 let slice = &mut cites[ix..]; in group_and_collapse()
645 while ix < cites.len() { in group_and_collapse()
[all …]
/dports/textproc/dblatex/dblatex-0.3.11py3/lib/dbtexmf/dblatex/grubber/
H A Dbibtex.py199 cites = {}
211 if cite not in cites:
213 cites[cite] = last
222 list = cites.keys()
226 list = [(n,c) for (c,n) in cites.items()]
234 cites = {}
238 cites[match.group("cite")] = None
239 list = cites.keys()
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/citeproc/tests/data/humans/
H A Dflipflop.toml13 { id = 1, note = 5, cites = [{ id = "jeanie" }] },
14 { id = 2, note = 6, cites = [{ id = "whirl" }] },
24 { id = 3, note = 7, cites = [{ id = "jeanie", locator = "54", label = "page" }] },
39 { id = 4, note = 2, cites = [{ id = "other" }] },
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/cli/src/
H A Dpandoc.rs52 let cites = p_cites in walk_inline() localVariable
76 cites, in walk_inline()
112 let cites = p_cites in walk_inline() localVariable
126 *p_cites = cites; in walk_inline()
/dports/biology/ncbi-entrez-direct/ncbi-entrez-direct-14.9.20210423/
H A Delink133 -cites Publication reference list
195 cites=false
307 -cites )
308 cites=true
401 if [ -z "$target" ] && [ "$related" = false ] && [ "$cited" = false ] && [ "$cites" = false ]
462 if [ "$cited" = true ] || [ "$cites" = true ]
525 if [ "$cites" = true ]
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/proc/src/
H A Dtest.rs100 let (cluster_id, note_number, cites) = cluster; in init_clusters()
102 for (index, cite) in cites.into_iter().enumerate() { in init_clusters()
124 pub fn insert_cites(&mut self, cluster_id: ClusterId, cites: &[Cite<Markup>]) { in insert_cites()
134 for (index, cite) in cites.iter().enumerate() { in insert_cites()
/dports/www/elgg/elgg-3.3.23/vendor/fzaninotto/faker/src/Faker/Provider/zh_CN/
H A DAddress.php8 protected static $cites = array( variable in Faker\\Provider\\zh_CN\\Address
114 return static::randomElement(static::$cites);
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/test-utils/src/
H A Dhumans.rs31 Map { cites: Vec<CiteprocJsCite> },
38 CitationItem::Map { cites } => cites, in to_note_cluster()
40 let cites = v.iter().map(CiteprocJsCite::to_cite).collect(); in to_note_cluster() localVariable
43 cites, in to_note_cluster()
312 let mut cites = Vec::new(); in execute() localVariable
314 cites.push(cite_item.to_cite()); in execute()
321 self.proc.insert_cites_str(id, &cites); in execute()
H A Dlib.rs134 cites: str_cluster.cites.clone() in new()
176 let mut cites = Vec::new(); in execute() localVariable
179 cites.push(Cite::basic(&*refr.id)); in execute()
181 clusters_auto.push(Cluster { id: self.processor.random_cluster_id(), cites }); in execute()
/dports/deskutils/egroupware/egroupware/calendar/lang/
H A Degw_ca.lang28 all events calendar ca Totes les cites
78 default appointment length (in minutes) calendar ca Duració per defecte de les cites (en minuts)
87 delete this series of recurring events calendar ca Esborra aquesta sèrie de cites recurrents
90 display status of events calendar ca Mostrar estat de les cites
103 edit this series of recurring events calendar ca Edita aquesta sèrie de cites recursives
137 format of event updates calendar ca Format de les actualitzacions de cites
200 no events found calendar ca No s'han trobat cites
244 receive summary of appointments calendar ca Rebre resum de les cites
251 repeating event information calendar ca Informació repetitiva de cites
270 set new events to private calendar ca Establir noves cites com a privades
[all …]
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/man/
H A DMakefile.am136 cites := ${subst .,(,${addsuffix ),${man_pages}}} macro
142 reppat := $(foreach m,$(cites),-e 's/\<$(m)/:ref:`& <&>`/g')
144 reppat := $(foreach m,$(cites),-e 's/[[:<:]]$(m)/:ref:`& <&>`/g')
/dports/textproc/py-citeproc-py/citeproc-py-0.6.0/citeproc/
H A Dfrontend.py64 def render_citation(self, citation, cites, callback=None): argument
65 return self.root.citation.render(citation, cites, callback)
85 for item in citation.cites:
/dports/editors/calligra/calligra-3.2.1/libs/text/
H A DBibliographyGenerator.cpp75 static QList<KoInlineCite *> sort(QList<KoInlineCite *> cites, const QVector<SortKeyPair> &keys) in sort() argument
79 std::sort(cites.begin(), cites.end(), lessThan); in sort()
80 return cites; in sort()
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/docs/
H A Ddisambiguation.md18 A set of rendered cites is unambiguous iff `reverse` exists, which is to say,
20 surjective; two different cites may be backed by the same reference (that's
40 free function; it does not need to be compared with other cites in the
48 determine ambiguity by comparing outputs of different cites with some
52 > The phrase "added one by one to all members of a set of ambiguous cites"
53 under step 1 in the spec may have led to some confusion. Ambiguous cites can
59 If you had two cites to different references which ended up looking identical,
137 ### Ghost entries = ghost cites
158 the ambiguity of their containing cites. You could create a second inverted
280 that generates IR + negative name matching and waits for all cites to
/dports/editors/kile/kile-09ee4ef0417165b93da82c1fc057b9e1713a0c05/src/data/complete/tex/
H A Dbiblatex.cwl82 \cites{key}{key}
83 \cites(post){key}{key}
84 \cites(pre)(post){key}{key}
85 \cites(pre)(post)[post]{key}[post]{key}
86 \cites(pre)(post)[pre][post]{key}[pre][post]{key}
87 \cites[post]{key}[post]{key}
88 \cites[pre][post]{key}[pre][post]{key}
89 \cites(pre)(post)[pre][post]{key}[pre][post]{key}

12345678910>>...31