Science Score: 31.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (4.1%) to scientific vocabulary
Last synced: 7 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: sunghyunkang1111
  • Language: C
  • Default Branch: dev
  • Size: 14.6 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed about 1 year ago
Metadata Files
Readme Citation

README.md

smartcite-plugin

First, you have to enable the javascript of Acrobat. image image Then, copy all of these data to C:\Program Files\Adobe\Acrobat DC\Acrobat\Javascripts Then it will work.

First, run Adobe Acrobat. You can find the new plugin in "File" menu. image

Click it. You can check how the program run. You can see how the program runs. Press ctrl + J to open the script console. image

Then, You can also find the new plugin in "Edit" menu. image

Owner

  • Login: sunghyunkang1111
  • Kind: user

Citation (citation.js)

// Function to add a citation
function addCitation() {
    var citationField = this.getField("CitationField"); // Get the citation text field
    if (!citationField) {
        app.alert("Citation field not found. Please ensure it's named 'CitationField'.");
        return;
    }

    var citationText = citationField.value; // Get the text from the citation field
    if (citationText && citationText.length > 0) {
        var pageNum = this.pageNum; // Get the current page number
        var citationRect = [100, 700, 400, 750]; // Position of the citation annotation

        // Create a text annotation for the citation
        this.addAnnot({
            type: "Text",
            page: pageNum,
            rect: citationRect,
            contents: citationText,
            author: "Your Name", // Replace with your name or preferred author
            title: "Citation",
            fillColor: color.white,
            strokeColor: color.black
        });

        app.alert("Citation added successfully!");
    } else {
        app.alert("Please enter citation details in the field.");
    }
}

// Call the function
addCitation();

GitHub Events

Total
  • Member event: 1
  • Push event: 20
  • Create event: 1
Last Year
  • Member event: 1
  • Push event: 20
  • Create event: 1

Issues and Pull Requests

Last synced: 12 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels