USC ISI information integration group website
- Under root
papers
put all papers hereslides
put all slides hereprojects
put old or outdated projects here
- Under a person folder, such as
knoblock
doc
put your bibtex file and other related documents here. To be consistent, we recommend you name your bibtex of all publicationscomplete.bib
and bibtex of selected publications to show on your pageselected.bib
The css files in folder css
are compiled from the scss files in folder scss
. Don't change the css files directly. Check out Technology Stack to see how to run the compilation automatically.
I use the one in knoblock's page as an example. HTML:
<div id="word-cloud-container" data-bib="doc/complete.bib" data-min-word-count="1" data-max-word-count="70" data-min-font-size="2" data-max-font-size="40"></div>
id="word-cloud-container"
id is used inword-cloud.js
to locate it.data-bib
path to your bibtex file which is used to generate word cloud from paper titles.- (
data-min-word-count
,data-max-word-count
) and (data-min-font-size
,data-max-font-size
) define a range map from the word count to its size in the cloud. You need to adjust these parameters to make the word cloud look nice.
Please get yourself familiar with the following stuff at first. It will make your life easier.