File size: 1,371 Bytes
6a03357
ea361ad
 
 
 
a256fa2
ce81144
df6bc1d
 
 
 
 
 
 
 
 
 
 
a256fa2
ba3cdcb
 
ea361ad
 
0c2dd57
ea361ad
ce81144
ba3cdcb
 
df6bc1d
 
a256fa2
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import streamlit as st
import intro
import knowledge_extraction
import analysis 
import merge
import utils as utl
import download_paper
st.set_page_config(
        page_title="IRCDL Conference",
        page_icon="📖",
        layout="wide",
        initial_sidebar_state="expanded",
        menu_items={
            'Get Help': 'https://ircdl2024.dei.unipd.it/',
            'Report a bug': "https://ircdl2024.dei.unipd.it/",
            'About': "# IRCDL Conference: A Two-Decade Bibliometric Journey Through Digital Libraries Research"
        }
    )
st.markdown(f'<div class="header"><h1>IRCDL Conference: A Two-Decade Bibliometric Journey Through Digital Libraries Research</h1></div>', unsafe_allow_html=True)

page_names_to_funcs = {
    "Welcome": intro.intro,
    "Knowledge Extraction": knowledge_extraction.knowledge_extraction,
    "Knowledge Enrichment": merge.main,
    "Analysis": analysis.main,
    "Download": download_paper.main,
}

demo_name = st.sidebar.selectbox("IRCDL Conference: A Two-Decade Bibliometric Journey Through Digital Libraries Research", page_names_to_funcs.keys())

page_names_to_funcs[demo_name]()

# Loading CSS
utl.local_css("frontend.css")
utl.remote_css('https://fonts.googleapis.com/icon?family=Material+Icons')
utl.remote_css('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700&display=swap')