0

What Style is this?

I'm trying to work on a bibliography for a paper that has to conform to an unspecified citation style. It's basically the CEEA2016 style:

Picture for quick reference

I saw this great link when googling which seems awesome [CLS]. The problem is that the closest I could get was IEEE with URL which is close in many respects one of the major issues is that the citation style I need uses full names and the IEEE style uses Initials and Last names (Sarah Jane vs S. Jane). Is there a style that is closer to what I'm looking for?

How do I make this style?

Alternatively is there any way to edit the IEEE with URL style to give me full names? I've tried listening to webinars and none of them seem to get into that in my scrubbing and I've even found this primer which seemed to hint towards it but then completely dropped the topic of author names in favor of authorship dates (presumably because it's a heading for citation not bibliography as I would eventually figure out).

1 Answer 1

2

I was able to find part of the answer

Out of Editor

Here are lines 81-96 or the original IEEE with URL csl file. I was unable to find out how to do it in the visual editor but I was digging around in the XML file itself and saw this:

  <macro name="author">
    <names variable="author">
      <name initialize-with=". " delimiter=", " and="text"/>
      <label form="short" prefix=", " text-case="capitalize-first"/>
      <substitute>
        <names variable="editor"/>
        <names variable="translator"/>
      </substitute>
    </names>
  </macro>
  <macro name="editor">
    <names variable="editor">
      <name initialize-with=". " delimiter=", " and="text"/>
      <label form="short" prefix=", " text-case="capitalize-first"/>
    </names>
  </macro>

removing the initialize-with=". " seems to have given me full names. After this it looks like the only aspects I would like to change is adding URL at the end. Workable for now but I would like to know how to edit the CSL file as it would be enormously helpful and faster than what I'm going to have to do with REGEX.

In Editor

Knowing what I was looking for and knowing the way programmers like to think I was able to find a similar setting in the visual editor

http://imgur.com/FJbqmnG

Bibliography > Layout > author (macro) > Names > Name

In the name section below is the "Initialize with" option.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .