[Tex/LaTex] How to make a professional looking article layout

articledocument-classesdocumentclass-writingelsarticlelyx-layouts

Elsevier and Springer and other publishers provide latex classes for authors, similar to the standard article class. But those classes don't have the full published formatting, it's just for submitting articles. I want to make my own template that has a similar look to what Elsevier uses in final publication. Publishable, professional looking, article.

Here is an example of an Elsevier article front page: https://nclab.com/wp-content/uploads/2013/01/0-paper-jcp.png
I want to use a design that is similar to that, but with the IEEE two column format: https://nclab.com/wp-content/uploads/2013/01/0-paper-ieee.png

I am using LyX, which usually makes typing text easier, but it seems adding actual Latex design is very difficult. I don't quite understand what should go in the Document settings -> Latex preamble and what I can insert with a Ctrl-L in the center of the text. But trial and error works fairly well once I have some code to produce output. Problem now is I can't find a good example to work with.

I have found examples for spanning the abstract over two columns (How can I place a one-column-abstract in a two-column document?) but I haven't made use of it yet. I'm not even sure if this works to get the keywords in a custom column next to the abstract like in the Elsevier article. I didn't get much done on this because I got stuck on the part of making the first page frame at the top of the page, with pictures and lines and text.

There is this answer: Add Table in Header with image where some custom boxes were drawn inside of latex code, but doesn't appear on the front page above the title. In fact, it appears on every other page except the front page, quite opposite of what I want. And on the second page (only 2nd page) it appears on top of the text without any white space around it.

So I tried this code: Custom first page with fancyhdr which is supposed to set a custom header for the front page, but what this does is simply remove all headers. So there's something that doesn't work, but I get no error messages.

I feel like every step forward is followed by two steps backward. There are lots of journals out there, but for some reason no one is sharing their latex code. And latex documentation is pretty much non-existent. I got into using latex because writing is so easy, but it's very frustrating that it's so impossible to make things look good. Some help would be much appreciated.

Best Answer

No one wanted to answer my question, there were just some comments debating whether documentation is adequate or not (notably without any links to support claims of adequate documentation). So I will try to answer it myself.

The first trick is to use a titlepage, where you can design the first page of the document regardless of how the rest looks. I ended up using this to just put some header picture and text, title, author, date, with some nice formatting. So I diverged from my original intention to make a copy of the Elsevier article, which has both abstract and start of the article text on the front page. But by using the titlepage tag, I don't need to learn how to write a document class, because I can just use the standard article class (probably works with report class too I guess).

\begin{titlepage}
   ... code for first page ...
\end{titlepage}

The second trick is to use minipages. It can be seen in the "header" example I linked in the question, but can also be used to set a list of authors to the left and then the abstract to the right of that. Here is an example to put two authors spaced out left and right side of the page using minipages:

\begin{minipage}[t]{0.5\textwidth} 
    \begin{flushleft} 
        \large 
        \emph{Author:}
        \\ 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Author 
        Mr.~Dan-Erik \textsc{Lindberg} 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Author 
    \end{flushleft} 
\end{minipage}
% 
\begin{minipage}[t]{0.3\textwidth} 
    \begin{flushright} 
        \large 
        \emph{Co-author:} 
        \\ 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Co-author
        Dr. Firstname \textsc{Surname} 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Co-author
    \end{flushright} 
\end{minipage} 

These few things should be enough to put together any layout. But there are some additional things you might want to look at. Such as, the package xcolor with the colorbox and parbox combination, for an easy way to put boxes with background color and white text (for example) or similar layout things.

Since I ended up in an entirely different place than where I started, I don't really see a reason to post my final solution here, because it isn't an answer to the question, but the above tips should get anyone started to produce something similar to Elsevier et al.