Document Classes{moderncv} and publications

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
peaches2165
Posts: 25
Joined: Wed Oct 22, 2008 5:03 pm

{moderncv} and publications

Post by peaches2165 »

Hi,

I'm working my way through the {moderncv} style. This is an involved question. I am using

Code: Select all

\documentclass[11pt,letterpaper,oneside,sans]{moderncv}%{{{1
\let\fax\undefined%To avoid marvosym error
\usepackage{marvosym}
\usepackage[normalem]{ulem}
\usepackage{amsfonts,amsmath,eqparbox,multicol,enumerate,calc,paralist}
\usepackage[initials,nobysame]{amsrefs}% Load after hyperref
\hbadness=10000

\newcounter{bibcont}

\newif\ifforweb

% Set to true to generate a for-web CV (I.e. with contact information omitted).
\forwebfalse


% moderncv themes
%\moderncvtheme[blue]{casual}                 % optional argument are 'blue' (default), 'orange', 'red', 'green', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
\moderncvtheme[blue]{classic}                % idem

% character encoding
%\usepackage[ascii]{inputenc}

% adjust the page margins
%\usepackage[scale=0.8]{geometry}
%\usepackage[margin=2.54cm]{geometry}
\usepackage[margin=1.5cm]{geometry}
%\setlength{\hintscolumnwidth}{3cm}						% if you want to change the width of the column with the dates
%\AtBeginDocument{\setlength{\maketitlenamewidth}{6cm}}  % only for the classic theme, if you want to change the width of your name placeholder (to leave more space for your address details
\AtBeginDocument{\recomputelengths}                     % required when changes are made to page layout lengths
I am working on the publications list which is over 100. The publications are currently in the \begin{enumerate} with \item. Now this runs within moderncv except that the second line of info does not line up with the first line -- it is two spaces to the left. Can this be fixed.

They are coded as:

Code: Select all

\begin{enumerate}
\item{name.,``title", {\em journal} {\bf vol} (year), pages.}
\end{enumerate}
My other option is to pull pubs from mathsci.net. with this
setup

Code: Select all

@article {MR,
    AUTHOR = {},
     TITLE = {},
   JOURNAL = {},
  FJOURNAL = {},
    VOLUME = {},
      YEAR = {},
    NUMBER = {},
     PAGES = {},
      ISSN = {},
   MRCLASS = {},
  MRNUMBER = {},
}
How would I code the above type of setup

Thanks,

Peaches
Last edited by cgnieder on Tue Jun 17, 2014 11:35 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

StarValkyrie
Posts: 89
Joined: Fri Jan 24, 2014 12:42 am

Re: {moderncv} and publications

Post by StarValkyrie »

If you have a simple way to download Bibtex code for your citations and a bibtex style file for the format you need, I suggest using it because that's the correct way to solve this. If not, I'd just copy-paste the code for a little hspace onto the second line of each citation - this may or may not require forcing protected line breaks before the hspace, depending on how you've formatted it.
peaches2165
Posts: 25
Joined: Wed Oct 22, 2008 5:03 pm

Re: {moderncv} and publications

Post by peaches2165 »

Thanks for the help. After all I left the publications in original format and author was okay with that.
Post Reply