Quantcast
Channel: BibWord : Microsoft Word Citation and Bibliography styles
Viewing all 637 articles
Browse latest View live

New Post: Different format for first citation?

$
0
0
I'm writing my thesis and have been modifying a BibWord HarvardLeeds-based style to comply with referencing guidelines our university.

Now I've run into a problem, as our guide requires that if there are more than two authors on first occurrence the citation authors are written out fully and in the rest of citations only first author is cited and rest truncated with et al.

Example:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem. Quisque ligula eros ullamcorper quis, lacinia quis facilisis sed sapien. (Author & Author  2000; Author, Author & Author 2001.)

Aliquam erat volutpat. Sed congue augue vitae neque. Nulla consectetuer porttitor pede. Fusce purus morbi tortor magna condimentum vel, placerat id blandit sit amet tortor. (Author & Author 2000; Author et al. 2001.)

New Post: In bibword xlst how to check for a null element

$
0
0
That was spot on, its working now thanks yves

New Post: Problem with subtype

$
0
0
I'm trying to include Thesis, Dissertion and Standard -subtypes into Report type.

Thesis and dissertion are easy, as they follow same structure, but problem arises with standard, as our guide requires us to use following formats in the bibliography for standards
Thesist, T. 2000. How to draw a circle. HAMK University of Applied Sciences. Degree programme in mechanical engineering. Thesis.

Dissertionist, D. 2001. Computer aided generation of geometric forms. Aalto University. Department of Civil and Structural Engineering. Doctoral dissertions 001. Dissertion.

SFS-ISO 128-1. 2009. Technical drawings -- General principles of presentation -- Part 1: Introduction and index. Helsinki: Suomen Standardisoimisliitto ry.
Citation should be as
Lorem ipsum blaah blaah. (SFS-ISO 128-1:2009; Thesist 2000; Dissertionist 2001.)
I would like to use source fields "StandardNumber" for the "SFS-ISO 128-1".

(Workaround would be to put the whole "SFS-ISO 128-1. 2009. Technical drawings -- General principles of presentation -- Part 1: Introduction and index." as a title, but then citation would be impossible to format.

Would it be possible to put "SFS-ISO 128-1" as an author and force it to display as written?

New Post: Different format for first citation?

$
0
0
What I have done is to create another citation form to cater for et al citations on the second mention of a multi-author source. This is enabled by a variation made to the ‘Suppress’ feature in the ‘Edit Citation’ box.

First you need to create another subsection for an et al citation in the <citation> section of the stylesheet. You also have to identify the ordinary, full form citation and the et al form of citation. For example, in the <source type="Book"> subsection:
<source type="Book">
<format type="full">{%CitationPrefix%}{%Author:1|Editor:1|Title%}{, %Year%{%YearSuffix%}}{, %CitationVolume%}{, %CitationPages:p.:pp.%}{%CitationSuffix%}</format>
<format type="EtAl">{%CitationPrefix%}{%Author:20|Editor:20|Title%}{, %Year%{%YearSuffix%}}{, %CitationVolume%}{, %CitationPages:p.:pp.%}{%CitationSuffix%}</format>
</source>
You then need to add another subsection in the <namelists> section to use in the et al form citation. I happened to use “shortauthor”, ‘Author:20’. In this subsection, you will have to set up your required style for the ‘et al’ output.

<list name="shortauthor" id="20">
<!-- Used for et al. citations, set to show 1. -->
    <single_prefix></single_prefix>
    <multi_prefix></multi_prefix>
    <corporate>{%Corporate%}</corporate>
    <first_person>{%Last%}</first_person>
    <other_persons>{%Last%}</other_persons>
    <separator_between_if_two> &amp; </separator_between_if_two>
    <separator_between_if_more_than_two>, </separator_between_if_more_than_two>
    <separator_before_last> &amp; </separator_before_last>
    <max_number_of_persons_to_display>1</max_number_of_persons_to_display>
<number_of_persons_to_display_if_more_than_max>1</number_of_persons_to_display_if_more_than_max>
<overflow> et al.</overflow>
    <single_suffix></single_suffix>
    <multi_suffix></multi_suffix>
  </list>
To make this work, you have to add code in the non-variable section which starts at line 659. The subsection that formats the citations starts at line 751: <!-- Formats the citation. -->

Additional code can then be inserted to allow for up to 8 permutations of citations by using different combinations of the suppression items. (This can get complicated and it took me months to sort out.)

For the present exercise to allow for et al citations:

Insert the following at Line 775, replacing existing code up to <!-- Else display error message. -->:
<!-- Get the version. This allows for additional citation forms by using the suppression feature. -->
<xsl:variable name="version">
            <xsl:choose>
<!-- If only Title is suppressed, show the Et Al version. Used to output et al, with 'Author 20' -->
<xsl:when test="/b:Citation/b:NoTitle and not(/b:Citation/b:NoAuthor) and not(/b:Citation/b:NoYear)">
                <xsl:text>EtAl</xsl:text>
              </xsl:when>
<!-- Otherwise, show the full version. -->
<xsl:otherwise>
                <xsl:text>full</xsl:text>
              </xsl:otherwise>
            </xsl:choose>
          </xsl:variable>
    <xsl:choose>
            <!-- Go for the type element if available. -->
            <xsl:when test="string-length($type) > 0 and string-length(msxsl:node-set($data)/citation/source[@type = $type]/format[@type = $version]) > 0 ">
              <xsl:value-of select="msxsl:node-set($data)/citation/source[@type = $type]/format[@type = $version]"/>
            </xsl:when>
            <!-- Else go for the source type element if available. -->
            <xsl:when test="string-length(msxsl:node-set($data)/citation/source[@type = $sourcetype]/format[@type = $version]) > 0 ">
              <xsl:value-of select="msxsl:node-set($data)/citation/source[@type = $sourcetype]/format[@type = $version]"/>
            </xsl:when>
            <!-- This is a placeholder. -->
            <xsl:when test ="string-length($sourcetype) = 0 and string-length(msxsl:node-set($data)/citation/source[@type = 'Placeholder']/format[@type = $version]) > 0">
              <xsl:value-of select="msxsl:node-set($data)/citation/source[@type = 'Placeholder']/format[@type = $version]"/>
            </xsl:when>
            <!-- Else display error message. -->
This setup will output the et al form of citation, after the citation has been inserted in the normal way, by suppressing ‘Title’ in the Edit Citation box.

I hope this may help.

Lionel Crator,
Tau Editing.
Professional Language Practitioner.
BL (Hons)(Rhod) LL.B (Rhod).
Member of The Professional Editors Group.
Working with words since 1981.

Reviewed: American Medical Association style (Dec 26, 2014)

$
0
0
Rated 2 Stars (out of 5) - This is a close approximation of the AMA style. However, it is not correct. The paragraph text needs to be super scripted and the bibliography section is missing options for websites like last updated. It is close to being correct but not. And seeing as this was last updated April 2013 and the last AMA revision was 2012...

New Post: How to converter my VLC files to MPG4?

$
0
0
The features which I preferred most of this Video Converter is that it can convert my bunch of VLC files to MPG4. First, I have tried some free video converter apps, like Handbrake, free video maker. But the output videos all very blurred. So I decided to find another one. After googling online and watching some reviews, this Pavtube just came out in front of my eyes.
I am really glad that I found it. The converted videos turned out so clear and the texture was just vivid as the original one. All my videos were come from my lovely JVC. And I will watch them on my smart TV.

New Post: Pavtube Upgrade! Support H.265/HEVC, XAVC, Latest Blu-rays

$
0
0
Pavtube Software Updated: Support XAVC, H.265/HEVC and Latest Blu-rays!

Hello everyone, I have some great news Pavtube Studio just released updates for all Windows products! This event include:

Pavtube Video Converter Ultimate
Pavtube HD Video Converter
Pavtube MTS/M2TS Converter
Pavtube MXF Converter
Pavtube MXF MultiMixer
Pavtube Video Converter
Pavtube MKV Converter
Pavtube FLV Converter
Pavtube BDMagic
Pavtube ByteCopy
Pavtube DVDAid

What's new?
  1. Support MXF in XAVC video codec
  2. Add H.264 baseline/main/high output profiles
  3. Support H.265/HEVC decode
  4. Support H.265/HEVC encode
  5. Support latest Blu-ray movies, like The Expendables 3, Le Chef, Sin City A Dame to Kill For, Sands of Iwo Jima, When The Game Stands Tall, Love in Venice, Mystery Road, Pink Floyd Endless rive,etc. are all supported.
Great News!!! Pavtube Software officially released its 2014 Christmas Deal. UP to 50% off is provided lasting to January 31th 2015. Don't miss it! And find more 2014 Christmas Crazy Promotion at Pavtube Facebook.

Source:http://club.myce.com/f201/pavtube-windows-products-updated-support-xavc-h-265-hevc-more-new-blu-rays-337855/

New Post: Hebrew numbers in IEEE reference style

$
0
0
I downloaded the IEEE reference style form codeplex. It works with English texts, but the problem is that when I write a document in non-english language, the references are inserted in English format.

For example, Hebrew is a right-to-left language and the the numbers style are different from Engish, so when I write a text like this


**[1]

the numbers appear in english format. How can I use Hebrew number styles?

New Post: problem with references,

$
0
0
Aloha ! i have some big problem with references, my university requires long version of footnotes (so it should looks like this in bibliography) could WE maybe give me some tips how do do this: Image

New Post: problem with references,

$
0
0
Yves' xsl, 'CMSFootnote.XSL', will insert footnote citations in three forms: full, short & 'ibid'.
However, this will not create a bibliography.
Some time ago I started editing the XSL to include a bibliography.
I have never finished editing it, but I am happy to share it with you.
Send me an email, if you wish, and I will give you more details.

Lionel Crator,
Tau Editing.
Professional Language Practitioner.
Tau.Editing@Yahoo.co.za

Commented Unassigned: IEEE bibliography style on Mac [11180]

$
0
0
Very strange behavior has been seen after a 2-column bibliography in Word 2011 (Mac).

If you follow the bibliography with a page break, e.g. using a heading style with embedded forced page break, some text from the following page appears as un-editable duplicate text on the page where the bibliography ends - very strange and spooky. This appears to be a bug in Word 2011 triggered by the bibliography layout.

I discovered the issue w. IEEE Order by Reference. Using the same style in Word 2010 (Windows) did not show the issue. Conclusion: Related to Word 2011.

Using any of the (few) build-in bibliography styles in Word 2011 could not trigger the same issue. Conclusion: Related to the combination of the IEEE style and Word 2011.

Next I looked in the source and compared to previous version (2.9 vs. 2.8). The change is limited and seems to relate to support for Word 2013 only. I then removed those few consecutive lines from the style and retested. The hypnosis being that that last change introduced the issue. Same issue, and the conclusion being that the problem must have been there for a long time (or new in Word 2011).

Next I tried different BibWord styles, and that lead me to home in on 1 vs. 2 column styles. All the 2 column styles showed same issue, none of the 1 column showed the issue. Note: It was a random sample of styles, so there may be non-working 1 column styles and working 2 column styles (I very much doubt the latter).

The main conclusion must be that when a style generates a 2-column table as bibliography then it triggers a bug in Word 2011. I guess we can rule out an error in the way BibWord generate the bibliography, as it works fine in Word 2010.

A hack (this is not a fix) is to insert a continuous section break after the bibliography. It remains to be seen what negative side effects a section break has to my document :-( I would really like to find a less intrusive hack than a section break, but none identified so far.

I have no idea on how to report this as a bug against Microsoft. I do not have insight into what really goes on when a bibliography is generated.

A BibWord solution could be to change strategy on how to generate bibliographies with a hanging indent, something like:
Citation<tab>entry, for first entry line and
<tab>entry, for the following lines
and then leave it up to the Bibliography paragraph style to layout correctly.

But why should BibWord accommodate for a bug in Word 2011?

If anybody knows of a non 2-column style with hanging citation in IEEE style, please share.

Details:
Word 2011 version 14.3.6
Mac OSX 10.8.4
BibWord IEEE - Reference Order of April 1, 2013 version 2.9


Regards
Mikael
Comments: ** Comment from web user: fredvanner **

It's not just Word 2011, or the Mac environment.
I have exactly this problem using Word 2007 on a PC. Exactly the same fix (a continuous section break after the bibliography table) works for me too.

New Post: Source manager entry preview in Word 2013

$
0
0
Hello all,

I have come across an interesting issue in Word 2013. For styles that use tables to arrange entries in the bibliography (e.g., IEEE, Vancouver), the entry preview in the source manager in Word 2013 does not display correctly. This issue was brought up here in April of last year but it does not appear to have been resolved. Ultimately, the overall functionality is not affected. Basically, in the bibliography entry preview, the table columns are about 1 to 3 characters wide resulting in very long and narrow columns. This did not happen in Word 2010. Hopefully someone can shed some light into what is happening here. I am including an image in an attempt to illustrate the problem.

Thank you in advance for all your help.

Image

New Post: Source manager entry preview in Word 2013

New Post: Underline on citation

$
0
0
I try to create my own style based on others style to better suit the journal I publish with. However, the citation in the text always comes with a underline on the reference order. I attached the code here but I didnt recognize anything that indicate under line

e.g. [1], "1" always have a underline

thanks in advance
-<citation>

<openbracket>[</openbracket>

<closebracket>]</closebracket>

<separator>,</separator>


-<source type="Placeholder">

<format>%Tag%</format>

</source>


-<source type="Book">

<format>{%RefOrder%}</format>

</source>


-<source type="BookSection">

<format>{%RefOrder%}</format>

</source>


-<source type="JournalArticle">

<format>{%RefOrder%}</format>

</source>


-<source type="ArticleInAPeriodical">

<format>{%RefOrder%}</format>

</source>


-<source type="ConferenceProceedings">

<format>{%RefOrder%}</format>

</source>


-<source type="Report">

<format>{%RefOrder%}</format>

</source>


-<source type="InternetSite">

<format>{%RefOrder%}</format>

</source>


-<source type="DocumentFromInternetSite">

<format>{%RefOrder%}</format>

</source>


-<source type="ElectronicSource">

<format>{%RefOrder%}</format>

</source>


-<source type="Patent">

<format>{%RefOrder%}</format>

</source>


-<source type="Misc">

<format>{%RefOrder%}</format>

</source>


-<source type="Standard">

<format>{%RefOrder%}</format>

</source>


-<source type="Thesis">

<format>{%RefOrder%}</format>

</source>

</citation>

New Post: Problem with Persian Citation

$
0
0
Hi. I have a problem with Microsoft word. My language is Farsi. When I insert citation from library that I defined in Word, the software automatically use "," instead "،". How can I fix that? For example, below I wrote tow wrong and true citations.

Sample of a citation that Word automatically use "," stead of "،" and it's wrong.
این متن به عنوان نمونه نوشته شده است (اسلامی 1372, 310).
Correct form of citation in Persian that I cited manually.

این متن به عنوان نمونه نوشته شده است (اسلامی 1372، 310).

New Post: looking for cse style: Name Year: classic author-date citation system

$
0
0
Hello,
I´m looking for the third cse style (Name Year). I found the two other styles, but not this one. May be someone have already generated this style or a very similar one and can help me?

New Post: Problem with Persian Citation

$
0
0
If you are using a BibWord stylesheet, you can just update the separator. There should be a section looking something like the code below. Change the value of the separator element to what you require.
<citation>
      <openbracket>(</openbracket>
      <closebracket>)</closebracket>
      <separator>,</separator>
      <!-- a lot of other code -->
    </citation>

New Post: Problem with Persian Citation

$
0
0
Hi and thanks for your attention. I can't find these codes. I use Microsoft Office 2013 on Windows 7.
I found some XML files in C:\Program Files\Microsoft Office\Office15\Bibliography\Style, but no one has this codes.
For example the content of "APASixthEditionOfficeOnline":

``` <?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns:t="http://www.microsoft.com/temp">
<xsl:output method="html" encoding="us-ascii"/>

<xsl:template match="*" mode="outputHtml2">
<xsl:apply-templates mode="outputHtml"/>
</xsl:template>

<xsl:template name="StringFormatDot">
<xsl:param name="format" />
<xsl:param name="parameters" />

<xsl:variable name="prop_EndChars">
  <xsl:call-template name="templ_prop_EndChars"/>
</xsl:variable>

<xsl:choose>
  <xsl:when test="$format = ''"></xsl:when>
  <xsl:when test="substring($format, 1, 2) = '%%'">
    <xsl:text>%</xsl:text>
    <xsl:call-template name="StringFormatDot">
      <xsl:with-param name="format" select="substring($format, 3)" />
      <xsl:with-param name="parameters" select="$parameters" />
    </xsl:call-template>
    <xsl:if test="string-length($format)=2">
      <xsl:call-template name="templ_prop_Dot"/>
    </xsl:if>
  </xsl:when>
  <xsl:when test="substring($format, 1, 1) = '%'">
    <xsl:variable name="pos" select="substring($format, 2, 1)" />
    <xsl:apply-templates select="msxsl:node-set($parameters)/t:params/t:param[position() = $pos]" mode="outputHtml2"/>
    <xsl:call-template name="StringFormatDot">
      <xsl:with-param name="format" select="substring($format, 3)" />
      <xsl:with-param name="parameters" select="$parameters" />
    </xsl:call-template>
    <xsl:if test="string-length($format)=2">
      <xsl:variable name="temp2">
        <xsl:call-template name="handleSpaces">
          <xsl:with-param name="field" select="msxsl:node-set($parameters)/t:params/t:param[position() = $pos]"/>
        </xsl:call-template>
      </xsl:variable>
      <xsl:variable name="lastChar">
        <xsl:value-of select="substring($temp2, string-length($temp2))"/>
      </xsl:variable>

      <xsl:if test="not(contains($prop_EndChars, $lastChar))">
        <xsl:call-template name="templ_prop_Dot"/>
      </xsl:if>
    </xsl:if>
  </xsl:when>
  <xsl:otherwise>
    <xsl:value-of select="substring($format, 1, 1)" />
    <xsl:call-template name="StringFormatDot">
      <xsl:with-param name="format" select="substring($format, 2)" />
      <xsl:with-param name="parameters" select="$parameters" />
    </xsl:call-template>
    <xsl:if test="string-length($format)=1">
      <xsl:if test="not(contains($prop_EndChars, $format))">
        <xsl:call-template name="templ_prop_Dot"/>
      </xsl:if>
    </xsl:if>
  </xsl:otherwise>
</xsl:choose>
</xsl:template>

<xsl:template name="StringFormat">
<xsl:param name="format" />
<xsl:param name="parameters" />
<xsl:choose>
  <xsl:when test="$format = ''"></xsl:when>
  <xsl:when test="substring($format, 1, 2) = '%%'">
    <xsl:text>%</xsl:text>
    <xsl:call-template name="StringFormat">
      <xsl:with-param name="format" select="substring($format, 3)" />
      <xsl:with-param name="parameters" select="$parameters" />
    </xsl:call-template>
  </xsl:when>
  <xsl:when test="substring($format, 1, 1) = '%'">
    <xsl:variable name="pos" select="substring($format, 2, 1)" />
    <xsl:apply-templates select="msxsl:node-set($parameters)/t:params/t:param[position() = $pos]" mode="outputHtml2"/>
    <xsl:call-template name="StringFormat">
      <xsl:with-param name="format" select="substring($format, 3)" />
      <xsl:with-param name="parameters" select="$parameters" />
    </xsl:call-template>
  </xsl:when>
  <xsl:otherwise>
    <xsl:value-of select="substring($format, 1, 1)" />
    <xsl:call-template name="StringFormat">
      <xsl:with-param name="format" select="substring($format, 2)" />
      <xsl:with-param name="parameters" select="$parameters" />
    </xsl:call-template>
  </xsl:otherwise>
</xsl:choose>
</xsl:template>

<xsl:template name="localLCID">
<xsl:param name="LCID"/>

<xsl:variable name="_LCID1">
  <xsl:choose>
    <xsl:when test="$LCID!='0' and $LCID!=''">
      <xsl:value-of select="$LCID"/>
    </xsl:when>
    <xsl:when test="/b:Citation">
      <xsl:value-of select="/*/b:Locals/b:DefaultLCID"/>
    </xsl:when>
    <xsl:when test="b:LCID">
      <xsl:value-of select="b:LCID"/>
    </xsl:when>
    <xsl:when test="../b:LCID">
      <xsl:value-of select="../b:LCID"/>
    </xsl:when>
    <xsl:when test="../../b:LCID">
      <xsl:value-of select="../../b:LCID"/>
    </xsl:when>
    <xsl:when test="../../../b:LCID">
      <xsl:value-of select="../../../b:LCID"/>
    </xsl:when>
    <xsl:when test="../../../../b:LCID">
      <xsl:value-of select="../../../../b:LCID"/>
    </xsl:when>
    <xsl:when test="../../../../b:LCID">
      <xsl:value-of select="../../../../b:LCID"/>
    </xsl:when>
    <xsl:when test="../../../../../b:LCID">
      <xsl:value-of select="../../../../../b:LCID"/>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="/*/b:Locals/b:DefaultLCID"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:variable>

<xsl:choose>
  <xsl:when test="$_LCID1!='0' and string-length($_LCID1)>0">
    <xsl:value-of select="$_LCID1"/>
  </xsl:when>
  <xsl:otherwise>
    <xsl:value-of select="/*/b:Locals/b:DefaultLCID"/>
  </xsl:otherwise>
</xsl:choose>
</xsl:template>

<xsl:template name="templ_prop_APA_CitationLong_FML" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationLong/b:FML"/>
</xsl:template>


<xsl:template name="templ_prop_APA_CitationLong_FM" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationLong/b:FM"/>
</xsl:template>


<xsl:template name="templ_prop_APA_CitationLong_ML" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationLong/b:ML"/>
</xsl:template>


<xsl:template name="templ_prop_APA_CitationLong_FL" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationLong/b:FL"/>
</xsl:template>


<xsl:template name="templ_prop_APA_CitationShort_FML" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationShort/b:FML"/>
</xsl:template>


<xsl:template name="templ_prop_APA_CitationShort_FM" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationShort/b:FM"/>
</xsl:template>


<xsl:template name="templ_prop_APA_CitationShort_ML" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationShort/b:ML"/>
</xsl:template>


<xsl:template name="templ_prop_APA_CitationShort_FL" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:APA/b:CitationShort/b:FL"/>
</xsl:template>


<xsl:template name="templ_str_OnlineCap" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:Strings/b:OnlineCap"/>
</xsl:template>


<xsl:template name="templ_str_OnlineUnCap" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:variable>
<xsl:value-of select="/*/b:Locals/b:Local[@LCID=$_LCID]/b:Strings/b:OnlineUnCap"/>
</xsl:template>


<xsl:template name="templ_str_FiledCap" >
<xsl:param name="LCID" />
<xsl:variable name="_LCID">
  <xsl:call-template name="localLCID">
    <xsl:with-param name="LCID" select="$LCID"/>
  </xsl:call-template>
</xsl:

New Post: looking for cse style: Name Year: classic author-date citation system

$
0
0
The ASA style is similar. I have reduced the maximal quoted authors in the text to two authors and I have changed the position of the first name in the reference list (now the first name comes always after the second name). But the note of the edition and volume in the reference list are missing completely. How can I integrate this information? I’m unexperienced in programming, so I need a simple solution for his problem.
Thanks!

New Post: Problem with Persian Citation

$
0
0
That is not a BibWord style. You will have to check with Microsoft for that style.
Viewing all 637 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>