dedicated page for publis
This commit is contained in:
parent
664db5eea8
commit
6d0b9710cd
13 changed files with 140 additions and 62 deletions
|
@ -1,5 +1,5 @@
|
|||
me:
|
||||
name: G. Jankowiak
|
||||
name: G. J.
|
||||
|
||||
jd:
|
||||
name: J. Dolbeault
|
||||
|
|
|
@ -1,22 +1,9 @@
|
|||
## Accepted
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
- me
|
||||
- pam
|
||||
title: "Stationary solutions of Keller-Segel type crowd motion and herding models: multiplicity and dynamical stability"
|
||||
journal: Mathematics and Mechanics of Complex Systems
|
||||
arxiv: 1305.1715
|
||||
hal: 00821206
|
||||
|
||||
## Submitted
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
- me
|
||||
title: "Sobolev and Hardy-Littlewood-Sobolev inequalities"
|
||||
arxiv: 1312.2568
|
||||
hal: 00915998
|
||||
- vhn
|
||||
title: "Fractional Sobolev and Hardy-Littlewood-Sobolev inequalities"
|
||||
arxiv: 1404.1028
|
||||
hal: 00972035
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
|
@ -27,10 +14,19 @@
|
|||
hal: 00961363
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
- me
|
||||
- vhn
|
||||
title: "Fractional Sobolev and Hardy-Littlewood-Sobolev inequalities"
|
||||
arxiv: 1404.1028
|
||||
hal: 00972035
|
||||
title: "Sobolev and Hardy-Littlewood-Sobolev inequalities"
|
||||
arxiv: 1312.2568
|
||||
hal: 00915998
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
- me
|
||||
- pam
|
||||
title: "Stationary solutions of Keller-Segel type crowd motion and herding models: multiplicity and dynamical stability"
|
||||
journal: Mathematics and Mechanics of Complex Systems
|
||||
arxiv: 1305.1715
|
||||
hal: 00821206
|
||||
|
||||
# vim: ts=2:sts=2:sw=2
|
||||
|
|
8
_includes/nav_en.html
Normal file
8
_includes/nav_en.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<nav>
|
||||
<ul>
|
||||
<li><a href="/en/publications">Publications</a></li>
|
||||
<li><a href="/en/#teaching-in-french">Teaching</a></li>
|
||||
<li><a href="/en/#contact">Contact</a></li>
|
||||
<li><a href="/en/misc">Misc.</a></li>
|
||||
</ul>
|
||||
</nav>
|
8
_includes/nav_fr.html
Normal file
8
_includes/nav_fr.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<nav>
|
||||
<ul>
|
||||
<li><a href="/publications">Publications</a></li>
|
||||
<li><a href="/#enseignement">Enseignement</a></li>
|
||||
<li><a href="/#contact">Contact</a></li>
|
||||
<li><a href="/divers">Divers</a></li>
|
||||
</ul>
|
||||
</nav>
|
|
@ -1 +1,28 @@
|
|||
{% assign pub = include.pub %}{% assign authors = include.authors %}| {% for a in pub.authors %}{% assign ca = authors[a] %}{% if ca.home %}<a href="{{ca.home)}}">{{ca.name}}</a>{%else%}{{ca.name}}{%endif%}{% if forloop.last %}{%else%}, {% endif %}{% endfor %} | {{pub.title}} - {% if pub.journal %}*{{pub.journal}}* {{pub.issue}}{% else %}*preprint*{% endif %} | {% if pub.arxiv %}<span class="paper_link">[arXiv](http://arxiv.org/abs/{{pub.arxiv}})</span> {% endif %}{% if pub.hal %}<span class="paper_link">[HAL](http://hal.archives-ouvertes.fr/hal-{{pub.hal}})</span>{% endif %} |
|
||||
{% assign pub = include.pub %}{% assign authors = include.authors %}
|
||||
<li>
|
||||
<p class="left">
|
||||
<strong>{{pub.title}}</strong>
|
||||
<span class="right">
|
||||
{% for a in pub.authors %}
|
||||
{% assign ca = authors[a] %}
|
||||
{% if ca.home %}
|
||||
<a href="{{ca.home)}}">{{ca.name}}</a>
|
||||
{%else%}
|
||||
{{ca.name}}
|
||||
{%endif%}
|
||||
{% if forloop.last %}{%else%}, {% endif %}
|
||||
{% endfor %}
|
||||
</span>
|
||||
</p>
|
||||
<p class="clear">
|
||||
{% if pub.journal %}<em>{{pub.journal}}</em> {{pub.issue}}{% else %} <em>preprint</em> {% endif %}
|
||||
<span class="right">
|
||||
{% if pub.arxiv %}
|
||||
<span class="paper_link"><a href="http://arxiv.org/abs/{{pub.arxiv}}">arXiv</a></span>
|
||||
{% endif %}
|
||||
{% if pub.hal %}
|
||||
<span class="paper_link"><a href="http://hal.archives-ouvertes.fr/hal-{{pub.hal}}">HAL</a></span>
|
||||
{% endif %}
|
||||
</span>
|
||||
</p>
|
||||
</li>
|
||||
|
|
|
@ -10,6 +10,7 @@ $dim: #999;
|
|||
$links: #55f;
|
||||
$rule: #999;
|
||||
$tr-rule: #ccc;
|
||||
$highlight: #ccc;
|
||||
|
||||
$width: 800px;
|
||||
$margin: 17px;
|
||||
|
@ -31,6 +32,8 @@ html, body { height: 100%; text-align: justify;
|
|||
a { text-decoration: none; color: $links; }
|
||||
a:hover { text-decoration: underline; }
|
||||
|
||||
strong { font-weight: bold; }
|
||||
|
||||
hr { height: 1px; border: none; background-color: $rule; margin-top: 1em; }
|
||||
|
||||
section h1 { font-size: 150%; border-left: 4px solid $links;
|
||||
|
@ -66,7 +69,11 @@ tr { border-bottom: 1px dotted $tr-rule; }
|
|||
.publi_table td:nth-child(3) { width: 10%; }
|
||||
|
||||
ul { list-style-image: url('../images/bullet_dark.png'); }
|
||||
li { margin-left: 1em; }
|
||||
ul li { margin-left: 1em; }
|
||||
|
||||
ol { list-style-type: decimal; }
|
||||
ol li { margin-bottom: 1em; padding-right: 10px; }
|
||||
ol li:hover { border-right: 3px solid $links; padding-right: 7px; }
|
||||
|
||||
.float-left { float: left; }
|
||||
.right, .float-right { float: right; }
|
||||
|
|
|
@ -3,9 +3,13 @@ layout: default
|
|||
math: false
|
||||
---
|
||||
|
||||
FR\|[EN](/en/misc)
|
||||
{: .switcher}
|
||||
{% include nav_fr.html %}
|
||||
|
||||
# Divers
|
||||
|
||||
## Un blog de Terry Tao plus lisible
|
||||
## Un blog de Terrence Tao plus lisible
|
||||
|
||||
Voici [un petit bout](https://gist.github.com/gjankowiak/9692034) de CSS pour nettoyer les posts de blogs et les rendre plus agréables à lire.
|
||||
Il est commenté (en anglais) pour pouvoir être adapté à vos besoins. Avec Firefox, il faut utiliser l'extension [Stylish](https://addons.mozilla.org/fr/firefox/addon/stylish/?src=search)
|
||||
|
|
|
@ -7,14 +7,7 @@ header-homelink: /en
|
|||
|
||||
[FR](/)\|EN
|
||||
{: .switcher}
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="#research">Research</a></li>
|
||||
<li><a href="#teaching-in-french">Teaching</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
<li><a href="/misc">Misc.</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
{% include nav_en.html %}
|
||||
|
||||
I am currently finishing my PhD under the supervision of [Jean Dolbeault](http://www.ceremade.dauphine.fr/~dolbeaul)
|
||||
within the [Ceremade](http://www.ceremade.dauphine.fr/).
|
||||
|
@ -27,18 +20,12 @@ to the Keller-Segel model.
|
|||
* Numerical stability analysis for some self-similar solutions of the parabolic-parabolic Keller-Segel model.
|
||||
* Asymptotic behaviour for non linear diffusion equations and related functional inequalities.
|
||||
|
||||
## Publications
|
||||
## Lastest publication
|
||||
{% assign authors = site.data.authors %}
|
||||
|
||||
| Authors | Title | Links |
|
||||
| - | - | :-: |
|
||||
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}{: .publi_table}
|
||||
|
||||
### In preparation
|
||||
|
||||
| Authors | Title |
|
||||
| - | - |
|
||||
{% for pub in site.data.prep %}{% include prep_publi_row.html pub=pub authors=authors %}{% endfor %}{: .publi_table}
|
||||
<ul>
|
||||
{% assign pub = site.data.submitted.first %}{% include publi_row.html pub=pub authors=authors %}
|
||||
</ul>
|
||||
|
||||
## Visits & conferences
|
||||
|
|
@ -3,6 +3,10 @@ layout: default
|
|||
math: false
|
||||
---
|
||||
|
||||
[FR](/divers)\|EN
|
||||
{: .switcher}
|
||||
{% include nav_en.html %}
|
||||
|
||||
# Miscellaneous
|
||||
|
||||
## Make Terrence Tao's blog more readable
|
16
en/publications.markdown
Normal file
16
en/publications.markdown
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: default
|
||||
math: false
|
||||
---
|
||||
|
||||
[FR](/publications)\|EN
|
||||
{: .switcher}
|
||||
{% include nav_en.html %}
|
||||
|
||||
# Publications & preprints
|
||||
|
||||
{% assign authors = site.data.authors %}
|
||||
|
||||
<ol reversed>
|
||||
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
||||
</ol>
|
|
@ -5,14 +5,7 @@ math: false
|
|||
|
||||
FR\|[EN](/en)
|
||||
{: .switcher}
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="#recherche">Recherche</a></li>
|
||||
<li><a href="#enseignement">Enseignement</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
<li><a href="/divers">Divers</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
{% include nav_fr.html %}
|
||||
|
||||
Je suis actuellement en quatrième année de thèse, sous la direction de [Jean Dolbeault](http://www.ceremade.dauphine.fr/~dolbeaul),
|
||||
au sein du [Ceremade](http://www.ceremade.dauphine.fr/).
|
||||
|
@ -25,18 +18,12 @@ ainsi que leurs liens avec certaines inégalités fonctionnelles.
|
|||
* Comportement en temps long d'équations de diffusion non linéaires et inégalités fonctionnelles associées.
|
||||
* [Travaux en cours ![Accès restreint](/images/icon_lock.png)](https://www.ceremade.dauphine.fr/~jankowig/wip/)
|
||||
|
||||
## Publications
|
||||
## Dernière publication
|
||||
{% assign authors = site.data.authors %}
|
||||
|
||||
| Auteurs | Titre | Liens |
|
||||
| - | - | :-: |
|
||||
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}{: .publi_table}
|
||||
|
||||
### En préparation
|
||||
|
||||
| Auteurs | Titre |
|
||||
| - | - |
|
||||
{% for pub in site.data.prep %}{% include prep_publi_row.html pub=pub authors=authors %}{% endfor %}{: .publi_table}
|
||||
<ul>
|
||||
{% assign pub = site.data.submitted.first %}{% include publi_row.html pub=pub authors=authors %}
|
||||
</ul>
|
||||
|
||||
## Déplacements & conférences
|
||||
|
||||
|
|
16
publications.markdown
Normal file
16
publications.markdown
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: default
|
||||
math: false
|
||||
---
|
||||
|
||||
FR\|[EN](/en/publications)
|
||||
{: .switcher}
|
||||
{% include nav_fr.html %}
|
||||
|
||||
# Publications & preprints
|
||||
|
||||
{% assign authors = site.data.authors %}
|
||||
|
||||
<ol reversed>
|
||||
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
||||
</ol>
|
|
@ -92,6 +92,10 @@ a:hover {
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 1px;
|
||||
border: none;
|
||||
|
@ -191,10 +195,24 @@ ul {
|
|||
list-style-image: url("../images/bullet_dark.png");
|
||||
}
|
||||
|
||||
li {
|
||||
ul li {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
|
||||
ol li {
|
||||
margin-bottom: 1em;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
ol li:hover {
|
||||
border-right: 3px solid #5555ff;
|
||||
padding-right: 7px;
|
||||
}
|
||||
|
||||
.float-left {
|
||||
float: left;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue