Re: Bibliographic citations citation style formatting

2023-07-13 Thread Rich Shepard
On Thu, 13 Jul 2023, Herbert Voss wrote: That is only a LyX problem; the output (pdf) should be ok! Herbert, Yes, the PDF output has et al. citations and all authors in the bibliography. Because the LyX display does not reflect that is distracting; I spent the past couple of days trying to

Re: Bibliographic citations citation style formatting

2023-07-13 Thread Herbert Voss
Rich Shepard schrieb: > On Thu, 13 Jul 2023, Herbert Voss wrote: > >> LyX itself uses the et.al. only for more than _three_ authors, which >> looks >> like a bug to me. It should recognize for biblatex the setting of the >> above option field. > > HHerbert, > > I agree. (And all options in the

Re: Bibliographic citations citation style formatting

2023-07-13 Thread Rich Shepard
On Thu, 13 Jul 2023, Herbert Voss wrote: Remove the module apa(natbib) from documents->preferences->modules Since bibtex, natlib, and juralib have been deprecated would it be reasonable to drop them from LyX? I've no idea how many LyX users run older versions of TeXLive and supported these

Re: Bibliographic citations citation style formatting

2023-07-13 Thread Rich Shepard
On Thu, 13 Jul 2023, Herbert Voss wrote: LyX itself uses the et.al. only for more than _three_ authors, which looks like a bug to me. It should recognize for biblatex the setting of the above option field. HHerbert, I agree. (And all options in the Citation Style section does the trick.)

Re: Bibliographic citations citation style formatting

2023-07-13 Thread Rich Shepard
On Thu, 13 Jul 2023, Herbert Voss wrote: Remove the module apa(natbib) from documents->preferences->modules Herbert, I'm suitably embarassed by not checking all settings and seeing this. Mea culpa! and then insert into documents->preferences->bibliography the options

Re: Bibliographic citations citation style formatting

2023-07-13 Thread Herbert Voss
Am 13.07.23 um 07:01 schrieb Herbert Voss: and then insert into documents->preferences->bibliography the options maxcitenames=1,maxbibnames=99,uniquename=false,uniquelist=false However, inside LyX it doesn't look right for the citation, but the pdf is ok. LyX itself uses the et.al.

Re: Bibliographic citations citation style formatting

2023-07-12 Thread Rich Shepard
On Wed, 12 Jul 2023, Rich Shepard wrote: Here's a different one from a report written a couple of months ago. See second attachment (citation-style.png). Notice that the citation is a pair of question marks (and all variants of that are the only display options) while the citation

Bibliographic citations citation style formatting

2023-07-12 Thread Rich Shepard
yle -> formatting I'm presented with variants of the displayed citation, and not both types. I don't recall having this problem before. Looking at a couple of documents with bibliographic citations, all multi-author citations are of the '... et al.' type. Here's a different one from a report w

Re: Formatting/Equation numbering

2022-12-05 Thread Hal Kierstead via lyx-users
> There are two relevant document class options: > > * "fleqn" (flush left equation), which aligns the equation to the left. Used > by itself, though, it leaves the equation number on the right. > > * "leqno" (left equation number), which puts the equation number on the left. > Used by

Re: Formatting/Equation numbering

2022-12-04 Thread Richard Kimberly Heck
know LaTeX supports defining a user formatting code but I don't know how to do that in LyX. There are two relevant document class options: * "fleqn" (flush left equation), which aligns the equation to the left. Used by itself, though, it leaves the equation number on the right.

Formatting/Equation numbering

2022-12-04 Thread Dan
a user formatting code but I don't know how to do that in LyX. Thanks! -Dan -- lyx-users mailing list lyx-users@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-users

Re: Formatting Python code

2022-05-30 Thread Dr Eberhard Lisse
STOP. USING. ERT! :-)-O In Settings -> Document -> Listings you can set things into the window which wind up in the generated tex file as \lstset{} greetings, el On 2022-05-27 23:20 , Rich Shepard wrote: On Fri, 27 May 2022, Rich Shepard wrote: Thanks for the pointer. Paul, Since all

Re: Formatting Python code

2022-05-30 Thread Rich Shepard
On Mon, 30 May 2022, Rich Shepard wrote: That's interesting. I don't find "showspaces" anywhere in the document settings. Where do I turn it off? Herbert, Found it: Edit -> Listing settings -> Style -> Space in string as symbols. Thanks again, Rich -- lyx-users mailing list

Re: Formatting Python code

2022-05-30 Thread Rich Shepard
On Mon, 30 May 2022, Herbert Voss wrote: you have set the listings option "showspaces" and also one indention with spaces instead of tabs. "showspaces" makes no sense with python code. Herbert, That's interesting. I don't find "showspaces" anywhere in the document settings. Where do I turn

Re: Formatting Python code

2022-05-30 Thread Rich Shepard
On Mon, 30 May 2022, Herbert Voss wrote: It _does_ support tab characters, e.g. Herbert, But not in the Tkinter widget code documentation I'm making into a readable format using LyX. The small space character issue in the pdflatex output is associated with the Python-3.6+ formatted strings;

Re: Formatting Python code

2022-05-30 Thread Herbert Voss
Am 30.05.22 um 15:38 schrieb Rich Shepard: Here's an issue that's appeared twice (so far) in the document and I cannot find the reason. you have set the listings option "showspaces" and also one indention with spaces instead of tabs. "showspaces" makes no sense with python code. Herbert

Re: Formatting Python code

2022-05-30 Thread Rich Shepard
Here's an issue that's appeared twice (so far) in the document and I cannot find the reason. The *.lyx code in a Program Listing environment looks like this: - \begin_layout Plain Layout self.sheet = Sheet(self.frame, \end_layout \begin_layout Plain Layout

Re: Formatting Python code

2022-05-30 Thread Herbert Voss
Am 30.05.22 um 14:48 schrieb Rich Shepard: I learned the reason for the spacing issues is that the program listing environment does not support tabs for white space, only spaces. Kinda' hard on the keyboard's space bar. :-) It _does_ support tab characters, e.g. \documentclass{article}

Re: Formatting Python code

2022-05-30 Thread Rich Shepard
On Fri, 27 May 2022, Paul A. Rubin wrote: If the code was copied from outside LyX and pasted in, maybe there are some stray nonprinting characters and/or one of the supposed end-of-line characters is borked. The simplest way to test this would be to backspace over the offending commas and

Re: Formatting Python code

2022-05-27 Thread Paul A. Rubin
On 5/27/22 18:44, Rich Shepard wrote: On Fri, 27 May 2022, Paul A. Rubin wrote: AFAIK, \lstset{} is the correct command. In order to use it in the preamble, you have to precede it with \usepackage{listings}. Paul, I overlooked that. The correct syntax for setting the tabulator size is

Re: Formatting Python code

2022-05-27 Thread Rich Shepard
On Fri, 27 May 2022, Paul A. Rubin wrote: AFAIK, \lstset{} is the correct command. In order to use it in the preamble, you have to precede it with \usepackage{listings}. Paul, I overlooked that. The correct syntax for setting the tabulator size is tabsize=4. "Tabulator size=4" will cause

Re: Formatting Python code

2022-05-27 Thread Paul A. Rubin
On 5/27/22 17:39, Rich Shepard wrote: On Fri, 27 May 2022, Rich Shepard wrote: \lset{language=Python, Tabulator size=4} Paul, A more recent thread on program listings shows the command as \lstset{} but this also fails to set the default and throws an error when I try to compile the

Re: Formatting Python code

2022-05-27 Thread Rich Shepard
On Fri, 27 May 2022, Rich Shepard wrote: \lset{language=Python, Tabulator size=4} Paul, A more recent thread on program listings shows the command as \lstset{} but this also fails to set the default and throws an error when I try to compile the document. Puzzled, Rich -- lyx-users mailing

Re: Formatting Python code

2022-05-27 Thread Rich Shepard
On Fri, 27 May 2022, Rich Shepard wrote: Thanks for the pointer. Paul, Since all the code in the document is the same language I searched the web for setting defaults. Found a list archive thread from 10 years ago and your response was to add the language and other attributes to the

Re: Formatting Python code

2022-05-27 Thread Rich Shepard
On Fri, 27 May 2022, Paul A. Rubin wrote: Rather than LyX-Code, start with Insert > Program Listing to insert a listings widget. Right click the widget, click Settings ..., and on the main settings tab use the Language drop-down to select Python. Tweak other settings at will. Paul, Ah ha!

Re: Formatting Python code

2022-05-27 Thread Paul A. Rubin
On 5/27/22 15:01, Rich Shepard wrote: I'm trying to format Python code in a document, but cannot properly set indentation and long lines without them breaking. The document class is KOMA Article. I've set the code environment to LyX-Code. Reading the User Guide, I don't find a section on

Formatting Python code

2022-05-27 Thread Rich Shepard
I'm trying to format Python code in a document, but cannot properly set indentation and long lines without them breaking. The document class is KOMA Article. I've set the code environment to LyX-Code. Reading the User Guide, I don't find a section on LyX-Code; Section 6.10 is TeX Code and the

Re: Bibliographic citation not allowing formatting [FIXED]

2020-03-10 Thread Rich Shepard
On Tue, 10 Mar 2020, Rich Shepard wrote: Prior lyx versions would show a selection of citation formats; e.g., (Author date), (Author, date), Author (date). They ain't available to me now and I don't know what I did to lose them. Same thing when the biblio style is authordate3 which worked as

Re: Bibliographic citation not allowing formatting

2020-03-10 Thread Rich Shepard
On Tue, 10 Mar 2020, Kornel Benko wrote: What about Document->Settings...->Bibliography->Style format: ATM you have selected 'Basic (BibTeX)', try for instance Biblatex. Kornel, That setting needed to be changed. It's now Citation Style Format Natbib (Bibtex) Author-Year,

Re: Bibliographic citation not allowing formatting

2020-03-10 Thread Rich Shepard
On Tue, 10 Mar 2020, Kornel Benko wrote: What about Document->Settings...->Bibliography->Style format: Kornel, Doesn't matter if that, and the bibliography setting, are both APA or authordate3, the only formatting styles remain the three I included in my message. ATM

Re: Bibliographic citation not allowing formatting

2020-03-10 Thread Kornel Benko
Am Tue, 10 Mar 2020 07:12:30 -0700 (PDT) schrieb Rich Shepard : > Running lyx-2.3.4.3-x86_64 on Slackware-14.2/x86_64. > > I inserted the bibtex bibliography at the end of the document and a citation > from JabRef-5.1.dev. The bibliography style is APA, but when I try to format > the appearance

Bibliographic citation not allowing formatting

2020-03-10 Thread Rich Shepard
Running lyx-2.3.4.3-x86_64 on Slackware-14.2/x86_64. I inserted the bibtex bibliography at the end of the document and a citation from JabRef-5.1.dev. The bibliography style is APA, but when I try to format the appearance of the citation in the text I am allowed only [#ID], Add to biblography

Re: bibtex formatting

2019-11-01 Thread Rich Shepard
On Fri, 1 Nov 2019, Baris Erkus wrote: How  does it appear on the generated PDF file? Baris, As (wet) rather than as (WET). LyX has its own formatting of references, which is most of the time NOT same as the bibtex format you are using. I hadn't encountered this issue (and another I need

Re: bibtex formatting

2019-10-31 Thread Baris Erkus
. > > I thought the braces specified 'keep the text exactly as written' so I > must > have not correctly formatted this string. Please show me how it should be > done. > > TIA, > > Rich How  does it appear on the generated PDF file? LyX has its own formatting of refer

bibtex formatting

2019-10-31 Thread Rich Shepard
I have a reference titled, Wetland Evaluation Technique (WET) and it's entered in kbibtex with the abbreviation writte this way: ({WET}). But, when entered in a LyX document the bibliography shows the abbreviation as (wet). I thought the braces specified 'keep the text exactly as written' so I

Re: Formatting of Outline view: Intentional or side-effect of native themes?

2018-04-26 Thread Jürgen Spitzmüller
2018-04-26 17:02 GMT+02:00 Klaus-Dieter Bauer : > Hello! > > Before submitting an enhancement request, I wanted to ask if there already > *are* possibilities to customize how the outline view looks. > > [image: lyx-tree.png] > (mirror for image:

Re: Formatting of Outline view: Intentional or side-effect of native themes?

2018-04-26 Thread Steve Litt
On Thu, 26 Apr 2018 15:02:09 + Klaus-Dieter Bauer wrote: > Hello! > > Before submitting an enhancement request, I wanted to ask if there > already *are* possibilities to customize how the outline view looks. > > [image: lyx-tree.png] > (mirror for image:

Formatting of Outline view: Intentional or side-effect of native themes?

2018-04-26 Thread Klaus-Dieter Bauer
Hello! Before submitting an enhancement request, I wanted to ask if there already *are* possibilities to customize how the outline view looks. [image: lyx-tree.png] (mirror for image: https://imgur.com/a/OFAVJCS) I could imagine that there's some utility that allows changing the Qt theme or

Re: Formatting name/date to be filled by others

2018-04-12 Thread Rich Shepard
On Thu, 12 Apr 2018, Dr Eberhard Lisse wrote: You can also insert rules straight from LyX, without ERT. el, Oh. I didn't look because I had no idea for what I should be looking. Thanks, Rich

Re: Formatting name/date to be filled by others

2018-04-12 Thread Dr Eberhard Lisse
Rich, I do that with a table with fixed widths, removing all the frames and then addling the frame-line where the person has to sign. It's eminently reusable :-)-O el On 11/04/2018 01:18, Rich Shepard wrote: > Before I re-invent the wheel I want to discover if there are existing > tools to

Re: Formatting name/date to be filled by others

2018-04-12 Thread Dr Eberhard Lisse
You can also insert rules straight from LyX, without ERT. el On 11/04/2018 02:10, Stephen Buonopane wrote: > On Apr 10, 2018, at 7:49 PM, Rich Shepard wrote: >> >> On Tue, 10 Apr 2018, Rich Shepard wrote: >> >>> Of course, \hspace{} and \vspace{} will place these

Re: Formatting name/date to be filled by others

2018-04-11 Thread Rich Shepard
On Wed, 11 Apr 2018, Cris Fuhrman wrote: An alternative is to use a table. Chris, There are three items: printed name, signature, and date. The \rule{}{} macro is perfect for this. Spacing on the page using \vspace{} and \hspace{} place each item appropriately. Thanks, Rich

Re: Formatting name/date to be filled by others

2018-04-11 Thread Cris Fuhrman
Hi Rich, An alternative is to use a table. The labels (Name, Date, etc) are in cells that have no borders, and the other parts are in cells with borders on the bottom. Of course you have to play with widths of columns, but this approach is more form-like and it's easier to perceive (WYSIWYM) in

Re: Formatting name/date to be filled by others

2018-04-11 Thread Rich Shepard
On Wed, 11 Apr 2018, Steve Litt wrote: Why not use sixteen consecutive underscores? SteveT, Because 1) it doesn't look as good when typeset and b) \rule{}{} allows fine control over length and line width. Rich

Re: Formatting name/date to be filled by others

2018-04-11 Thread Steve Litt
On Tue, 10 Apr 2018 16:18:41 -0700 (PDT) Rich Shepard wrote: >Before I re-invent the wheel I want to discover if there are > existing tools to provide for entry of name, signature, and date to > be filled in on a printed copy of the document page. Specifically, >

Re: Formatting name/date to be filled by others

2018-04-10 Thread Rich Shepard
On Tue, 10 Apr 2018, Stephen Buonopane wrote: Try following command \rule{3in}{0.5pt} Stephen, \rule{} looks vaguely familiar. I might have used it years ago and have forgotten about it. It did not show up in TLC2 when I looked at the contents so I missed it. Thanks, Rich

Re: Formatting name/date to be filled by others

2018-04-10 Thread Stephen Buonopane
On Apr 10, 2018, at 7:49 PM, Rich Shepard wrote: > > On Tue, 10 Apr 2018, Rich Shepard wrote: > >> Of course, \hspace{} and \vspace{} will place these appropriately. What I >> seek is a way to add the solid underline for a defined length and at a >> specified place.

Re: Formatting name/date to be filled by others

2018-04-10 Thread Rich Shepard
On Tue, 10 Apr 2018, Rich Shepard wrote: Of course, \hspace{} and \vspace{} will place these appropriately. What I seek is a way to add the solid underline for a defined length and at a specified place. Would \hfill{} be the appropriate macro? I've used it to place spaces but not baselines.

Formatting name/date to be filled by others

2018-04-10 Thread Rich Shepard
Before I re-invent the wheel I want to discover if there are existing tools to provide for entry of name, signature, and date to be filled in on a printed copy of the document page. Specifically, this is for project proposal acceptance and should look something like this (in fixed-space font):

Re: Legal document formatting [UPDATE]

2016-10-27 Thread Rich Shepard
On Thu, 27 Oct 2016, John Kane wrote: Try \ohead{{Page} \thepage { of} \pageref{LastPage}} John, Unfortunately, it makes no difference. Looks logical, though. Thanks, Rich

Re: Legal document formatting [UPDATE]

2016-10-27 Thread Dr Eberhard Lisse
first page (and removed the (empty) \date{} from the preamble and replaced the ERT of the vertical space with LyX formatting :-)-O Then, I suggest, strongly, you start looking at at Markus Kohms's titlepage package http://www.komascript.de/node/1213 http://www.komascript.de/node/1214

Re: Legal document formatting [UPDATE]

2016-10-27 Thread John Kane
Replying to list. Try \ohead{{Page} \thepage { of} \pageref{LastPage}} On 26 October 2016 at 11:49, Rich Shepard wrote: > On Wed, 26 Oct 2016, Dr Eberhard Lisse wrote: > > Post a minimal working example. >> > > el, > > Attached. > > Rich -- John Kane Kingston

Re: Legal document formatting [UPDATE]

2016-10-26 Thread Rich Shepard
On Wed, 26 Oct 2016, Dr Eberhard Lisse wrote: Post a minimal working example. el, Attached. Rich#LyX 2.2 created this file. For more info see http://www.lyx.org/ \lyxformat 508 \begin_document \begin_header \save_transient_properties true \origin unavailable \textclass scrartcl

Re: Legal document formatting [UPDATE]

2016-10-26 Thread Dr Eberhard Lisse
Post a minimal working example. el On 2016-10-25 17:53, Rich Shepard wrote: > On Tue, 25 Oct 2016, Rich Shepard wrote: > >> No spaces surrounding 'of' and question marks rather than '3'. > > Solved that; didn't see the final backslash on \thepage\. > > Now to fix the total page issue. >

Re: Legal document formatting [UPDATE]

2016-10-25 Thread Rich Shepard
On Tue, 25 Oct 2016, Rich Shepard wrote: No spaces surrounding 'of' and question marks rather than '3'. Solved that; didn't see the final backslash on \thepage\. Now to fix the total page issue. Rich

Re: Legal document formatting

2016-10-25 Thread Rich Shepard
On Tue, 25 Oct 2016, Dr Eberhard Lisse wrote: I leave the page style in LyX to the default and then put this in the preamble. Eberhard, Made this change. A Minimal Working Example helps, but I wouldput something like this into the preamble: \usepackage{lastpage} \usepackage{scrpage2}

Re: Legal document formatting

2016-10-25 Thread Dr Eberhard Lisse
.1.3, > describe running headers and footers and their formatting. What I do > not see is how to integrate text with LaTeX commands. > > For example, this compiles: > > \ohead{\thepage} > > but if I want to have the outerhead read > > \ohead{Page \thepage of

Re: Legal document formatting

2016-10-24 Thread Rich Shepard
On Mon, 24 Oct 2016, Dr Eberhard Lisse wrote: I rolled my own with Koma-Script Article, and used scrheadings and lastpage in the preamble :-)-O The KOMA-script English manual, in Sections 5.1.2 and 5.1.3, describe running headers and footers and their formatting. What I do not see is how

Re: Legal document formatting [UPDATE]

2016-10-24 Thread Rich Shepard
On Mon, 24 Oct 2016, Rich Shepard wrote: When I try to preview the document (^x-p), an error box appears telling me (twice) that cheader and cfooter are already defined in the document. If so they are not visible or created by me. Got it. Forgot to remove the fancyhdr package included in

Re: Legal document formatting

2016-10-24 Thread Rich Shepard
On Mon, 24 Oct 2016, Dr Eberhard Lisse wrote: I rolled my own with Koma-Script Article, and used scrheadings and lastpage in the preamble :-)-O Eberhard, Changed the class to Koma-Script article and both packages (scrheadings and lastpage) are in the preamble. I set the page layout to

Re: Legal document formatting

2016-10-24 Thread Rich Shepard
On Mon, 24 Oct 2016, Dr Eberhard Lisse wrote: I rolled my own with Koma-Script Article, and used scrheadings and lastpage in the preamble :-)-O Eberhard, Yesterday I started a template using KOMA-Script Report; using the article class does make more sense. I'll read about scrheadings in

Re: Legal document formatting

2016-10-23 Thread Dr Eberhard Lisse
I rolled my own with Koma-Script Article, and used scrheadings and lastpage in the preamble :-)-O I then used pdfpages to import my (Eurpoass CV) without footers so the "Page # of # pages" works :-)-O The Preamble is your friend :-)-O el On 2016-10-22 18:07 , Rich Shepard wrote: Has

Re: Legal document formatting [RESOLVED]

2016-10-22 Thread Rich Shepard
On Sat, 22 Oct 2016, Rich Shepard wrote: I'm using KOMA-script report as the base class and am curious if there is a professional-looking layout equivalent to the great layout 'modern CV.' Why re-invent the wheel if one's ready to be bolted on. Never mind. I'm creating my own layout and

Legal document formatting

2016-10-22 Thread Rich Shepard
Has anyone developed a layout template used for a report prepared by a testifying expert witness in a lawsuit? I'm using KOMA-script report as the base class and am curious if there is a professional-looking layout equivalent to the great layout 'modern CV.' Why re-invent the wheel if one's

Re: Bibliography Formatting

2015-07-23 Thread Rich Shepard
On Thu, 23 Jul 2015, Charles de Miramon wrote: What you could use is the custom-bib package, This is included in TeXlive, and version 20140524 of that is installed here, along with custom-bib. I downloaded the PDF doc and will read that and create the bibliography style I want. Thanks for

Re: Bibliography Formatting

2015-07-23 Thread Charles de Miramon
Rich Shepard wrote: elsarticle-harv and clicked the OK button. The status line reported the document was being reformatted. After saving, I compiled it using pdflatex. But, the bibliography is still in author-title format with the year at the end. It seems that elsarticle bst file works

Re: Bibliography Formatting

2015-07-23 Thread Rich Shepard
On Thu, 23 Jul 2015, Charles de Miramon wrote: It seems that elsarticle bst file works only with the elsarticle class. Charles, Well, that seems reasonable. What you could use is the custom-bib package, a companion to natbib. It is a special latex file. When you run latex on it, it will

Re: Bibliography Formatting

2015-07-23 Thread Rich Shepard
On Thu, 23 Jul 2015, Charles de Miramon wrote: What you could use is the custom-bib package, This is included in TeXlive, and version 20140524 of that is installed here, along with custom-bib. I downloaded the PDF doc and will read that and create the bibliography style I want. Thanks for

Re: Bibliography Formatting

2015-07-23 Thread Rich Shepard
On Thu, 23 Jul 2015, Charles de Miramon wrote: It seems that elsarticle bst file works only with the elsarticle class. Charles, Well, that seems reasonable. What you could use is the custom-bib package, a companion to natbib. It is a special latex file. When you run latex on it, it will

Re: Bibliography Formatting

2015-07-23 Thread Charles de Miramon
Rich Shepard wrote: elsarticle-harv and clicked the OK button. The status line reported the document was being reformatted. After saving, I compiled it using pdflatex. But, the bibliography is still in author-title format with the year at the end. It seems that elsarticle bst file works

Re: Bibliography Formatting

2015-07-23 Thread Charles de Miramon
Rich Shepard wrote: > elsarticle-harv and clicked the "OK" button. The status line reported the > document was being reformatted. After saving, I compiled it using > pdflatex. But, the bibliography is still in author-title format with the > year at the end. > It seems that elsarticle bst file

Re: Bibliography Formatting

2015-07-23 Thread Rich Shepard
On Thu, 23 Jul 2015, Charles de Miramon wrote: It seems that elsarticle bst file works only with the elsarticle class. Charles, Well, that seems reasonable. What you could use is the custom-bib package, a companion to natbib. It is a special latex file. When you run latex on it, it will

Re: Bibliography Formatting

2015-07-23 Thread Rich Shepard
On Thu, 23 Jul 2015, Charles de Miramon wrote: What you could use is the custom-bib package, This is included in TeXlive, and version 20140524 of that is installed here, along with custom-bib. I downloaded the PDF doc and will read that and create the bibliography style I want. Thanks for

Re: Bibliography Formatting

2015-07-22 Thread Rich Shepard
On Mon, 20 Jul 2015, Benedict Holland wrote: I find, from experience, that the best thing you can do is learn biblatex. I found a 30-page BibTeX style guide. The first section is for author-title styles, the second section is for author-year styles. The first author-year style uses

Re: Bibliography Formatting

2015-07-22 Thread Rich Shepard
On Mon, 20 Jul 2015, Benedict Holland wrote: I find, from experience, that the best thing you can do is learn biblatex. I found a 30-page BibTeX style guide. The first section is for author-title styles, the second section is for author-year styles. The first author-year style uses

Re: Bibliography Formatting

2015-07-22 Thread Rich Shepard
On Mon, 20 Jul 2015, Benedict Holland wrote: I find, from experience, that the best thing you can do is learn biblatex. I found a 30-page BibTeX style guide. The first section is for author-title styles, the second section is for author-year styles. The first author-year style uses

Bibliography Formatting

2015-07-20 Thread Rich Shepard
The natbib doc focuses on citation styles so I suppose that the biblography style is controlled by bibTeX. I've not before modified bitTeX and have no idea what or where to modify to produce the output I want. The bibliography has the publication year at the end of each listing. I want it

Re: Bibliography Formatting

2015-07-20 Thread Benedict Holland
I find, from experience, that the best thing you can do is learn biblatex. Is this something you are willing to do? It has a very steep learning curve but is very well documented and supported. Your problem is trivially solved as well. Lyx can also use biblatex with a small amount of work that

Re: Bibliography Formatting

2015-07-20 Thread Rich Shepard
On Mon, 20 Jul 2015, Benedict Holland wrote: I find, from experience, that the best thing you can do is learn biblatex. Is this something you are willing to do? It has a very steep learning curve but is very well documented and supported. Your problem is trivially solved as well. Lyx can also

Bibliography Formatting

2015-07-20 Thread Rich Shepard
The natbib doc focuses on citation styles so I suppose that the biblography style is controlled by bibTeX. I've not before modified bitTeX and have no idea what or where to modify to produce the output I want. The bibliography has the publication year at the end of each listing. I want it

Re: Bibliography Formatting

2015-07-20 Thread Rich Shepard
On Mon, 20 Jul 2015, Benedict Holland wrote: I find, from experience, that the best thing you can do is learn biblatex. Is this something you are willing to do? It has a very steep learning curve but is very well documented and supported. Your problem is trivially solved as well. Lyx can also

Re: Bibliography Formatting

2015-07-20 Thread Benedict Holland
I find, from experience, that the best thing you can do is learn biblatex. Is this something you are willing to do? It has a very steep learning curve but is very well documented and supported. Your problem is trivially solved as well. Lyx can also use biblatex with a small amount of work that

Bibliography Formatting

2015-07-20 Thread Rich Shepard
The natbib doc focuses on citation styles so I suppose that the biblography style is controlled by bibTeX. I've not before modified bitTeX and have no idea what or where to modify to produce the output I want. The bibliography has the publication year at the end of each listing. I want it

Re: Bibliography Formatting

2015-07-20 Thread Benedict Holland
I find, from experience, that the best thing you can do is learn biblatex. Is this something you are willing to do? It has a very steep learning curve but is very well documented and supported. Your problem is trivially solved as well. Lyx can also use biblatex with a small amount of work that

Re: Bibliography Formatting

2015-07-20 Thread Rich Shepard
On Mon, 20 Jul 2015, Benedict Holland wrote: I find, from experience, that the best thing you can do is learn biblatex. Is this something you are willing to do? It has a very steep learning curve but is very well documented and supported. Your problem is trivially solved as well. Lyx can also

Formatting of footnote does not work

2014-06-22 Thread jezZiFeR
Dear list, I have a question regarding the formatting of footnotes. I use LyX 2.0.7.1 on OSX with BibDesk 1.6.2. There is one footnote, which is shown unformatted, others are formatted and I can't find out, why. Does somebody have an idea? I add a minimal example here. Thanks in advance Jess

Formatting of footnote does not work

2014-06-22 Thread jezZiFeR
Dear list, I have a question regarding the formatting of footnotes. I use LyX 2.0.7.1 on OSX with BibDesk 1.6.2. There is one footnote, which is shown unformatted, others are formatted and I can't find out, why. Does somebody have an idea? I add a minimal example here. Thanks in advance Jess

Formatting of footnote does not work

2014-06-22 Thread jezZiFeR
Dear list, I have a question regarding the formatting of footnotes. I use LyX 2.0.7.1 on OSX with BibDesk 1.6.2. There is one footnote, which is shown unformatted, others are formatted and I can't find out, why. Does somebody have an idea? I add a minimal example here. Thanks in advance Jess

EnumItem - Formatting Description Tags with Typewriter font

2014-06-19 Thread uudruid74
turned on and I'm using KOMI Book (if that matters). Any help appreciated! -- View this message in context: http://lyx.475766.n2.nabble.com/EnumItem-Formatting-Description-Tags-with-Typewriter-font-tp7580290.html Sent from the LyX - Users mailing list archive at Nabble.com.

