MétaCan
Menu
Retour à la cohorte
Enregistrement W6948887225 · doi:10.5281/zenodo.1187521

jgm/pandoc: pandoc 2.1.2

2018· other· en· W6948887225 sur OpenAlexaff

Notice bibliographique

RevueZenodo (CERN European Organization for Nuclear Research) · 2018
Typeother
Langueen
DomaineComputer Science
ThématiqueResearch Data Management Practices
Établissements canadiensUniversity of Toronto
Organismes subventionnairesnon disponible
Mots-clésParsingClosing (real estate)SyntaxBottom-up parsingPrefixAnnotationExtension (predicate logic)Space (punctuation)

Résumé

récupéré en direct d'OpenAlex

Markdown reader: Fix parsing bug with nested fenced divs (#4281). Previously we allowed "nonindent spaces" before the opening and closing :::, but this interfered with list parsing, so now we require the fences to be flush with the margin of the containing block. Commonmark reader: raw_html is now on by default. It can be disabled explicitly using -f commonmark-raw_html. Org reader (Albert Krewinkel): Move citation tests to separate module. Allow changing emphasis syntax (#4378). The characters allowed before and after emphasis can be configured via #+pandoc-emphasis-pre and #+pandoc-emphasis-post, respectively. This allows to change which strings are recognized as emphasized text on a per-document or even per-paragraph basis. Example: #+pandoc-emphasis-pre: "-\t ('\"{" #+pandoc-emphasis-post: "-\t\n .,:!?;'\")}[" LaTeX reader: Fixed comments inside citations (#4374). Fix regression in package options including underscore (#4424). Make --trace work. Fixed parsing of tabular* environment (#4279). RST reader: Fix regression in parsing of headers with trailing space (#4280). Muse reader (Alexander Krotov): Enable tags even if amuse extension is enabled. Amusewiki disables tags for security reasons. If user wants similar behavior in pandoc, RawBlocks and RawInlines can be removed or replaced with filters. Remove space prefix from tag contents. Do not consume whitespace while looking for closing end tag. Convert alphabetical list markers to decimal in round-trip test. Alphabetical lists are an addition of Text::Amuse. They are not present in Emacs Muse and can be ambiguous when list starts with "i.", "c." etc. Allow and other tags to be indented. Allow single colon in definition list term. Fix parsing of verse in lists. Improved parsing efficiency. Avoid parseFromString. Lists are parsed in linear instead of exponential time now. Replace ParserState with MuseState. Prioritize lists with roman numerals over alphabetical lists. This is to make sure "i." starts a roman numbered list, instead of a list with letter "i" (followed by "j", "k", …"). Fix directive parsing. Parse definition lists with multiple descriptions. Parse next list item before parsing more item contents. Fixed a bug: headers did not terminate lists. Move indentation parsing from definitionListItem to definitionList. Paragraph indentation does not indicate nested quote. Muse allows indentation to indicate quotation or alignment, but only on the top level, not within a or list. Require that block tags are on separate lines. Text::Amuse already explicitly requires it anyway. Fix matching of closing inline tags. Various internal changes. Fix parsing of nested definition lists. Require only one space for nested definition list indentation. Do not remove trailing whitespace from . Fix parsing of trailing whitespace. Newline after whitespace now results in softbreak instead of space. Docx reader (Jesse Rosenthal, except where noted): Handle nested sdt tags (#4415). Don't look up dependant run styles if +styles is enabled. Move pandoc inline styling inside custom-style span. Read custom styles (#1843). This will read all paragraph and character classes as divs and spans, respectively. Dependent styles will still be resolved, but will be wrapped with appropriate style tags. It is controlled by the +styles extension (-f docx+styles). This can be used in conjunction with the custom-style feature in the docx writer for a pandoc-docx editing workflow. Users can convert from an input docx, reading the custom-styles, and then use that same input docx file as a reference-doc for producing an output docx file. Styles will be maintained across the conversion, even if pandoc doesn't understand them. Small change to Fields hyperlink parser. Previously, unquoted string required a space at the end of the line (and consumed it). Now we either take a space (and don't consume it), or end of input. Pick table width from the longest row or header (Francesco Occhipinti, #4360). Muse writer (Alexander Krotov): Change verse markup: > instead of tag. Remove empty strings during inline normalization. Don't indent nested definition lists. Use unicode quotes for quoted text. Write image width specified in percent in Text::Amuse mode. Don't wrap displayMath into . Escape nonbreaking space (~~). Join code with different attributes during normalization. Indent lists inside Div. Support definitions with multiple descriptions. Powerpoint writer (Jesse Rosenthal): Use table styles This will use the default table style in the reference-doc file. As a result they will be easier when using in a template, and match the color scheme. Remove empty slides. Because of the way that slides were split, these could be accidentally produced by comments after images. When animations are added, there will be a way to add an empty slide with either incremental lists or pauses. Implement syntax highlighting. Note that background colors can't be implemented in PowerPoint, so highlighting styles that require these will be incomplete. New test framework for pptx. We now compare the output of the Powerpoint writer with files that we know to (a) not be corrupt, and (b) to show the desired output behavior (details below). Add notesMaster to presentation.xml if necessary. Ignore links and (end)notes in speaker notes. Output speaker notes. Read speaker note templates conditionally. If there are speaker notes in the presentation, we read in the notesMasters templates from the reference pptx file. Fix deletion track changes (#4303, Jesse Rosenthal). Markdown writer: properly escape @ to avoid capture as citation (#4366). LaTeX writer: Put hypertarget inside figure environment (#4388). This works around a problem with the endfloat package and makes pandoc's output compatible with it. Fix image height with percentage (#4389). This previously caused the image to be resized to a percentage of textwidth, rather than textheight. ConTeXt writer (Henri Menke): New section syntax and support --section-divs (#2609). \section[my-header]{My Header} -> \section[title={My Header},reference={my-header}]. The ConTeXt writer now supports the --section-divs option to write sections in the fenced style, with \startsection and \stopsection. xtables: correct wrong usage of caption (Henri Menke). Docx writer: Fix image resizing with multiple images (#3930, Andrew Pritchard). Use new golden framework (Jesse Rosenthal). Make more deterministic to facilitate testing (Jesse Rosenthal). getUniqueId now calls to the state to get an incremented digit, instead of calling to P.uniqueHash. we always start the PRNG in mkNumbering/mkAbstractNum with the same seed (1848), so our randoms should be the same each time. Fix ids in comment writing (Jesse Rosenthal). Comments from --track-changes=all were producing corrupt docx, because the writer was trying to get id from the (ID,_,_) field of the attributes, and ignoring the "id" entry in the key-value pairs. We now check both. Ms writer: Added papersize variable. TEI writer: Use height instead of depth for images (#4331). Ensure that id prefix is always used. Don't emit role attribute; that was a leftover from the Docbook writer. Use 'xml:id', not 'id' attribute (#4371). AsciiDoc writer: Do not output implicit heading IDs (#4363, Alexander Krotov). Convert to asciidoc-auto_identifiers for old behaviour. RST writer: Remove blockToRST' moving its logic into fixBlocks (Francesco Occhipinti). Insert comment between lists and quotes (#4248, Francesco Occchipinti). RST template: remove definition of 'math' role as raw. This used to be needed prior to v 0.8 of docutils, but now math support is built-in. Slides: Use divs to set incremental/non-incremental (#4381, Jesse Rosenthal). The old method (list inside blockquote) still works, but we are encouraging the use of divs with class incremental or nonincremental. Text.Pandoc.ImageSize: Make image size detection for PDFs more robust (#4322). Determine image size for PDFs (#4322). EMF Image size support (#4375, Andrew Pritchard). Text.Pandoc.Extensions: Add Ext_styles (Jesse Rosenthal, API change). This will be used in the docx reader (defaulting to off) to read pargraph and character styles not understood by pandoc (as divs and spans, respectively). Made Ext_raw_html default for commonmark format. Text.Pandoc.Parsing: Export manyUntil (Alexander Krotov, API change). Export improved sepBy1 (Alexander Krotov). Export list marker parsers: upperRoman, lowerRoman, decimal, lowerAlpha, upperAlpha (Alexander Krotov, API change). Tests/Lua: fix tests on windows (Albert Krewinkel). Lua: register script name in global variable (#4393). The name of the Lua script which is executed is made available in the global Lua variable PANDOC_SCRIPT_FILE, both for Lua filters and custom writers. Tests: Abstract powerpoint tests out to OOXML tests (Jesse Rosenthal). There is very little pptx-specific in these tests, so we abstract out the basic testing function so it can be used for docx as well. This should allow us to catch some errors in the docx writer that slipped by the roundtrip testing. Lua filters: store constructors in registry (Albert Krewinkel). Lua functions used to

Récupéré en direct depuis OpenAlex et désinversé. Les résumés ne sont pas conservés dans cette base de données : les index inversés représentent 8,6 Go des 9,3 Go de texte de la base, et le serveur dispose de 13 Go libres.

Comment cette classification a été obtenuedéplier

Prédiction machine sur la base complète

Imitation des enseignants

Ni prévalence calibrée, ni vérité terrain. Validation humaine à venir. Le volet Gemma est une étiquette directe du modèle pour chaque travail de la base, lue sur la notice réduite au titre. Le volet Codex est un classifieur appris des 10 348 étiquettes directes de Codex et calibré sur les taux pondérés de l'échantillon; les champs sans appui suffisant ne portent aucun appel Codex. Le mode candidate est l'union des deux volets; le consensus est leur intersection. Ces sorties portent le statut machine_predicted_unvalidated et ne sont pas des étiquettes humaines.

score de la tête « metaresearch » (Codex)0,002
score de la tête « metaresearch » (Gemma)0,009
Version: metacan-v3-hybrid-931329e0061cStatut de validation: machine_predicted_unvalidated
Catégories candidatesCharge utile insuffisante (le modèle a refusé de juger)
Catégories consensuellesaucune
DomaineSignal candidat: aucune · Signal consensuel: aucune
Devis d'étudeSignal candidat: Sans objet · Signal consensuel: Sans objet
GenreSignal candidat: Logiciel · Signal consensuel: Logiciel
Score de désaccord entre enseignants0,320
Score d'incertitude au seuil0,970

Scores du classifieur distillé par catégorie (deux têtes)

CatégorieCodexGemma
Métarecherche0,0020,009
Méta-épidémiologie (sens strict)0,0040,003
Méta-épidémiologie (sens large)0,0010,002
Bibliométrie0,0020,001
Études des sciences et des technologies0,0010,001
Communication savante0,0050,007
Science ouverte0,0040,004
Intégrité de la recherche0,0030,003
Charge utile insuffisante (le modèle a refusé de juger)0,3200,324

Scores machine (provisoires)

Les deux têtes enseignantes du modèle étudiant, lues sur ce travail. Un score ordonne la base pour la relecture; il n'affirme jamais une catégorie, et le statut de validation accompagne chaque rangée tel quel.

Scores de référence d'un modèle non mature (critères de maturité non atteints, 7 itérations). Un score ordonne; il n'affirme jamais une catégorie.

Tête enseignante Opus0,074
Tête enseignante GPT0,300
Écart entre enseignants0,226 · la distance entre les deux têtes enseignantes sur ce seul travail
Statut de validationscore_only:v0-immature-baseline · tel quel depuis la passe de notation : score_only signifie que le nombre peut ordonner les travaux, et qu'aucune étiquette de catégorie n'en découle

Classification

machine, non validée

Prédiction automatique; un appel candidat d’une seule source (Gemma direct ou Codex distillé), pas un consensus.

Devis d'étudeSans objet
Domainenon disponible
GenreLogiciel

Le détail, modèle par modèle et score par score, se trouve en fin de page sous « Comment cette classification a été obtenue ».

En bref

Citations0
Publié2018
Routes d'admission1
Résumé présentoui

Explorer davantage

Même revueZenodo (CERN European Organization for Nuclear Research)Même sujetResearch Data Management PracticesTravaux en français237 207