General ⇒ List of publications
List of publications
Anyway, I want to include a list of my scientific publications and am trying to figure out the best way to do this.
I currently have the publications in a .bib file.
I know how to normally included entries like that in a bibliography, but trying to use that technique produces a few problems for me:
First, it automatically includes a header I don't want "References". Can I suppress this? I have a specially formatted header already for the section, I just want the publication list.
Second, it only includes publications that have been cited in the document, but I don't want to "cite" anything since it's a CV, I just want a list of publications.
Third, I would like to suppress the numbering of the publications listed, although this is a minor issue.
Is there an easy way to do this? Should I use another method entirely to include the publications? I would like to avoid "hard coding" them.
Thanks.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
List of publications
to suppress "References" here's a quick hack:
Code: Select all
{\def\chapter*#1{}\bibliography{filename}}
Code: Select all
\nocite{*}
Stefan
Re: List of publications
Re: List of publications
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
List of publications
Code: Select all
{\def\section*#1{}\bibliography{filename}}
List of publications
Anyway, when the "References" heading disappears, it leaves a blank line in it's place, which means the the first publication is not lined up with the section heading here.
He has the following code at the top which I am guessing is what is doing it with the section headings:
Code: Select all
\renewcommand{\section}[2]%
{\pagebreak[2]\vspace{1.3\baselineskip}%
\phantomsection\addcontentsline{toc}{section}{#1}%
\hspace{0in}%
\marginpar{
\raggedright \scshape #1}#2}
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
List of publications
Re: List of publications
List of publications
I have the same problem with publications list.
I need two sections for publications: Journal, and Conference Papers. The code you posted put everything together.
Code: Select all
{\def\section*#1{}\bibliography{../../Citation}}
Thanks a lot
ttk
List of publications
for that purpose, you can always use the package splitbib.
Anyway, there are certain incompatibilities between 'splitbib' and 'hyperref'...
In my case, to efficiently categorize a list of publications without using 'splitbib', I'm using the following 2-step trick:
Trick to get a categorized list of publications without using the 'splitbib' package, that presents certain incompatibilities with 'hyperref':
- Generate a chapter with the list of publications to be categorized. Just un-comment the 'Code Segment #1', and compile until the un-categorized list is visible.
Code: Select all
% Code Segment #1 \nocite{Biblio_PhD:Roberto_Motl2007,Biblio_PhD:Roberto_30_ESA_Workshop,etc...} \begin{spacing}{1} \renewcommand{\sectionmark}[1]{\markright{#1}} \renewcommand\bibname{List of Publications} \bibliographystyle{IEEEtran} \bibliography{IEEEabrv,../biblio/Biblio_PhD} \end{spacing}
- Open the auxiliary file named ''filename.bbl'' with a text editor, copy from it the list of publications, paste the list in your source file, categorize the list as exemplified in 'Code Segment #2'. Do a 'find of' + 'replace' of the string ''\bibitem{'' for this other ''\\item %{''. Just comment the 'Code Segment #1', uncomment 'Code Segment #1' and compile until the categorized list is finally visible.
Code: Select all
% Code Segment #2 \chapter*{List of Publications}\label{publications} \markboth{List of Publications}{} \addcontentsline{toc}{chapter}{List of Publications} \label{page:publications} \section*{REFEREED JOURNAL PAPERS} \addcontentsline{toc}{section}{Refereed Journal Papers} \begin{enumerate} \item{Biblio_PhD:Roberto_Motl2007} R.~Torres-S{\'a}nchez, F.~P. Casares-Miranda, E.~M{\'a}rquez-Segura, and P.~Otero, ``Symmetry, {XPD}, and port isolation in an {ACMPA} array with dual linear polarization,'' \emph{Microwave {O}pt. {T}echnol. {L}ett.}, vol.~49, no.~7, pp. 1722--1727, Jul. 2007. ... \end{enumerate} \section*{REFEREED CONFERENCE PAPERS} \addcontentsline{toc}{section}{Refereed Conference Papers} \begin{enumerate} \item{Biblio_PhD:Roberto_30_ESA_Workshop} R.~Torres, S.~Vaccaro, and J.~R. Mosig, ``A compact and low cost radiating element for automotive satellite broadcasting reception arrays,'' in \emph{30{t}h {ESA} {A}ntenna {W}orkshop for {E}arth {O}bservation, {S}cience, {T}elecommunication and {N}avigation {S}pace {M}issions}, ESA/ESTEC, Noordwijk, The Netherlands, May 2008. ... \end{enumerate} ... \cleardoublepage
Regards,
-Roberto