Limbo
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Limbo.Bibtex

Table of Contents

Introduction

Scripts to convert bibtex format to jemdoc and latex formats. It also supports custom information in each bibentry.

Examples

Use simple.bib as input

@inproceedings{MPL_DAC2015_Pan,
title={Pushing multiple patterning in sub-10nm: are we ready?},
author={Pan, David Z. and Liebmann, Lars and Yu, Bei and Xu, Xiaoqing and Lin, Yibo},
booktitle={ACM/IEEE Design Automation Conference (DAC)},
pages={197},
year={2015},
organization={ACM},
month={June},
day={7--11},
address={San Francisco, CA},
publishlink={http://dl.acm.org/citation.cfm?id=2744769.2747940},
annotateweb={([yibolin_homepage/papers/C2_paper.pdf pdf])*(Invited Paper)*},
annotatecv={(\textbf{Invited Paper})},
}

Jemdoc format for Webpages

Run with python

1 python $LIMBO_DIR/include/limbo/bibtex/bibconvert.py --suffix web --highlight "Yibo Lin" --highlight "Lin, Yibo" --input simple.bib

Output

1 = Publications
2 
3 
4 === Journal Papers
5 
6 === Conference Papers
7 
8 ==== 2015
9 
10 
11 - \[C1\] David Z. Pan, Lars Liebmann, Bei Yu, Xiaoqing Xu and *Yibo Lin*,
12  "[http://dl.acm.org/citation.cfm?id=2744769.2747940 Pushing multiple patterning in sub-10nm: are we ready?]",
13  ACM/IEEE Design Automation Conference (DAC), San Francisco, CA, Jun 7-11, 2015.
14  ([yibolin_homepage/papers/C2_paper.pdf pdf])*(Invited Paper)*

User can also specify multiple bibtex files as follows

1 --input file1.bib --input file2.bib

Latex format for Resume

Run with python

1 python $LIMBO_DIR/include/limbo/bibtex/bibconvert.py --suffix cv --highlight "Yibo Lin" --highlight "Lin, Yibo" --input simple.bib

Output

1 \textbf{Journal Papers}
2 
3 
4 \begin{description}[font=\normalfont]
5 %{{{
6 
7 
8 %}}}
9 \end{description}
10 
11 
12 \textbf{Conference Papers}
13 
14 
15 \begin{description}[font=\normalfont]
16 %{{{
17 
18 
19 \item[{[C1]}]{
20  David Z. Pan, Lars Liebmann, Bei Yu, Xiaoqing Xu and \textbf{Yibo Lin},
21  ``\href{http://dl.acm.org/citation.cfm?id=2744769.2747940}{Pushing multiple patterning in sub-10nm: are we ready?}'',
22  ACM/IEEE Design Automation Conference (DAC), San Francisco, CA, Jun 7-11, 2015.
23  (\textbf{Invited Paper})
24 }
25 
26 
27 %}}}
28 \end{description}
29 
30 
31 \end{rSection}

References