labreportmaker
Science Score: 18.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
-
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (1.6%) to scientific vocabulary
Last synced: 6 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: jamesywammsy
- Default Branch: main
- Size: 132 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
- Releases: 1
Created about 2 years ago
· Last pushed about 2 years ago
Metadata Files
Readme
Citation
README
start javaw -jar jlatexmath-1.0.7.jar start javaw -jar jlatexmath-font-cyrillic-1.0.7.jar start javaw -jar jlatexmath-font-greek-1.0.7.jar Note: The icons on new formulas added (i.e. when you click "Add Formula" in the theory section) do not update properly, they are shown as blank. Please ignore that.
Owner
- Login: jamesywammsy
- Kind: user
- Repositories: 1
- Profile: https://github.com/jamesywammsy
Citation (Citations)
//Citations.java
//Child of General.java, UI for citations section of program
//Made by James Zhang and Maggie Pang
//Last edit: Jan 22
import java.awt.event.ActionEvent;
public class Citations extends General {
public Citations(Menu menu) {
// Call the constructor of the parent class (General) using super
super(menu);
repaint();
}
@Override
public void actionPerformed(ActionEvent evt) {
// Call the actionPerformed of the parent class (General) using super
super.actionPerformed(evt);
if (evt.getSource() == markAsDone) {
//sets completion status
menu.RefreshCompleted(7, genDone);
if (genDone) {
markAsDone.setText("Mark as Undone");
}
else {
markAsDone.setText("Mark as Done");
}
}
repaint();
}
}
GitHub Events
Total
Last Year
Dependencies
pom.xml
maven
- org.apache.poi:poi 5.0.0
- org.apache.poi:poi-ooxml 5.0.0