Re: EnumItem - Formatting Description Tags with Typewriter font

2014-06-19 Thread Scott Kostyshak
On Thu, Jun 19, 2014 at 11:30 PM, uudruid74 uudrui...@gmail.com wrote: In my LyX Preamble, I have ... \setlist{itemsep=0ex,parsep=1ex,leftmargin=0.25cm} \setenumerate{itemsep=1ex,parsep=1ex} \setitemize{itemsep=0ex,parsep=0ex,leftmargin=1cm} How do I set the font for the item (not the

EnumItem - Formatting Description Tags with Typewriter font

2014-06-19 Thread uudruid74
turned on and I'm using KOMI Book (if that matters). Any help appreciated! -- View this message in context: http://lyx.475766.n2.nabble.com/EnumItem-Formatting-Description-Tags-with-Typewriter-font-tp7580290.html Sent from the LyX - Users mailing list archive at Nabble.com.

Re: EnumItem - Formatting Description Tags with Typewriter font

2014-06-19 Thread Scott Kostyshak
On Thu, Jun 19, 2014 at 11:30 PM, uudruid74 uudrui...@gmail.com wrote: In my LyX Preamble, I have ... \setlist{itemsep=0ex,parsep=1ex,leftmargin=0.25cm} \setenumerate{itemsep=1ex,parsep=1ex} \setitemize{itemsep=0ex,parsep=0ex,leftmargin=1cm} How do I set the font for the item (not the

EnumItem - Formatting Description Tags with Typewriter font

2014-06-19 Thread uudruid74
turned on and I'm using KOMI Book (if that matters). Any help appreciated! -- View this message in context: http://lyx.475766.n2.nabble.com/EnumItem-Formatting-Description-Tags-with-Typewriter-font-tp7580290.html Sent from the LyX - Users mailing list archive at Nabble.com.

Re: EnumItem - Formatting Description Tags with Typewriter font

2014-06-19 Thread Scott Kostyshak
On Thu, Jun 19, 2014 at 11:30 PM, uudruid74 wrote: > In my LyX Preamble, I have ... > > > \setlist{itemsep=0ex,parsep=1ex,leftmargin=0.25cm} > \setenumerate{itemsep=1ex,parsep=1ex} > \setitemize{itemsep=0ex,parsep=0ex,leftmargin=1cm} > > How do I set the font for the item

Re: Thesis formatting

2014-06-09 Thread PhilipPirrip
Remember that the commands in LaTeX are just macros, they collect any text and expand it where needed. What you need is a command in the preamble of your LyX document of this kind: \degree{Master of Science\\ \vspace{\baselineskip} in\\ \vspace{\baselineskip} Nuclear Engineering} As I

Re: Thesis formatting

2014-06-09 Thread PhilipPirrip
Remember that the commands in LaTeX are just macros, they collect any text and expand it where needed. What you need is a command in the preamble of your LyX document of this kind: \degree{Master of Science\\ \vspace{\baselineskip} in\\ \vspace{\baselineskip} Nuclear Engineering} As I

Re: Thesis formatting

2014-06-09 Thread PhilipPirrip
Remember that the commands in LaTeX are just macros, they collect any text and expand it where needed. What you need is a command in the preamble of your LyX document of this kind: \degree{Master of Science\\ \vspace{\baselineskip} in\\ \vspace{\baselineskip} Nuclear Engineering} As I

Re: Thesis formatting

2014-06-04 Thread Steve Burnham
On June 3, 2014 at 17:26:57 PM, PhilipPirrip (p...@net.hr) wrote: Use Insert Formatting Vertical space instead of just adding empty lines. Then, VFill is a stretchable vertical space that could help you keep the things on one page. This would work if the cover page was actually

Re: Thesis formatting

2014-06-04 Thread PhilipPirrip
It's hard to guess what you're supposed to have without knowing anything about your latex class. What's obvious from the excerpt you've given is that \@degree is meant to be an internal command of the class (because of the @). There must be some part of the class file that fills the \@degree

Re: Thesis formatting

2014-06-04 Thread Benedict Holland
Would you be willing to do this in ERT? I find that the first page, cover page, etc. are notoriously difficult to get correctly specified in Lyx. The ERT would be someting like http://tex.stackexchange.com/questions/819/double-line-spacing Also, it might be linebreak but I think it should be

  1   2   3   4   5   6   7   8   9   10   >